/* ATLAS product page. Pairs with /styles.css, which supplies the shared header,
   footer, buttons, hero, section-head, eyebrow, svc-grid, serve-grid, steps,
   contact form, and the navy .atlas section; and /assets/carousel.css, which
   supplies the screenshot carousel. This file adds only page-specific pieces. */

.atlas-page { background: var(--paper); }

/* Hero — reuses .hero/.hero-bg/.hero-grid; adds the framed screenshot aside */
.atlas-page .hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
.atlas-hero-kicker { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.2rem; }
.atlas-hero-kicker img { height: 30px; width: auto; }
.atlas-hero-kicker .k-sep { width: 1px; height: 22px; background: var(--line-strong); }
.atlas-hero-kicker .k-by { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--slate); }
.atlas-hero-shot { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 32px 60px -30px rgba(21,35,62,0.5), 0 8px 20px -12px rgba(21,35,62,0.3); background: #fff; }
.atlas-hero-shot img { display: block; width: 100%; height: auto; }
.hero-trust { margin-top: 1.6rem; font-size: 0.85rem; color: var(--slate); }
.hero-trust strong { color: var(--navy); font-weight: 600; }

/* Pain points — "sound familiar" cards */
.pain { background: var(--ivory); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.pain-card { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 1.5rem 1.4rem; }
.pain-card h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.pain-card p { font-size: 0.9rem; color: #4a4e54; margin: 0; }
.pain-lede { max-width: 60ch; }

/* Segment cards — keyword line under each heading */
.seg-k { display: block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; margin-bottom: 0.5rem; }
.seg-note { margin-top: 1.4rem; font-size: 0.9rem; color: var(--slate); }

/* Fit process — 4 steps */
.steps--4 { grid-template-columns: repeat(4, 1fr); }

/* Proof band — quote-style strip on navy */
.proof-band { background: var(--navy); color: var(--ivory); position: relative; overflow: hidden; }
.proof-band::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(70% 60% at 15% 0%, rgba(184,155,94,0.10), transparent 60%); }
.proof-band .wrap { position: relative; }
.proof-band h2 { color: var(--ivory); }
.proof-band .band-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.proof-band .band-body { color: #c2c8d1; font-size: 1rem; }
.proof-band .band-pull { font-family: var(--display); font-weight: 500; font-size: clamp(1.15rem, 2.2vw, 1.45rem); line-height: 1.45; color: var(--ivory); border-left: 3px solid var(--brass); padding-left: 1.1rem; letter-spacing: -0.01em; margin: 0; }
.band-facts { border-top: 1px solid rgba(255,255,255,0.14); }
.band-facts .row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.14); font-size: 0.9rem; }
.band-facts .row dt { color: var(--bluegray); }
.band-facts .row dd { margin: 0; color: var(--ivory); font-weight: 500; text-align: right; }

/* FAQ */
.faq-list { max-width: 780px; }
.faq-list details { border-top: 1px solid var(--line-strong); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1.1rem 0.2rem; font-family: var(--display); font-weight: 600; color: var(--navy); font-size: 1.05rem; letter-spacing: -0.01em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: none; font-weight: 500; color: var(--brass-deep); font-size: 1.3rem; line-height: 1; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--brass-deep); }
.faq-list details p { padding: 0 0.2rem 1.2rem; margin: 0; color: #4a4e54; font-size: 0.95rem; max-width: 68ch; }

/* Responsive */
@media (max-width: 1040px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .steps--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .proof-band .band-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pain-grid { grid-template-columns: 1fr; }
  .steps--4 { grid-template-columns: 1fr; }
}
