:root {
  color-scheme: dark;
  --fiq-ink: #00110f;
  --fiq-field: #123f34;
  --fiq-gold: #e7b95a;
  --fiq-paper: #fffdf9;
  --fiq-cream: #f9f0dc;
  --fiq-text: #f7efe0;
  --fiq-muted: #c9bdab;
  --fiq-deep-muted: #5b645f;
  --fiq-button-text: #1b1409;
  --fiq-line: rgba(231, 185, 90, 0.24);
  --fiq-paper-line: #e4ded9;
  --focus-ring: 0 0 0 3px rgba(231, 185, 90, 0.45), 0 0 0 6px rgba(249, 240, 220, 0.18);
}

/* self-hosted type system (shared with the command-center dashboard) */
@font-face{font-family:'Bricolage Grotesque';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/bricolage-600.woff2') format('woff2');}
@font-face{font-family:'Bricolage Grotesque';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/bricolage-700.woff2') format('woff2');}
@font-face{font-family:'Bricolage Grotesque';font-style:normal;font-weight:800;font-display:swap;src:url('/assets/fonts/bricolage-800.woff2') format('woff2');}
@font-face{font-family:'Geist';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/geist-400.woff2') format('woff2');}
@font-face{font-family:'Geist';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/geist-500.woff2') format('woff2');}
@font-face{font-family:'Geist';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/geist-600.woff2') format('woff2');}
@font-face{font-family:'Geist';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/geist-700.woff2') format('woff2');}
@font-face{font-family:'JetBrains Mono';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/jbmono-500.woff2') format('woff2');}
@font-face{font-family:'JetBrains Mono';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/jbmono-600.woff2') format('woff2');}
:root{
  --fiq-display:'Bricolage Grotesque', system-ui, sans-serif;
  --fiq-body:'Geist', Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --fiq-mono:'JetBrains Mono', ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

.landing-footer .footer-disclaimer,
.footer-disclaimer {
  margin: 6px 0 0;
  max-width: 720px;
  color: var(--fiq-muted);
  font-size: 0.74rem;
  line-height: 1.5;
  opacity: 0.78;
}

html {
  background: var(--fiq-ink);
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(0, 17, 15, 0.18), rgba(0, 17, 15, 0.76) 760px),
    linear-gradient(112deg, var(--fiq-ink) 0%, #05231f 42%, var(--fiq-field) 100%);
  color: var(--fiq-text);
  font-family: var(--fiq-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(231, 185, 90, 0.08), transparent 20%, transparent 80%, rgba(231, 185, 90, 0.06)),
    repeating-linear-gradient(90deg, transparent 0 112px, rgba(249, 240, 220, 0.035) 112px 113px);
  opacity: 0.46;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(249, 240, 220, 0.12);
  background: rgba(0, 17, 15, 0.93);
}

.brand {
  display: inline-flex;
  min-width: 0;
}

.brand img {
  display: block;
  width: clamp(188px, 23vw, 276px);
  height: auto;
  aspect-ratio: 1380 / 454;
}

.header-actions,
.hero-actions,
.pricing-actions,
.landing-footer nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions {
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
  color: rgba(249, 240, 220, 0.82);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 16px;
  color: inherit;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.button:hover,
.nav-link:hover,
.story-card a:hover,
.landing-footer a:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--fiq-gold);
  color: var(--fiq-button-text);
}

.button-secondary {
  border-color: rgba(249, 240, 220, 0.2);
  background: rgba(18, 63, 52, 0.86);
  color: var(--fiq-cream);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.94fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  width: min(1280px, calc(100% - 36px));
  min-height: calc(100svh - 88px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 92px) 0 clamp(32px, 6vw, 76px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--fiq-gold);
  font-family: var(--fiq-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--fiq-display);
  letter-spacing: -0.02em;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--fiq-paper);
  font-size: clamp(2.85rem, 5.45vw, 4.9rem);
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  margin-bottom: 12px;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: inherit;
  font-size: 1.18rem;
  line-height: 1.26;
  text-wrap: balance;
}

.hero-subcopy {
  max-width: 660px;
  margin-bottom: 26px;
  color: rgba(249, 240, 220, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  font-weight: 650;
}

.hero-actions {
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 18px;
}

.hero-actions .button {
  flex-direction: column;
  align-items: flex-start;
  min-width: min(100%, 230px);
  min-height: 64px;
  gap: 3px;
  padding-block: 10px;
  text-align: left;
}

.button span,
.button small,
.nav-link,
.story-card a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-actions small,
.pricing-actions small {
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-caveat {
  max-width: 580px;
  margin: -4px 0 16px;
  color: rgba(249, 240, 220, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-signal-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 640px;
  margin: 0 0 16px;
}

.hero-signal-rail span {
  min-width: 0;
  border: 1px solid rgba(249, 240, 220, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(249, 240, 220, 0.075), rgba(249, 240, 220, 0.028)),
    rgba(0, 17, 15, 0.72);
  padding: 10px 12px;
  color: rgba(249, 240, 220, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-signal-rail strong {
  display: block;
  margin-bottom: 3px;
  color: var(--fiq-cream);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.button-primary small {
  color: rgba(27, 20, 9, 0.76);
}

.button-secondary small {
  color: rgba(249, 240, 220, 0.72);
}

.module-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(249, 240, 220, 0.16);
  border-radius: 999px;
  background: rgba(249, 240, 220, 0.055);
  padding: 0 12px;
  color: rgba(249, 240, 220, 0.8);
  font-size: 0.82rem;
  font-weight: 850;
}

.iq-brief {
  justify-self: end;
  width: min(100%, 586px);
  min-width: 0;
  border: 1px solid var(--fiq-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(249, 240, 220, 0.09), rgba(249, 240, 220, 0.035)), rgba(0, 17, 15, 0.84);
  box-shadow: 0 28px 80px rgba(0, 8, 7, 0.36);
}

.brief-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(249, 240, 220, 0.1);
}

.brief-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.brief-header strong {
  border: 1px solid rgba(231, 185, 90, 0.36);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--fiq-cream);
  font-size: 0.76rem;
}

.brief-status {
  position: relative;
  padding-left: 22px !important;
}

.brief-status::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #41d48a;
  box-shadow: 0 0 14px rgba(65, 212, 138, 0.72);
  transform: translateY(-50%);
}

.brief-main {
  margin: 20px;
  border-left: 4px solid var(--fiq-gold);
  border-radius: 8px;
  background: rgba(0, 17, 15, 0.66);
  padding: 20px;
}

.brief-main span,
.brief-metrics span,
.brief-support span,
.story-card > span {
  display: block;
  color: var(--fiq-gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brief-main strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--fiq-paper);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  text-wrap: balance;
}

.brief-main p,
.brief-support p,
.story-card dd,
.assurance-grid p,
.fine-print,
.pricing-copy p,
.section-head p,
.landing-footer p {
  color: var(--fiq-muted);
  font-weight: 650;
}

.brief-main p,
.brief-support p,
.story-card dd,
.assurance-grid p {
  margin-bottom: 0;
}

.brief-metrics {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.82fr) minmax(0, 1.16fr);
  gap: 1px;
  margin: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(249, 240, 220, 0.11);
  border-radius: 8px;
  background: rgba(249, 240, 220, 0.11);
}

.brief-metrics div,
.brief-support article {
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(249, 240, 220, 0.08), rgba(249, 240, 220, 0.035)),
    rgba(0, 17, 15, 0.84);
  padding: 16px;
  color: var(--fiq-paper);
}

.brief-metrics span,
.brief-support span {
  color: var(--fiq-gold);
}

.brief-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--fiq-paper);
  font-size: clamp(1.22rem, 1.8vw, 1.52rem);
  line-height: 1;
  overflow-wrap: normal;
}

.brief-metrics small {
  display: block;
  margin-top: 8px;
  color: rgba(249, 240, 220, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.brief-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 20px;
  overflow: hidden;
  border: 1px solid rgba(249, 240, 220, 0.11);
  border-radius: 8px;
  background: rgba(249, 240, 220, 0.11);
}

.brief-support p {
  margin-top: 8px;
  color: rgba(249, 240, 220, 0.72);
  font-size: 0.9rem;
}

.brief-mini-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid rgba(249, 240, 220, 0.1);
  background: rgba(231, 185, 90, 0.18);
}

.brief-mini-strip span {
  min-width: 0;
  background: rgba(0, 17, 15, 0.66);
  padding: 13px 16px;
  color: rgba(249, 240, 220, 0.76);
  font-size: 0.78rem;
  font-weight: 750;
}

.brief-mini-strip strong {
  color: var(--fiq-cream);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto clamp(44px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid var(--fiq-line);
  border-radius: 8px;
  background: var(--fiq-line);
}

.trust-strip span {
  display: flex;
  align-items: center;
  min-height: 74px;
  background: rgba(0, 17, 15, 0.76);
  padding: 14px;
  color: rgba(249, 240, 220, 0.84);
  font-size: 0.88rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.story-section,
.assurance-section {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 90px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.story-grid,
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.story-card,
.assurance-grid article {
  min-width: 0;
  border: 1px solid rgba(249, 240, 220, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(249, 240, 220, 0.082), rgba(249, 240, 220, 0.032)),
    rgba(0, 17, 15, 0.82);
  color: var(--fiq-paper);
  padding: 20px;
  box-shadow: 0 18px 42px rgba(0, 8, 7, 0.22);
}

.story-card > span {
  color: var(--fiq-gold);
}

.story-card h3,
.assurance-grid h3 {
  color: var(--fiq-paper);
}

.story-card dl {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.story-card dt {
  color: var(--fiq-gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.story-card dd {
  color: rgba(249, 240, 220, 0.74);
  font-size: 0.92rem;
}

.story-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--fiq-field);
  padding: 0 14px;
  color: var(--fiq-cream);
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

#included,
#pricing,
#faq,
.assurance-section {
  scroll-margin-top: 112px;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto minmax(280px, 0.95fr) minmax(230px, 0.72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  border-block: 1px solid var(--fiq-line);
  padding: clamp(34px, 5vw, 56px) 0;
}

.pricing-copy h2 {
  color: var(--fiq-paper);
}

.price-lockup {
  display: grid;
  justify-items: center;
  min-width: 190px;
  color: var(--fiq-paper);
}

.price-lockup span {
  color: var(--fiq-gold);
  font-size: clamp(4.4rem, 9vw, 7rem);
  font-weight: 950;
  line-height: 1;
}

.price-lockup strong {
  color: var(--fiq-cream);
  font-size: 1rem;
}

.included-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(249, 240, 220, 0.86);
  font-weight: 750;
}

.pricing-actions {
  flex-direction: column;
  align-items: stretch;
}

.pricing-actions small {
  margin-top: 5px;
  color: rgba(249, 240, 220, 0.68);
}

.assurance-section {
  padding-bottom: clamp(64px, 8vw, 104px);
}

.assurance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.assurance-grid article {
  background:
    linear-gradient(180deg, rgba(249, 240, 220, 0.078), rgba(249, 240, 220, 0.028)),
    rgba(0, 17, 15, 0.84);
}

.faq-section {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(54px, 7vw, 90px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid article {
  min-width: 0;
  border: 1px solid rgba(249, 240, 220, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(249, 240, 220, 0.07), rgba(249, 240, 220, 0.028)),
    rgba(0, 17, 15, 0.82);
  padding: 20px;
  box-shadow: 0 18px 42px rgba(0, 8, 7, 0.2);
}

.faq-grid h3 {
  color: var(--fiq-paper);
}

.faq-grid p {
  margin-bottom: 0;
  color: rgba(249, 240, 220, 0.72);
  font-weight: 650;
}

.fine-print {
  max-width: 980px;
  margin: 20px 0 0;
  color: rgba(249, 240, 220, 0.72);
}

.landing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 48px) 112px;
  border-top: 1px solid rgba(249, 240, 220, 0.12);
  background: rgba(0, 17, 15, 0.88);
}

.landing-footer p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(249, 240, 220, 0.7);
  font-size: 0.86rem;
}

.landing-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.landing-footer a {
  color: rgba(249, 240, 220, 0.84);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 8px;
  border: 1px solid rgba(249, 240, 220, 0.16);
  border-radius: 8px;
  background: rgba(0, 17, 15, 0.94);
  padding: 8px;
}

/* Taste reference recreation: dark command-room landing page. */
body {
  background:
    radial-gradient(circle at 75% 18%, rgba(63, 212, 110, 0.1), transparent 26%),
    radial-gradient(circle at 22% 12%, rgba(231, 185, 90, 0.1), transparent 28%),
    linear-gradient(180deg, #070a0d 0%, #0a1112 52%, #07100f 100%);
}

body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.26;
}

.landing-header {
  min-height: 76px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 11, 0.94);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(180px, 16vw, 246px);
}

.nav-link-muted {
  color: rgba(255, 255, 255, 0.72);
}

.header-actions {
  gap: clamp(8px, 1.7vw, 24px);
}

.header-actions .button,
.header-actions .nav-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 1500px) {
  .landing-header {
    gap: 16px;
    padding-inline: 46px 40px;
  }

  .brand img {
    width: 200px;
  }

  .header-actions {
    gap: 8px;
  }

  .nav-link {
    padding-inline: 8px;
    font-size: 0.86rem;
  }

  .header-actions .button {
    min-width: auto;
    padding-inline: 14px;
    font-size: 0.86rem;
  }
}

@media (max-width: 1180px) {
  .nav-link-muted {
    display: none;
  }
}

.header-actions .button-primary {
  border-color: rgba(67, 205, 92, 0.52);
  background: rgba(10, 18, 15, 0.9);
  color: #6dd75f;
}

.header-actions .button-secondary {
  border-color: rgba(231, 185, 90, 0.78);
  background: linear-gradient(180deg, #f0ce74, #c9943d);
  color: #080806;
}

.hero-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  width: min(1540px, calc(100% - 64px));
  min-height: calc(100svh - 76px);
  gap: clamp(36px, 5.2vw, 88px);
}

h1 {
  max-width: 690px;
  font-size: clamp(4.2rem, 7vw, 6.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  color: var(--fiq-gold);
}

.hero-subcopy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.22rem, 1.65vw, 1.55rem);
}

.hero-actions .button {
  min-width: min(100%, 300px);
  min-height: 64px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-actions .button-primary {
  background: linear-gradient(180deg, #f0ce74, #c9943d);
}

.hero-actions .button-secondary {
  border-color: rgba(231, 185, 90, 0.76);
  background: rgba(5, 8, 11, 0.62);
}

.hero-caveat {
  color: rgba(255, 255, 255, 0.58);
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 2px 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.avatar-stack {
  display: inline-flex;
}

.avatar-stack img,
.avatar-stack i {
  width: 34px;
  height: 34px;
  margin-right: -8px;
  border: 2px solid #0b0f10;
  border-radius: 999px;
  object-fit: cover;
  background: #0b0f10;
}

.avatar-stack i {
  background:
    radial-gradient(circle at 40% 32%, #f4d191 0 18%, transparent 19%),
    linear-gradient(135deg, #1c5142, #d6a846);
}

.hero-rating strong {
  color: var(--fiq-paper);
}

.hero-signal-rail,
.module-chips {
  display: none;
}

.iq-brief {
  width: min(100%, 850px);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(12, 17, 18, 0.92);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.brief-header,
.brief-main,
.brief-metrics,
.brief-support {
  border-color: rgba(255, 255, 255, 0.13);
}

.brief-main {
  border-left: 0;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(90deg, rgba(67, 205, 92, 0.07), transparent),
    rgba(7, 11, 12, 0.78);
}

.brief-main strong {
  color: #f8f8f3;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.brief-main strong::first-letter {
  color: inherit;
}

.brief-metrics {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 0;
}

.brief-metrics strong {
  color: #62d95b;
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
}

.brief-support {
  grid-template-columns: 1fr;
}

.brief-support article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.brief-mini-strip {
  display: none;
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1540px, calc(100% - 64px));
  margin-top: -8px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.trust-strip span {
  display: grid;
  gap: 2px;
  min-height: 84px;
  background: rgba(17, 23, 25, 0.88);
  padding-inline: 36px;
}

.trust-strip strong {
  color: var(--fiq-paper);
  font-size: 1.05rem;
}

.trust-strip small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.story-section {
  width: min(1540px, calc(100% - 64px));
  padding-top: 22px;
}

.story-section .section-head {
  max-width: none;
  text-align: center;
}

.story-section .section-head h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
}

.story-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-card {
  min-height: 212px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(17, 23, 25, 0.88);
}

@media (max-width: 1060px) {
  .hero-section {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 1280px);
  }

  .trust-strip,
  .story-section {
    width: min(100% - 36px, 1280px);
  }
}

@media (max-width: 760px) {
  .nav-link-muted {
    display: none;
  }

  h1 {
    font-size: clamp(3.35rem, 14vw, 4.8rem);
  }

  .hero-actions .button {
    min-width: 0;
  }

  .brief-support article {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .story-grid {
    grid-template-columns: 1fr;
  }
}

/* Taste v3 viewport correction: keep homepage modules in the first source viewport. */
@media (min-width: 1321px) {
  .hero-section {
    min-height: 600px;
    padding-top: 42px;
    padding-bottom: 12px;
  }

  .iq-brief {
    align-self: start;
    margin-top: 8px;
    padding: 22px 28px;
  }

  .brief-header {
    padding-bottom: 14px;
  }

  .brief-header h2 {
    font-size: 2rem;
  }

  .brief-main {
    padding: 18px 22px;
  }

  .brief-main strong {
    font-size: 1.78rem;
  }

  .brief-main p {
    margin-top: 8px;
  }

  .brief-metrics div {
    padding: 16px 22px;
  }

  .brief-metrics strong {
    font-size: 2.25rem;
  }

  .brief-support article {
    min-height: 45px;
    padding: 0 22px;
  }

  .trust-strip {
    margin-bottom: 12px;
  }

  .story-section {
    padding-top: 18px;
  }
}

@media (max-width: 1060px) {
  .hero-section,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .iq-brief {
    justify-self: stretch;
    width: 100%;
  }

  .story-grid,
  .assurance-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip span:last-child {
    grid-column: 1 / -1;
  }

  .pricing-actions {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, rgba(0, 17, 15, 0.24), rgba(0, 17, 15, 0.86) 700px),
      linear-gradient(135deg, var(--fiq-ink), var(--fiq-field));
  }

  .landing-header {
    position: static;
    display: grid;
    gap: 14px;
    justify-items: start;
    min-height: 0;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-actions .button,
  .nav-link {
    width: 100%;
    padding-inline: 8px;
    font-size: 0.8rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero-section,
  .story-section,
  .assurance-section,
  .faq-section,
  .pricing-section,
  .trust-strip {
    width: min(100% - 28px, 1280px);
  }

  .hero-section {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(3.05rem, 14vw, 4.6rem);
  }

  .hero-subcopy {
    font-size: 1rem;
  }

  .hero-signal-rail {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .iq-brief {
    margin-top: 8px;
  }

  .brief-header,
  .brief-main {
    margin: 0;
  }

  .brief-header {
    padding: 16px;
  }

  .brief-main {
    border-radius: 0;
    padding: 16px;
  }

  .brief-metrics,
  .brief-support,
  .brief-mini-strip,
  .story-grid,
  .assurance-grid,
  .faq-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .brief-metrics,
  .brief-support {
    margin: 0;
    border-inline: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .brief-support article {
    grid-template-columns: 1fr;
    row-gap: 4px;
    padding: 14px 22px;
  }

  .brief-mini-strip span:nth-child(n + 2) {
    display: none;
  }

  .trust-strip span:last-child {
    grid-column: auto;
  }

  .price-lockup {
    justify-items: start;
  }

  .landing-footer {
    display: grid;
    padding-bottom: 104px;
  }

  .landing-footer nav {
    justify-content: flex-start;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 430px) {
  .header-actions {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: min(242px, 78vw);
  }

  .hero-actions {
    display: grid;
  }

  .mobile-cta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .nav-link:hover,
  .story-card a:hover,
  .landing-footer a:hover {
    transform: none;
  }
}

/* Taste v3 exact-reference pass: homepage mapped to references/taste/reference-04.png. */
:root {
  --taste-bg: #030807;
  --taste-panel: rgba(16, 24, 25, 0.92);
  --taste-panel-deep: rgba(0, 17, 15, 0.9);
  --taste-line: rgba(231, 185, 90, 0.34);
  --taste-line-cool: rgba(255, 255, 255, 0.14);
  --taste-gold: #efc45d;
  --taste-green: #67d95f;
  --taste-white: #fffdf8;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(231, 185, 90, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(231, 185, 90, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 74% 20%, rgba(87, 211, 91, 0.11), transparent 28%),
    radial-gradient(circle at 18% 24%, rgba(231, 185, 90, 0.08), transparent 34%),
    linear-gradient(180deg, #020606 0%, #041411 45%, #030807 100%);
  background-size: 120px 120px, 120px 120px, auto, auto, auto;
}

body::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 116px, rgba(231, 185, 90, 0.04) 116px 118px),
    repeating-linear-gradient(180deg, transparent 0 68px, rgba(231, 185, 90, 0.035) 68px 70px);
  opacity: 0.75;
}

.landing-header {
  min-height: 112px;
  padding: 0 clamp(32px, 4vw, 64px);
  border-bottom: 1px solid rgba(231, 185, 90, 0.26);
  background: rgba(3, 7, 8, 0.97);
}

.brand img {
  width: clamp(250px, 18vw, 336px);
}

.header-actions {
  gap: clamp(18px, 2.8vw, 46px);
}

.nav-link {
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.94rem;
}

.header-actions .button {
  min-height: 52px;
  padding-inline: 32px;
  border-radius: 6px;
  font-size: 0.94rem;
}

.header-actions .button-primary {
  min-width: 210px;
  border-color: rgba(102, 217, 95, 0.72);
  background: rgba(4, 14, 12, 0.86);
  color: var(--taste-green);
}

.header-actions .button-secondary {
  min-width: 150px;
  background: linear-gradient(180deg, #f4ce69 0%, #c58b2f 100%);
  color: #070806;
}

.hero-section {
  position: relative;
  grid-template-columns: minmax(600px, 0.9fr) minmax(700px, 1.1fr);
  align-items: center;
  width: min(1660px, calc(100% - 92px));
  min-height: 642px;
  gap: clamp(58px, 5vw, 92px);
  padding: 50px 0 28px;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy .eyebrow {
  color: var(--taste-gold);
  font-size: 1rem;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  color: var(--taste-white);
  font-size: clamp(4.7rem, 5.05vw, 5.65rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.08);
}

h1 span {
  color: var(--taste-gold);
}

.hero-subcopy {
  max-width: 480px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 1.12rem;
  line-height: 1.45;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 336px);
  gap: 8px;
  margin-top: 20px;
}

.hero-actions .button {
  width: 100%;
  min-height: 56px;
  border-radius: 6px;
  font-size: 1rem;
}

.hero-actions .button-primary {
  background: linear-gradient(180deg, #f4ce69 0%, #c58b2f 100%);
  color: #090805;
}

.hero-actions .button-secondary {
  border-color: rgba(231, 185, 90, 0.74);
  background: rgba(1, 8, 7, 0.66);
  color: var(--taste-white);
}

.hero-actions small {
  color: inherit;
  opacity: 0.82;
}

.hero-caveat {
  display: none;
}

.hero-rating {
  margin-top: 12px;
}

.rating-stars {
  color: var(--taste-gold);
  font-size: 1.12rem;
  letter-spacing: 2px;
}

.avatar-stack img,
.avatar-stack i {
  width: 30px;
  height: 30px;
}

.avatar-stack i {
  background:
    radial-gradient(circle at 50% 42%, var(--taste-gold) 0 15%, transparent 17%),
    linear-gradient(135deg, #155041, #334c26);
}

.iq-brief {
  place-self: center end;
  width: min(100%, 870px);
  min-width: 0;
  padding: 28px 30px;
  border: 1px solid rgba(231, 185, 90, 0.52);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(180deg, rgba(9, 31, 26, 0.96), rgba(2, 15, 13, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.brief-header {
  padding: 0 0 20px;
  border: 0;
}

.brief-header h2 {
  color: var(--taste-white);
  font-size: 2.25rem;
  line-height: 1;
}

.brief-status {
  min-height: 32px;
  border-color: rgba(102, 217, 95, 0.58);
  background: rgba(32, 71, 34, 0.58);
  color: var(--taste-white);
}

.brief-main {
  padding: 22px 24px;
  border: 1px solid rgba(231, 185, 90, 0.24);
  border-radius: 6px 6px 0 0;
  background: rgba(1, 8, 7, 0.8);
}

.brief-main span,
.brief-metrics span,
.brief-support span {
  color: var(--taste-gold);
  font-weight: 950;
}

.brief-main strong {
  display: block;
  color: var(--taste-green);
  font-size: 2.1rem;
  line-height: 1.1;
}

.brief-main p,
.brief-support p {
  color: rgba(255, 253, 248, 0.78);
}

.brief-metrics {
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(231, 185, 90, 0.28);
  border-top: 0;
  border-radius: 0;
  background: rgba(5, 38, 31, 0.74);
}

.brief-metrics div {
  min-width: 0;
  padding: 22px 24px;
}

.brief-metrics div + div {
  border-left: 1px solid rgba(231, 185, 90, 0.32);
}

.brief-metrics strong {
  color: var(--taste-green);
  font-size: 2.55rem;
}

.brief-support {
  min-width: 0;
  border: 1px solid rgba(231, 185, 90, 0.26);
  border-top: 0;
  border-radius: 0 0 6px 6px;
  background: rgba(4, 29, 25, 0.78);
}

.brief-support article {
  min-width: 0;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 56px;
  padding: 0 24px;
}

.brief-support article + article {
  border-top: 1px solid rgba(231, 185, 90, 0.25);
}

.trust-strip {
  width: min(1600px, calc(100% - 92px));
  margin: 0 auto 18px;
  border-color: rgba(231, 185, 90, 0.48);
  border-radius: 6px;
  background: rgba(231, 185, 90, 0.2);
}

.trust-strip span {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-content: center;
  min-height: 72px;
  padding: 16px 24px;
  background: rgba(16, 24, 25, 0.94);
}

.trust-strip span::before {
  display: none !important;
}

.trust-strip span::after {
  display: none !important;
}

.taste-icon {
  width: 42px;
  height: 42px;
  color: var(--taste-green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.trust-strip .taste-icon {
  grid-row: 1 / span 2;
  align-self: center;
}

.espn-logo-mark {
  display: block;
  width: clamp(76px, 6.2vw, 118px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.28));
}

.trust-strip .espn-logo-mark {
  grid-row: 1 / span 2;
  align-self: center;
}

.trust-strip .espn-trust-item {
  grid-template-columns: minmax(76px, 118px) minmax(0, 1fr);
}

.trust-strip .reference-trust-item {
  grid-template-columns: 68px minmax(0, 1fr);
}

.reference-strip-icon,
.reference-module-icon {
  display: block;
  max-width: none;
  border: 0;
  background: transparent;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.reference-strip-icon {
  grid-row: 1 / span 2;
  align-self: center;
  width: 68px;
  height: 70px;
  border-radius: 12px;
  filter: saturate(1.1) contrast(1.04) drop-shadow(0 0 16px rgba(96, 244, 85, 0.12));
}

.trust-strip strong {
  align-self: end;
  color: var(--taste-white);
  line-height: 1.1;
}

.trust-strip small {
  align-self: start;
  color: rgba(255, 253, 248, 0.68);
  line-height: 1.2;
}

.story-section {
  width: min(1600px, calc(100% - 92px));
  padding: 34px 0 56px;
}

.story-section .section-head {
  margin-bottom: 20px;
}

.story-section .section-head .eyebrow {
  color: var(--taste-gold);
}

.story-section .section-head h2 {
  color: var(--taste-white);
  font-size: clamp(1.95rem, 2.4vw, 2.65rem);
}

.story-section .section-head p {
  display: none;
}

.story-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.story-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 128px;
  padding: 24px 20px 20px;
  border-color: rgba(231, 185, 90, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(102, 217, 95, 0.08), transparent 48%),
    rgba(16, 24, 25, 0.94);
}

.story-card::before {
  display: none !important;
}

.module-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}

.reference-module-icon {
  width: 72px;
  height: 74px;
  margin: -4px 0 14px -4px;
  border-radius: 12px;
  filter: saturate(1.12) contrast(1.04) drop-shadow(0 0 16px rgba(96, 244, 85, 0.11));
}

.story-card h3,
.trust-strip strong,
.trust-strip small {
  overflow-wrap: normal;
  word-break: normal;
}

.story-card span {
  color: var(--taste-gold);
}

.story-card h3 {
  color: var(--taste-white);
  font-size: 1.05rem;
  line-height: 1.25;
}

.story-card dl,
.story-card a {
  display: none;
}

.testimonial-section {
  width: min(1500px, calc(100% - 92px));
  margin: 0 auto;
  padding: 48px 0 58px;
  border-top: 1px solid rgba(231, 185, 90, 0.2);
}

.testimonial-section .section-head {
  max-width: 860px;
}

.testimonial-section .section-head .eyebrow {
  color: var(--taste-gold);
}

.testimonial-section .section-head h2 {
  color: var(--taste-white);
  font-size: clamp(1.9rem, 2.45vw, 2.7rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  min-width: 0;
  min-height: 238px;
  border: 1px solid rgba(231, 185, 90, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 52%),
    rgba(16, 24, 25, 0.94);
  padding: 22px;
}

.testimonial-person {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.testimonial-person img {
  width: 84px;
  height: 84px;
  border: 2px solid rgba(231, 185, 90, 0.58);
  border-radius: 999px;
  background: #07100f;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.testimonial-stars {
  display: block;
  margin-bottom: 5px;
  color: var(--taste-gold);
  font-size: 0.94rem;
  letter-spacing: 1px;
  line-height: 1;
}

.testimonial-person strong {
  display: block;
  color: var(--taste-white);
  font-size: 1.05rem;
  line-height: 1.1;
}

.testimonial-person small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.pricing-section,
.assurance-section,
.faq-section {
  width: min(1500px, calc(100% - 92px));
  border-top: 1px solid rgba(231, 185, 90, 0.2);
}

@media (max-width: 1320px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .iq-brief {
    justify-self: stretch;
    width: 100%;
  }

  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .landing-header {
    min-height: 0;
    padding: 22px 18px;
  }

  .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-actions .button,
  .header-actions .button-primary,
  .header-actions .button-secondary {
    min-width: 0;
  }

  .header-actions .nav-link[href="/FantasyIQ/?login=1"],
  .header-actions .button-primary {
    display: flex;
  }

  .hero-section,
  .trust-strip,
  .story-section,
  .testimonial-section,
  .pricing-section,
  .assurance-section,
  .faq-section {
    width: min(100% - 28px, 1280px);
  }

  h1 {
    max-width: 360px;
    font-size: clamp(3.55rem, 15vw, 4.55rem);
  }

  .hero-subcopy {
    font-size: 1rem;
  }

  .brief-metrics,
  .brief-support {
    border-radius: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .brief-metrics div + div {
    border-top: 1px solid rgba(231, 185, 90, 0.25);
    border-left: 0;
  }

  .brief-support article {
    grid-template-columns: 1fr;
    row-gap: 4px;
    padding: 14px 22px;
  }

  .trust-strip span {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 14px;
    padding: 14px 16px;
  }

  .trust-strip .reference-trust-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .trust-strip .taste-icon {
    width: 34px;
    height: 34px;
  }

  .reference-strip-icon {
    width: 52px;
    height: 54px;
  }

  .reference-module-icon {
    width: 68px;
    height: 70px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
}
