/* OmniSolver Models · landing.css — dark premium landing (route "/") */

/* base.css defines the shared hero spacing, but its shorthand resets .wrap-wide
   horizontal padding. Restore side gutters here so the first screen never clips. */
.hero.wrap-wide { padding: var(--s-9) var(--s-5) var(--s-10); }

/* hero copy */
.hero-copy h1 { font-size: var(--fs-hero); line-height: 1.02; margin: 14px 0 18px; }
.hero-sub { font-size: var(--fs-md); color: var(--text-2); max-width: 30em; margin-bottom: 26px; }
.hero-prompt { display: flex; gap: 10px; max-width: 540px; }
.hero-prompt .field { height: 50px; border-radius: var(--r-md); font-size: var(--fs-base); }
.hero-prompt .btn { height: 50px; padding-inline: 22px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hero-fallback svg { filter: drop-shadow(0 0 20px var(--teal-glow)); }

/* section heads */
.sec-head { margin-bottom: var(--s-7); max-width: 46em; }
.sec-head h2 { font-size: var(--fs-2xl); margin: 8px 0 0; }
.sec-head .muted { margin-top: 10px; }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-3); }
.step { padding: var(--s-5); }
.step .step-n { font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--teal); opacity: .8; }
.step h3 { font-size: var(--fs-md); margin: 10px 0 6px; }
.step p { color: var(--text-muted); font-size: var(--fs-sm); margin: 0; }

/* audiences */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.aud { padding: var(--s-6); }
.aud h3 { font-size: var(--fs-md); margin-bottom: 6px; }
.aud p { color: var(--text-muted); font-size: var(--fs-sm); margin: 0; }

/* asset grid + metric-forward asset cards (NO rendered model) */
.asset-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.asset-card { padding: 14px; display: block; color: inherit; }
.asset-card:hover { color: inherit; }
.asset-card .ac-row { display: flex; align-items: center; justify-content: space-between; margin: 12px 0 6px; }
.asset-card .ac-price { font-family: var(--font-mono); font-weight: 600; color: var(--copper-hi); }
.asset-card .ac-title { font-size: var(--fs-md); margin: 0 0 2px; }
.asset-card:hover .ac-title { color: var(--teal-hi); }
.asset-card .ac-meta { text-transform: capitalize; }

/* pricing grid (card visuals live in base.css so the billing modal shares them) */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); align-items: stretch; }

/* CTA band */
.cta-band { text-align: center; padding: var(--s-10) var(--s-6); }
.cta-band h2 { font-size: var(--fs-2xl); }
.cta-band .btn { margin-top: 18px; }

@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .asset-grid { grid-template-columns: repeat(2, 1fr); } .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps, .aud-grid, .asset-grid, .price-grid { grid-template-columns: 1fr; }
  .hero.wrap-wide { padding: var(--s-7) var(--s-4) var(--s-9); }
  .hero-prompt { flex-direction: column; } .hero-prompt .btn { width: 100%; } }
