/* Marketing landing page styles · scoped to .landing-page
 * Generated from mockups/landing-page.html — do not edit by hand without re-running
 * the extraction script in mossy-purring-honey.md.
 */

/* ============ Tokens ============ */
:root{
  --bg:           #faf9f5;
  --bg-alt:       #ffffff;
  --surface:      #ffffff;
  --surface-2:    #f5f4ef;
  --surface-3:    #f0efe8;
  --border:       #e8e7e0;
  --border-soft:  #f0efe8;
  --ink:          #0c0c0a;
  --ink-soft:     #4a4945;
  --ink-muted:    #646260;  /* WCAG AA: 4.6:1 on white, 4.4:1 on #faf9f5 (close enough for AA Large) */
  --ink-faint:    #b3b2ab;

  /* Gold (refined accent, used sparingly) */
  --gold-50:      #fbf3df;
  --gold-100:     #f3e1ad;
  --gold-300:     #d6ad55;
  --gold-500:     #a87928;
  --gold-700:     #7a5618;
  --gold-shadow:  rgba(168,121,40,.18);

  /* Silver (cross-brand) */
  --silver-100:   #ececef;
  --silver-300:   #b4b4b8;
  --silver-500:   #6b6b70;

  /* State */
  --in-stock:     #15803d;
  --in-stock-bg:  #ecfdf3;
  --out-stock:    #b91c1c;
  --warn:         #b45309;

  /* Premium tier chips on light surface */
  --frost-bg:     #eef6ff; --frost-ink:   #1e5a99;
  --azure-bg:     #e0eaff; --azure-ink:   #1e40af;
  --magenta-bg:   #fce7f3; --magenta-ink: #9d174d;
  --crimson-bg:   #fee4e2; --crimson-ink: #991b1b;

  --shadow-sm:    0 1px 2px rgba(12,12,10,.04), 0 1px 1px rgba(12,12,10,.03);
  --shadow-md:    0 1px 2px rgba(12,12,10,.04), 0 12px 24px -16px rgba(12,12,10,.10);
  --shadow-lg:    0 1px 2px rgba(12,12,10,.04), 0 30px 60px -30px rgba(12,12,10,.18);
  --shadow-xl:    0 1px 2px rgba(12,12,10,.04), 0 60px 120px -40px rgba(12,12,10,.24);

  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ============ Reset ============ */
.landing-page *, .landing-page *::before, .landing-page *::after{ box-sizing: border-box; }
html, .landing-page{ margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
.landing-page{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.landing-page a{ color: inherit; text-decoration: none; }
.landing-page img, .landing-page svg{ display: block; max-width: 100%; }
.landing-page button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.landing-page ::selection{ background: var(--gold-100); color: var(--ink); }

/* ============ Type ============ */
.landing-page .eyebrow{
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.landing-page .eyebrow.gold{ color: var(--gold-700); }  /* AA: gold-500 (#a87928) fails 4.5:1 on white; gold-700 (#7a5618) passes ~5.9:1 */
.landing-page .h-display{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.landing-page .h-section{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.landing-page .h-showcase{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.landing-page .h-card{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.landing-page .lede{
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.55;
}
.landing-page .mono{ font-family: var(--mono); font-feature-settings: "tnum"; }

/* ============ Layout ============ */
.landing-page .wrap{
  width: min(1280px, 92vw);
  margin: 0 auto;
}
.landing-page .section{
  position: relative;
  padding: clamp(64px, 7vw, 96px) 0;
}
.landing-page .section.tight{ padding: clamp(40px, 5vw, 64px) 0; }
.landing-page .section.alt{ background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

/* ============ Nav ============ */
.landing-page .nav{
  position: sticky; top: 0;
  z-index: 60;
  backdrop-filter: blur(12px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  border-bottom: 1px solid var(--border-soft);
}
.landing-page .nav-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.landing-page .brand{
  display: flex; align-items: center; gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.landing-page .brand .brand-mark{
  width: 32px; height: 32px;
  object-fit: contain;
  display: block;
}
.landing-page .nav-links{
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; color: var(--ink-soft);
}
.landing-page .nav-links a{ transition: color .15s ease; }
.landing-page .nav-links a:hover{ color: var(--ink); }
.landing-page .nav-signin{ color: var(--ink-soft); font-size: 14px; }

/* Responsive nav: hide section links on tablet, hide signin on mobile, keep brand + primary CTA */
@media (max-width: 980px){
  .landing-page .nav-links{ gap: 14px; }
  .landing-page .nav-link-item{ display: none; }
}
@media (max-width: 540px){
  .landing-page .nav-signin{ display: none; }
  .landing-page .nav-links{ gap: 8px; }
}
@keyframes pulse{
  0% { box-shadow: 0 0 0 0 rgba(21,128,61,.40); }
  70%{ box-shadow: 0 0 0 7px rgba(21,128,61,0); }
  100%{ box-shadow: 0 0 0 0 rgba(21,128,61,0); }
}

.landing-page .btn{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.landing-page .btn-primary{
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 1px 2px rgba(12,12,10,.18);
}
.landing-page .btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(12,12,10,.35); }
.landing-page .btn-ghost{
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink);
}
.landing-page .btn-ghost:hover{ border-color: var(--ink-muted); }
.landing-page .btn-gold{
  background: linear-gradient(180deg, #d6ad55 0%, var(--gold-500) 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 1px 2px rgba(168,121,40,.30), 0 12px 28px -14px rgba(168,121,40,.55);
}
.landing-page .btn-gold:hover{ transform: translateY(-1px); }
.landing-page .btn .arrow{ width: 14px; height: 14px; }

/* ============ Hero ============ */
.landing-page .hero{
  position: relative;
  padding-top: 32px;
  padding-bottom: clamp(24px, 3vw, 40px);
  overflow: hidden;
}
.landing-page .hero-inner{
  position: relative;
  text-align: center;
  z-index: 2;
}
.landing-page .hero-badge{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}
.landing-page .hero-badge-text{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.landing-page .hero-badge-sep{ color: var(--ink-faint); font-family: var(--mono); }
.landing-page .hero-badge-spot{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
}
.landing-page .hero-badge-spot b{ color: var(--ink); font-weight: 500; }
.landing-page .hero-badge .pulse{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500);
  position: relative;
}
.landing-page .hero-badge .pulse::before{
  content:""; position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  opacity: .35;
  animation: ring 2.4s infinite;
}
@keyframes ring{
  0%{ transform: scale(.7); opacity: .6; }
  100%{ transform: scale(1.8); opacity: 0; }
}
.landing-page .hero h1{ margin: 24px auto 20px; max-width: 18ch; }
.landing-page .hero h1 .accent{
  background: linear-gradient(105deg, var(--gold-500) 0%, #d6ad55 50%, var(--gold-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.landing-page .hero .lede{
  margin: 0 auto;
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.45;
}
.landing-page .hero-proof{
  width: min(760px, 100%);
  margin: 26px auto 0;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 16px;
  align-items: center;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--gold-100);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.landing-page .hero-proof-product{
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.landing-page .hero-proof-product img{
  width: 46px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 7px;
  border: 1px solid var(--border-soft);
  background: var(--surface-2);
}
.landing-page .hero-proof-product strong{
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.landing-page .hero-proof-product span{
  display: block;
  margin-top: 4px;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 11px;
}
.landing-page .hero-proof-math{
  padding: 12px 14px;
  background: linear-gradient(180deg, #faf3e2 0%, #fdfaf0 100%);
  border: 1px solid var(--gold-100);
  border-radius: 12px;
  display: grid;
  gap: 5px;
}
.landing-page .hero-proof-math div{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
}
.landing-page .hero-proof-math b{
  color: var(--ink);
  font-weight: 600;
}
.landing-page .hero-proof-math .total{
  margin-top: 5px;
  padding-top: 7px;
  border-top: 1px solid var(--gold-100);
  color: var(--gold-700);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.landing-page .hero-proof-math .total b{
  color: var(--gold-500);
  font-size: 18px;
  letter-spacing: -.02em;
}
@media (max-width: 760px){
  .landing-page .hero-proof{ grid-template-columns: 1fr; }
}
.landing-page .hero-bullets{
  list-style: none;
  padding: 0;
  margin: 28px auto 0;
  max-width: 540px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.45;
}
.landing-page .hero-bullets li{
  position: relative;
  padding-left: 22px;
}
.landing-page .hero-bullets li::before{
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}
.landing-page .hero-bullets b{ color: var(--ink); font-weight: 600; }
.landing-page .hero-ctas{
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px;
}
.landing-page .hero-trust{
  margin-top: 22px;
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
}
.landing-page .hero-trust .sep{ color: var(--ink-faint); }
.landing-page .hero-trust b{ color: var(--ink-soft); font-weight: 500; }

/* Hero mockup container */
.landing-page .hero-stage{
  position: relative;
  margin: 40px auto 0;
  width: min(1180px, 96vw);
  isolation: isolate;
}
.landing-page .hero-stage::before{
  content: "";
  position: absolute;
  inset: -40px -10% auto -10%;
  height: 380px;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(168,121,40,.12), transparent 70%),
    radial-gradient(40% 70% at 80% 30%, rgba(214,173,85,.08), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

/* App-frame mockup (browser-style chrome) */
.landing-page .app-frame{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.landing-page .app-frame.flat{ box-shadow: var(--shadow-lg); }
.landing-page .app-chrome{
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-soft);
}
.landing-page .app-chrome .dot{ width: 10px; height: 10px; border-radius: 50%; background: #e0dfd8; }
.landing-page .app-chrome .url{
  margin-left: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.landing-page .app-chrome .url::before{
  content:""; width: 10px; height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a7973' stroke-width='2'><rect x='3' y='11' width='18' height='11' rx='2'/><path d='M7 11V7a5 5 0 0 1 10 0v4'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.landing-page .app-chrome .pageref{ margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--ink-faint); }

/* Hero dashboard inner grid */
.landing-page .dash-body{
  display: grid;
  grid-template-columns: 220px 1fr;
}
.landing-page .dash-side{
  border-right: 1px solid var(--border-soft);
  padding: 18px 14px;
  background: var(--surface);
}
.landing-page .dash-side .brand-mini{
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  padding: 0 6px 18px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 14px;
}
.landing-page .dash-side .brand-mini .mark{ width: 18px; height: 18px; border-radius: 5px; }
.landing-page .dash-side .brand-mini .mark::after{ width: 5px; height: 5px; }
.landing-page .side-section{ font-family: var(--mono); font-size: 10px; color: var(--ink-faint); letter-spacing: .14em; text-transform: uppercase; padding: 12px 8px 6px; }
.landing-page .side-link{
  display: flex; align-items: center; gap: 10px;
  padding: 7px 8px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--ink-soft);
  transition: background .15s;
}
.landing-page .side-link.active{ background: var(--surface-2); color: var(--ink); font-weight: 500; }
.landing-page .side-link svg{ width: 14px; height: 14px; color: var(--ink-muted); }
.landing-page .side-link.active svg{ color: var(--gold-500); }
.landing-page .side-badge{
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-muted);
}

.landing-page .dash-main{
  padding: 22px 26px 26px;
  background: var(--surface);
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
}
.landing-page .dash-main-left{ display: flex; flex-direction: column; gap: 16px; min-width: 0; }

.landing-page .dash-header{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.landing-page .dash-header h2{
  font-size: 22px; font-weight: 600; letter-spacing: -0.018em;
  margin: 0;
}
.landing-page .dash-search{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
}

.landing-page .kpi-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.landing-page .kpi{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 14px 12px;
}
.landing-page .kpi .lbl{
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-muted);
}
.landing-page .kpi .v{ font-size: 22px; font-weight: 600; margin-top: 6px; letter-spacing: -0.02em; }
.landing-page .kpi .d{ font-family: var(--mono); font-size: 11px; margin-top: 4px; color: var(--ink-muted); }
.landing-page .kpi .d.up{ color: var(--in-stock); }

.landing-page .events-table{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.landing-page .events-head{
  display: grid;
  grid-template-columns: 64px 1fr 110px 90px;
  gap: 16px;
  padding: 10px 14px;
  background: var(--surface-2);
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-muted);
  border-bottom: 1px solid var(--border-soft);
}
.landing-page .events-row{
  display: grid;
  grid-template-columns: 64px 1fr 110px 90px;
  gap: 16px;
  align-items: center;
  padding: 11px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--border-soft);
}
.landing-page .events-row:last-child{ border-bottom: 0; }
.landing-page .events-row .t{ font-family: var(--mono); font-size: 12px; color: var(--ink-muted); }
.landing-page .events-row .p{ color: var(--ink); font-weight: 500; }
.landing-page .events-row .p small{ display: block; color: var(--ink-muted); font-size: 11px; font-weight: 400; margin-top: 1px; }
.landing-page .events-row .price{ font-family: var(--mono); font-size: 13px; color: var(--ink); }
.landing-page .events-row.out .p, .landing-page .events-row.out .price{ color: var(--ink-muted); }

.landing-page .tier-chip{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.landing-page .tier-chip.frost{ background: var(--frost-bg);   color: var(--frost-ink); }
.landing-page .tier-chip.azure{ background: var(--azure-bg);   color: var(--azure-ink); }
.landing-page .tier-chip.magenta{ background: var(--magenta-bg); color: var(--magenta-ink); }
.landing-page .tier-chip.crimson{ background: var(--crimson-bg); color: var(--crimson-ink); }
.landing-page .tier-chip.out{ background: var(--surface-2);  color: var(--ink-muted); }

.landing-page .dash-main-right{ display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.landing-page .dash-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.landing-page .dash-card h3{
  margin: 0 0 12px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 600;
}
.landing-page .dash-card h3 .live{
  font-family: var(--mono); font-size: 10px; color: var(--in-stock);
  display: inline-flex; align-items: center; gap: 5px;
}
.landing-page .dash-card h3 .live::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--in-stock); box-shadow: 0 0 0 0 rgba(21,128,61,.4);
  animation: pulse 1.6s infinite;
}
.landing-page .spot-row{
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 8px 0; border-top: 1px solid var(--border-soft);
}
.landing-page .spot-row:first-of-type{ border-top: 0; padding-top: 0; }
.landing-page .spot-row .k{ font-family: var(--mono); font-size: 11px; color: var(--ink-muted); }
.landing-page .spot-row .v{ font-family: var(--mono); font-size: 15px; color: var(--ink); }
.landing-page .spot-row .v small{ font-size: 11px; color: var(--in-stock); margin-left: 6px; }

.landing-page .broker-line{
  display: grid; grid-template-columns: 88px 1fr auto;
  align-items: center; gap: 8px;
  padding: 7px 0; border-top: 1px solid var(--border-soft);
  font-size: 12px;
}
.landing-page .broker-line:first-of-type{ border-top: 0; }
.landing-page .broker-line .name{ font-family: var(--mono); color: var(--ink-soft); font-size: 11px; letter-spacing: .04em; }
.landing-page .broker-line .price{ font-family: var(--mono); color: var(--ink); font-weight: 500; font-size: 13px; }
.landing-page .broker-line .bar{
  height: 6px; border-radius: 3px;
  background: var(--surface-2);
  position: relative; overflow: hidden;
}
.landing-page .broker-line .bar::after{
  content:"";
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  border-radius: 3px;
  width: var(--w, 60%);
}
.landing-page .broker-line.best .price{ color: var(--in-stock); }

@media (max-width: 980px){
  .landing-page .dash-side{ display: none; }
  .landing-page .dash-body{ grid-template-columns: 1fr; }
  .landing-page .dash-main{ grid-template-columns: 1fr; padding: 18px; }
  .landing-page .dash-main-right{ display: none; }
  .landing-page .kpi-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px){
  .landing-page .kpi-grid{ grid-template-columns: 1fr; }
  .landing-page .events-head{ display: none; }
  .landing-page .events-row{ grid-template-columns: 1fr auto; gap: 8px; }
  .landing-page .events-row .t, .landing-page .events-row .price{ display: none; }
}

/* ============ Trust bar ============ */
.landing-page .trust-bar{
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg);
}
.landing-page .trust-inner{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.landing-page .trust-cell{
  padding: 36px 22px;
  border-left: 1px solid var(--border-soft);
  text-align: center;
}
.landing-page .trust-cell:first-child{ border-left: 0; }
.landing-page .trust-cell .n{
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  min-height: clamp(28px, 3vw, 40px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.landing-page .trust-cell .n .accent{ color: var(--gold-500); }
.landing-page .trust-cell .lbl{
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 880px){
  .landing-page .trust-inner{ grid-template-columns: repeat(2, 1fr); }
  .landing-page .trust-cell{ border-left: 0; border-top: 1px solid var(--border-soft); }
  .landing-page .trust-cell:nth-child(-n+2){ border-top: 0; }
}

/* ============ Section heads ============ */
.landing-page .section-head{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}
.landing-page .section-head .eyebrow{ display: block; margin-bottom: 12px; }
.landing-page .section-head .lede{ max-width: 44ch; }
.landing-page .section-head.center{ grid-template-columns: 1fr; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.landing-page .section-head.center .lede{ margin-left: auto; margin-right: auto; }
.landing-page .section-head.center .eyebrow{ display: inline-block; }
@media (max-width: 880px){ .landing-page .section-head{ grid-template-columns: 1fr; } }

/* ============ Feature Showcase (text + mockup) ============ */
.landing-page .showcase{
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: center;
}
.landing-page .showcase.flip{ grid-template-columns: 1.25fr 1fr; }
.landing-page .showcase.flip .text{ order: 2; }
.landing-page .showcase.flip .visual{ order: 1; }
.landing-page .showcase + .showcase{ margin-top: clamp(56px, 6vw, 80px); }
@media (max-width: 980px){
  .landing-page .showcase, .landing-page .showcase.flip{ grid-template-columns: 1fr; gap: 40px; }
  .landing-page .showcase.flip .text{ order: 0; }
  .landing-page .showcase.flip .visual{ order: 1; }
}
.landing-page .showcase .text .step-no{
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--gold-700);  /* AA contrast on light bg (see .eyebrow.gold) */
  margin-bottom: 8px;
}
.landing-page .showcase .text .eyebrow{ display: block; margin-bottom: 16px; }
.landing-page .showcase .text h3{ margin: 0 0 18px; }
.landing-page .showcase .text p{ color: var(--ink-soft); max-width: 50ch; }
.landing-page .showcase .text ul{
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 12px;
}
.landing-page .showcase .text li{
  position: relative;
  padding-left: 32px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.landing-page .showcase .text li .check{
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--in-stock-bg);
  color: var(--in-stock);
  display: grid; place-items: center;
}
.landing-page .showcase .text li .check svg{ width: 11px; height: 11px; }
.landing-page .showcase .text li b{ color: var(--ink); font-weight: 600; }

/* ============ Mockup containers ============ */
.landing-page .mockup{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.landing-page .mockup-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface-2);
}
.landing-page .mockup-head .title{ font-size: 13px; font-weight: 600; }
.landing-page .mockup-head .meta{ font-family: var(--mono); font-size: 11px; color: var(--ink-muted); }
.landing-page .mockup-head .meta.live{ color: var(--in-stock); display: inline-flex; align-items: center; gap: 5px; }
.landing-page .mockup-head .meta.live::before{ content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--in-stock); animation: pulse 1.6s infinite; }
.landing-page .mockup-body{ padding: 20px; }
.landing-page .mockup-body.flush{ padding: 0; }
.landing-page .mockup .screenshot{
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: cover;
  object-position: top left;
}
.landing-page .hero-screenshot{
  display: block;
  width: 100%;
  aspect-ratio: 1998 / 1066;
  object-fit: cover;
  object-position: top center;
}

/* Hero slider — cross-fade between buy-side and sell-side product views */
.landing-page .hero-slider{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.landing-page .hero-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  animation: hero-fade 10s infinite ease-in-out;
}
.landing-page .hero-slide:nth-child(1){ animation-delay: 0s; }
.landing-page .hero-slide:nth-child(2){ animation-delay: 5s; }
@keyframes hero-fade{
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}

/* Slider caption — sits in a soft chip below the chrome, rotates with the image */
.landing-page .hero-caption-row{
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; align-items: center;
  z-index: 5;
}
.landing-page .hero-caption{
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  animation: hero-fade 10s infinite ease-in-out;
}
.landing-page .hero-caption:nth-of-type(1){ animation-delay: 0s; }
.landing-page .hero-caption:nth-of-type(2){ animation-delay: 5s; }
.landing-page .hero-caption .accent{ color: var(--gold-500); margin-right: 6px; }

/* Slider dots indicator */
.landing-page .hero-dots{
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 6px;
  z-index: 4;
}
.landing-page .hero-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background .3s;
  animation: hero-dot-cycle 10s infinite ease-in-out;
}
.landing-page .hero-dot:nth-child(1){ animation-delay: 0s; }
.landing-page .hero-dot:nth-child(2){ animation-delay: 5s; }
@keyframes hero-dot-cycle{
  0%, 45% { background: rgba(255,255,255,.95); }
  50%, 95% { background: rgba(255,255,255,.30); }
  100% { background: rgba(255,255,255,.95); }
}

/* ============ Inventory / warehouse coverage mockup ============ */
.landing-page .coverage-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 700px){ .landing-page .coverage-grid{ grid-template-columns: 1fr; } }
.landing-page .warehouse-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.landing-page .warehouse-card.hot{
  background: linear-gradient(180deg, #fbf9f1, var(--surface));
  border-color: var(--gold-100);
}
.landing-page .warehouse-card .top{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.landing-page .warehouse-card .city{ font-weight: 600; font-size: 14px; }
.landing-page .warehouse-card .meta{
  font-family: var(--mono); font-size: 11px; color: var(--ink-muted);
}
.landing-page .warehouse-card .skus{ display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.landing-page .warehouse-card .sku{
  font-family: var(--mono); font-size: 10px; padding: 2px 6px; border-radius: 4px;
  background: var(--in-stock-bg); color: var(--in-stock);
}
.landing-page .warehouse-card .sku.empty{ background: var(--surface-2); color: var(--ink-muted); }
.landing-page .warehouse-card .last{
  margin-top: 10px;
  font-family: var(--mono); font-size: 10px; color: var(--ink-faint);
  display: flex; align-items: center; justify-content: space-between;
}
.landing-page .warehouse-card.hot .last .scan{ color: var(--in-stock); display: inline-flex; align-items: center; gap: 4px; }
.landing-page .warehouse-card.hot .last .scan::before{ content:""; width: 5px; height: 5px; border-radius: 50%; background: var(--in-stock); animation: pulse 1.6s infinite; }
.landing-page .coverage-bar{
  display: flex; gap: 10px; align-items: center; justify-content: space-between;
  padding: 12px 14px; margin-bottom: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  font-size: 12px;
}
.landing-page .coverage-bar .stat{ display: flex; align-items: baseline; gap: 6px; }
.landing-page .coverage-bar .stat .v{ font-family: var(--mono); font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: -.02em; }
.landing-page .coverage-bar .stat .k{ font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); }

/* ============ Broker showcase ============ */
.landing-page .broker-grid-2{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.landing-page .broker-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  position: relative;
}
.landing-page .broker-card.best{
  background: linear-gradient(180deg, #fbf9f1, var(--surface));
  border-color: var(--gold-100);
}
.landing-page .broker-card .name{
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  color: var(--ink-muted); display: flex; align-items: center; justify-content: space-between;
}
.landing-page .broker-card .name .tag{
  font-family: var(--mono); font-size: 10px; color: var(--gold-500);
  background: var(--gold-50); padding: 2px 6px; border-radius: 999px;
}
.landing-page .broker-card .price{
  font-family: var(--mono);
  font-size: 22px;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.landing-page .broker-card .delta{
  font-family: var(--mono); font-size: 11px;
  margin-top: 8px;
  display: flex; gap: 10px; justify-content: space-between;
  color: var(--ink-muted);
}
.landing-page .broker-card .delta .up{ color: var(--in-stock); }
.landing-page .broker-card .delta .down{ color: var(--out-stock); }
.landing-page .broker-card.best .price{ color: var(--gold-500); }

/* ============ Profit P&L stack ============ */
.landing-page .pl-table{ display: grid; gap: 6px; }
.landing-page .pl-row{
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-size: 13px;
}
.landing-page .pl-row .k{ color: var(--ink-soft); }
.landing-page .pl-row .k small{ display: block; color: var(--ink-muted); font-size: 11px; margin-top: 2px; }
.landing-page .pl-row .v{ font-family: var(--mono); font-size: 14px; color: var(--ink); font-weight: 500; }
.landing-page .pl-row.add .v{ color: var(--in-stock); }
.landing-page .pl-row.sub .v{ color: var(--out-stock); }
.landing-page .pl-total{
  margin-top: 8px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 16px 16px;
  background: linear-gradient(180deg, #faf3e2 0%, #ffffff 100%);
  border: 1px solid var(--gold-100);
  border-radius: 10px;
}
.landing-page .pl-total .k{ font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-500); }
.landing-page .pl-total .v{ font-size: 26px; font-weight: 600; color: var(--gold-500); letter-spacing: -0.02em; }
.landing-page .pl-note{
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--frost-bg);
  border-radius: 8px;
  font-size: 12px;
  color: var(--frost-ink);
  line-height: 1.5;
}

/* ============ Alert center mockup ============ */
.landing-page .alert-rule{
  display: grid;
  grid-template-columns: 36px 1fr 56px;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}
.landing-page .alert-rule + .alert-rule{ margin-top: 8px; }
.landing-page .alert-rule .ic{
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--gold-500);
  display: grid; place-items: center;
}
.landing-page .alert-rule .ic svg{ width: 16px; height: 16px; }
.landing-page .alert-rule .meta .name{ font-weight: 600; font-size: 13.5px; color: var(--ink); }
.landing-page .alert-rule .meta .cond{ font-family: var(--mono); font-size: 11px; color: var(--ink-muted); margin-top: 2px; display: block; }
.landing-page .alert-rule .meta .cond b{ color: var(--ink-soft); font-weight: 500; }
.landing-page .toggle{
  position: relative;
  width: 36px; height: 20px;
  background: var(--in-stock);
  border-radius: 999px;
  justify-self: end;
  transition: background .2s;
}
.landing-page .toggle::after{
  content:""; position: absolute;
  width: 16px; height: 16px;
  background: white; border-radius: 50%;
  top: 2px; left: 18px;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
  transition: left .2s;
}
.landing-page .toggle.off{ background: var(--surface-3); }
.landing-page .toggle.off::after{ left: 2px; }

/* ============ Channels (SMS phone) ============ */
.landing-page .channels{ display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
@media (max-width: 980px){ .landing-page .channels{ grid-template-columns: 1fr; } }
.landing-page .phone{
  position: relative;
  width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 18.5;
  background: linear-gradient(180deg, #ebebe5 0%, #d8d8d2 100%);
  border-radius: 44px;
  padding: 14px;
  border: 1px solid #d4d3cb;
  box-shadow: var(--shadow-xl);
}
.landing-page .phone::before{
  content: "";
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 24px;
  background: #1c1c1a;
  border-radius: 0 0 14px 14px;
}
.landing-page .phone-screen{
  height: 100%;
  background: var(--bg);
  border-radius: 32px;
  padding: 44px 14px 18px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
}
.landing-page .sms-meta{
  text-align: center;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.landing-page .sms-bubble{
  align-self: flex-start;
  max-width: 86%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  padding: 10px 13px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
  box-shadow: var(--shadow-sm);
}
.landing-page .sms-bubble.gold{
  background: linear-gradient(180deg, #faf3e2 0%, var(--surface) 100%);
  border-color: var(--gold-100);
}
.landing-page .sms-bubble .brand{ color: var(--gold-500); font-weight: 600; }
.landing-page .sms-bubble a{ color: var(--azure-ink); }
.landing-page .sms-time{
  align-self: center;
  font-family: var(--mono);
  font-size: 10px; color: var(--ink-faint);
}

/* ============ Feature grid (secondary 4-up) ============ */
.landing-page .feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px){ .landing-page .feature-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .landing-page .feature-grid{ grid-template-columns: 1fr; } }
.landing-page .feature-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.landing-page .feature-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.landing-page .feature-card .ic{
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--gold-500);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.landing-page .feature-card .ic svg{ width: 18px; height: 18px; }
.landing-page .feature-card h3{ margin: 0 0 8px; font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
.landing-page .feature-card p{ color: var(--ink-soft); font-size: 13.5px; margin: 0; line-height: 1.5; }
.landing-page .feature-card .detail{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-family: var(--mono); font-size: 11px; color: var(--ink-muted);
  display: flex; align-items: center; gap: 6px;
}
.landing-page .feature-card .detail b{ color: var(--gold-700); font-weight: 500; }  /* AA contrast on white (see .eyebrow.gold) */

/* ============ Differentiators (Why us) ============ */
.landing-page .diff-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 720px){ .landing-page .diff-grid{ grid-template-columns: 1fr; } }
.landing-page .diff{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
}
.landing-page .diff .badge{
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--gold-50); color: var(--gold-700);  /* AA on gold-50 bg (~4.95:1) */
  margin-bottom: 16px;
}
.landing-page .diff h3{ margin: 0 0 8px; font-size: 19px; font-weight: 600; letter-spacing: -0.018em; }
.landing-page .diff p{ margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.landing-page .diff .stat{
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 13px;
  display: flex; align-items: baseline; gap: 10px;
}
.landing-page .diff .stat .num{ font-size: 28px; font-weight: 600; letter-spacing: -0.025em; color: var(--gold-500); }
.landing-page .diff-cta{
  margin-top: 16px;
  align-self: flex-start;
  font-size: 13px;
  padding: 9px 14px;
}

/* ============ Comparison table ============ */
.landing-page .compare{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.landing-page .compare table{ width: 100%; border-collapse: collapse; }
.landing-page .compare th, .landing-page .compare td{
  padding: 16px 22px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.landing-page .compare tr:last-child td{ border-bottom: 0; }
.landing-page .compare th{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  background: var(--surface-2);
}
.landing-page .compare th.us{
  color: var(--gold-500);
  background: linear-gradient(180deg, #fbf3df 0%, var(--surface-2) 100%);
}
.landing-page .compare td.feat{
  color: var(--ink); font-weight: 500;
  width: 44%;
}
.landing-page .compare td.feat small{ display: block; color: var(--ink-muted); font-size: 12px; font-weight: 400; margin-top: 2px; }
.landing-page .compare td.us{
  background: linear-gradient(180deg, rgba(168,121,40,.04), rgba(168,121,40,0) 100%);
  font-family: var(--mono);
  color: var(--ink);
  font-weight: 500;
  width: 28%;
}
.landing-page .compare td.other{
  font-family: var(--mono);
  color: var(--ink-muted);
  width: 28%;
}
.landing-page .check-y{
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--in-stock);
}
.landing-page .check-y::before{
  content:""; width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2315803d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M2 6.5l2.5 2.5L10 3.5'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.landing-page .check-n{
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-muted);  /* ink-faint #b3b2ab fails 4.5:1; ink-muted #646260 passes */
}
.landing-page .check-n::before{
  content:""; width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23646260' stroke-width='2.2' stroke-linecap='round'><path d='M3 3l6 6M9 3l-6 6'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
@media (max-width: 720px){
  .landing-page .compare th, .landing-page .compare td{ padding: 14px; font-size: 13px; }
}

/* ============ Latency timeline ============ */
.landing-page .latency-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
}
.landing-page .latency-step{ padding: 0 18px 0 0; position: relative; }
.landing-page .latency-step::before{
  content:""; position: absolute; top: 6px; left: 0;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--gold-500);
  box-shadow: 0 0 0 4px rgba(168,121,40,.10);
}
.landing-page .latency-step::after{
  content:""; position: absolute; top: 13px; left: 14px; right: 8px;
  height: 1px; background: linear-gradient(90deg, var(--gold-500), var(--border));
}
.landing-page .latency-step:last-child::after{ display: none; }
.landing-page .latency-step .t{
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--gold-700); margin-top: 30px;  /* AA contrast on light bg */
}
.landing-page .latency-step h3{ margin: 8px 0 6px; font-size: 17px; font-weight: 600; letter-spacing: -0.012em; }
.landing-page .latency-step p{ color: var(--ink-soft); font-size: 13.5px; margin: 0; max-width: 30ch; }
@media (max-width: 880px){
  .landing-page .latency-grid{ grid-template-columns: 1fr; gap: 20px; }
  .landing-page .latency-step::after{ display: none; }
}

/* ============ Results stats block ============ */
.landing-page .results-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 880px){ .landing-page .results-grid{ grid-template-columns: 1fr; } }
.landing-page .result-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 30px;
}
.landing-page .result-card .n{
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
}
.landing-page .result-card .n .accent{
  background: linear-gradient(105deg, var(--gold-500), var(--gold-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.landing-page .result-card .n small{ font-size: .4em; color: var(--ink-muted); font-weight: 500; letter-spacing: 0; }
.landing-page .result-card h3{ margin: 0 0 8px; font-size: 16px; font-weight: 600; letter-spacing: -0.015em; }
.landing-page .result-card p{ margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

/* ============ Testimonials ============ */
.landing-page .test-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){ .landing-page .test-grid{ grid-template-columns: 1fr; } }
.landing-page .testimonial{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 240px;
}
.landing-page .testimonial .quote{
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.landing-page .testimonial .quote::before{
  content: "\201C";
  display: block;
  font-family: 'Geist', serif;
  font-size: 48px;
  line-height: 0.4;
  color: var(--gold-300);
  margin-bottom: 18px;
}
.landing-page .testimonial .by{
  margin-top: auto;
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.landing-page .testimonial .avatar{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-500));
  display: grid; place-items: center;
  font-weight: 600; color: white; font-size: 13px;
}
.landing-page .testimonial .by .meta{ display: flex; flex-direction: column; gap: 2px; }
.landing-page .testimonial .by .name{ font-weight: 600; font-size: 14px; }
.landing-page .testimonial .by .role{ font-family: var(--mono); font-size: 11px; color: var(--ink-muted); }

/* ============ Recent windows · proof cards ============ */
.landing-page .windows-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 880px){ .landing-page .windows-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .landing-page .windows-grid{ grid-template-columns: 1fr; } }
.landing-page .window-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.landing-page .window-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.landing-page .window-tier{
  align-self: flex-start;
  font-size: 12px;
  font-weight: 500;
}
.landing-page .window-head{
  display: flex;
  gap: 12px;
  align-items: center;
}
.landing-page .window-thumb{
  flex-shrink: 0;
  width: 44px;
  height: 60px;
  border-radius: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  object-fit: cover;
  object-position: center top;
  display: block;
}
.landing-page .window-title{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.landing-page .window-name{
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.landing-page .window-loc{
  font-size: 12.5px;
  color: var(--ink-soft);
}
.landing-page .window-when{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: .04em;
}
.landing-page .window-profit{
  margin-top: 4px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #faf3e2 0%, #fdfaf0 100%);
  border: 1px solid var(--gold-100);
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.landing-page .profit-row{
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.landing-page .profit-row > span:last-child{
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}
.landing-page .profit-row.total{
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--gold-100);
}
.landing-page .profit-row.total > span:first-child{
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 500;
}
.landing-page .profit-row.total > span:last-child{
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: -0.02em;
}
.landing-page .window-foot{
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}
.landing-page .window-window{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.landing-page .window-window::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--in-stock);
}
.landing-page .window-price{
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.landing-page .windows-note{
  margin-top: 28px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--ink-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.landing-page .windows-note .tier-chip{ font-size: 10px; }

/* ============ ROI callout above pricing ============ */
.landing-page .roi-callout{
  max-width: 920px;
  margin: 0 auto 48px;
  padding: 36px 40px;
  background:
    radial-gradient(80% 90% at 0% 0%, #fbf3df 0%, transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--gold-100);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.landing-page .roi-callout::before{
  content:"";
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500), var(--gold-700));
}
.landing-page .roi-eyebrow{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.landing-page .roi-headline{
  margin: 12px 0 14px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 38ch;
}
.landing-page .roi-headline em{
  font-style: normal;
  background: linear-gradient(105deg, var(--gold-500) 0%, var(--gold-700) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.landing-page .roi-sub{
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
}
.landing-page .roi-sub b{ color: var(--ink); font-weight: 600; }

/* ============ Pricing ============ */
.landing-page .pricing-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  max-width: 1000px; margin: 0 auto;
}
.landing-page .pricing-grid.single{
  grid-template-columns: 1fr;
  max-width: 540px;
}
@media (max-width: 880px){ .landing-page .pricing-grid{ grid-template-columns: 1fr; } }
.landing-page .tier{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 34px;
}
.landing-page .tier.premium{
  background: radial-gradient(80% 60% at 0% 0%, #fbf3df 0%, var(--surface) 60%);
  border-color: var(--gold-100);
  box-shadow: var(--shadow-md);
}
.landing-page .tier .lbl{ font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); }
.landing-page .tier.premium .lbl{ color: var(--gold-500); }
.landing-page .tier h3{ margin: 8px 0 12px; font-size: 32px; font-weight: 600; letter-spacing: -0.025em; line-height: 1; }
.landing-page .tier .price{ display: flex; align-items: baseline; gap: 6px; font-size: 42px; font-weight: 600; letter-spacing: -0.028em; margin: 0 0 22px; }
.landing-page .tier .price small{ font-size: 14px; color: var(--ink-muted); font-weight: 400; letter-spacing: 0; }
.landing-page .tier .price .from{ font-size: 14px; font-weight: 500; color: var(--ink-muted); margin-right: 4px; }
.landing-page .tier ul{ list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.landing-page .tier li{
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline; gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.landing-page .tier li .v{ font-family: var(--mono); font-size: 13px; color: var(--ink); font-weight: 500; }
.landing-page .tier.premium li .v{ color: var(--gold-500); }
.landing-page .tier li:not(:last-child){ padding-bottom: 12px; border-bottom: 1px dashed var(--border-soft); }
.landing-page .tier .cta{ display: flex; }
.landing-page .tier .cta .btn{ width: 100%; justify-content: center; }

/* ============ FAQ ============ */
.landing-page .faq{ display: grid; gap: 0; max-width: 880px; margin: 0 auto; }
.landing-page .faq details{
  border-bottom: 1px solid var(--border-soft);
  padding: 22px 4px;
}
.landing-page .faq details:first-child{ border-top: 1px solid var(--border-soft); }
.landing-page .faq summary{
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 19px; font-weight: 500; letter-spacing: -0.012em;
  color: var(--ink);
}
.landing-page .faq summary::-webkit-details-marker{ display: none; }
.landing-page .faq summary::after{
  content:"+";
  font-family: var(--mono);
  font-size: 18px;
  color: var(--ink-muted);
  transition: transform .3s ease;
}
.landing-page .faq details[open] summary::after{ content: "−"; color: var(--gold-500); }
.landing-page .faq p{ margin: 14px 0 0; color: var(--ink-soft); max-width: 70ch; }

/* ============ Final CTA ============ */
.landing-page .cta-final{
  position: relative;
  text-align: center;
  padding: clamp(88px, 11vw, 160px) 0;
  overflow: hidden;
}
.landing-page .cta-final::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 50%, rgba(168,121,40,.10), transparent 70%);
  z-index: -1;
}
.landing-page .cta-final h2{ margin: 0 auto 18px; max-width: 18ch; }
.landing-page .cta-final .lede{ margin: 0 auto 32px; }
.landing-page .cta-final .domain{
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-muted);
}
.landing-page .cta-final .domain b{ color: var(--gold-500); font-weight: 500; }

/* ============ Footer ============ */
.landing-page .footer{
  border-top: 1px solid var(--border-soft);
  padding: 36px 0 60px;
  color: var(--ink-muted);
  font-size: 13px;
  background: var(--bg);
}
.landing-page .footer-inner{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.landing-page .footer .links{ display: flex; gap: 24px; }
.landing-page .footer .links a:hover{ color: var(--ink); }
.landing-page .footer .legal{ font-family: var(--mono); font-size: 11px; letter-spacing: .10em; text-transform: uppercase; }
@media (max-width: 720px){ .landing-page .footer-inner{ grid-template-columns: 1fr; } }

/* Entrance reveal */
.landing-page .reveal{ opacity: 0; transform: translateY(12px); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.landing-page .reveal.d1{ animation-delay: .04s; }
.landing-page .reveal.d2{ animation-delay: .12s; }
.landing-page .reveal.d3{ animation-delay: .20s; }
.landing-page .reveal.d4{ animation-delay: .28s; }
.landing-page .reveal.d5{ animation-delay: .36s; }
@keyframes rise{ to{ opacity: 1; transform: translateY(0); } }

/* ============ Suppress Bootstrap's :focus-visible blue ring on programmatically-focused elements ============
 * Blazor adds tabindex="-1" + .focus() to the first h1 on page load for screen-reader page-change
 * announcement. Bootstrap's :focus-visible then paints a blue box-shadow ring on it. These elements
 * aren't reachable by keyboard Tab, so the visual ring is just visual noise.
 */
.landing-page [tabindex="-1"]:focus,
.landing-page [tabindex="-1"]:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* "How it works" is a desktop-friendly architecture diorama — on phones it
   takes a screen of vertical real estate without changing the conversion math.
   Hide below 768px so the mobile flow is hero → features → pricing → FAQ → CTA. */
@media (max-width: 768px){
  .landing-page .how-it-works{ display: none; }
}
