/* features.css — Home page only: hero, spec strip, screenshot frame, feature blocks.
   Loaded after main.css. */

/* Hero */
.hero{position:relative;padding:64px 22px 40px;text-align:center}
.hero__inner{max-width:780px;margin:0 auto}
.hero__mark{position:absolute;top:-60px;left:50%;transform:translateX(-50%);width:760px;max-width:120%;
  opacity:.10;filter:blur(2px);pointer-events:none;z-index:-1}
.hero h1{font-size:clamp(34px,6vw,62px);margin:20px auto 0;max-width:14ch}
.hero__lead{color:var(--muted);font-size:clamp(16px,2.3vw,20px);max-width:640px;margin:22px auto 0}
.hero__cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin:34px 0 16px}
.trust{color:var(--faint);font-size:13.5px;letter-spacing:.01em}
/* Image-scaling fix: was width:min(1800px,95vw);max-width:none (overrode global cap and
   pushed the CTA below the fold). Now smaller + bounded so the headline + CTA stay visible. */
.hero__shot{margin:48px auto 0;width:min(1100px,92vw)}

/* App-window frame for screenshots */
.shot{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);
  background:var(--surface);box-shadow:var(--shadow),0 0 0 1px rgba(130,200,255,.06),0 40px 90px rgba(220,70,195,.16);
  transition:transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease}
.shot__bar{display:flex;align-items:center;gap:8px;padding:11px 16px;background:#0b1a2b;border-bottom:1px solid var(--line)}
.shot__bar span{width:11px;height:11px;border-radius:50%}
.shot__bar span:nth-child(1){background:#ff5f57}
.shot__bar span:nth-child(2){background:var(--amber)}
.shot__bar span:nth-child(3){background:var(--emerald)}
.shot__bar em{margin-left:8px;font-style:normal;font-size:12.5px;color:var(--faint);font-family:var(--font-d)}
/* Image-scaling fix: explicit aspect-ratio reserves the box → no layout shift (CLS≈0)
   while the image loads, and height:auto keeps the 2560×1352 ratio (no stretch/squash). */
.shot img{width:100%;height:auto;display:block;aspect-ratio:2560/1352}

/* Spec strip */
.specs{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:rgba(10,23,38,.4)}
.specs__list{display:flex;flex-wrap:wrap;justify-content:center;gap:14px 38px;padding:22px 22px;margin:0;list-style:none}
.specs__list li{display:flex;align-items:center;gap:9px;color:var(--muted);font-size:14.5px;font-weight:500}
.specs__list svg{width:18px;height:18px;color:var(--cyan);flex:0 0 auto}

/* Features */
.feature{display:flex;flex-direction:column;align-items:center;gap:38px;margin:0 auto 120px}
.feature:last-child{margin-bottom:0}
.feature__body{order:1;max-width:800px;text-align:center}
.feature__media{order:2;width:min(1600px,92vw)}
.feature__body .checks{display:grid;grid-template-columns:1fr 1fr;gap:14px 38px;text-align:left;margin:26px auto 0;max-width:780px}
.pill{display:inline-flex;align-items:center;font-family:var(--font-d);font-weight:600;font-size:12px;
  letter-spacing:.18em;text-transform:uppercase;padding:6px 12px;border-radius:999px;border:1px solid}
.pill--magenta{color:var(--magenta-2);border-color:rgba(220,70,195,.4);background:rgba(220,70,195,.08)}
.pill--cyan{color:var(--cyan);border-color:rgba(130,200,255,.4);background:rgba(130,200,255,.08)}
.pill--emerald{color:#4fd98b;border-color:rgba(31,176,97,.45);background:rgba(31,176,97,.10)}
.pill--amber{color:var(--amber);border-color:rgba(255,194,71,.4);background:rgba(255,194,71,.08)}
.feature__body h2{font-size:clamp(25px,3.4vw,36px);margin:18px 0 14px}
.feature__body>p{color:var(--muted);font-size:17px}
.checks{list-style:none;margin:22px 0 0;padding:0;display:flex;flex-direction:column;gap:13px}
.checks li{display:flex;gap:12px;align-items:flex-start;color:var(--ink);font-size:15.5px}
.checks svg{width:21px;height:21px;flex:0 0 auto;color:var(--emerald);margin-top:1px}
.checks b{font-weight:600}
.checks span{color:var(--muted)}

/* FAQ preview "see all" link */
.faq-more{text-align:center;margin-top:28px}
.faq-more a{color:var(--cyan);font-family:var(--font-d);font-weight:600;font-size:15px;text-decoration:underline;text-underline-offset:3px}
.faq-more a:hover{color:var(--ink)}

/* Hover transforms (motion-safe) */
@media (prefers-reduced-motion: no-preference){
  .feature__media .shot:hover,.hero__shot:hover{transform:translateY(-6px)}
}

/* Responsive */
@media (max-width:920px){
  .feature{gap:26px;margin-bottom:78px;padding:0 14px}
  .feature__body .checks{grid-template-columns:1fr;gap:12px;text-align:left}
}
@media (max-width:560px){
  .hero__cta{flex-direction:column}
}
