/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../assets/fonts/bricolage-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../assets/fonts/bricolage-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/instrument-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/instrument-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==================================================================
   Liquid chrome design tokens
   ================================================================== */
:root {
  --ink:        #07070b;
  --ink-2:      #0b0b12;

  --text:       #ececf5;
  --text-2:     #adb2c4;
  --text-3:     #7f8497;

  /* Hairlines and glass. The top-edge inset highlight is what sells
     every surface as polished metal — never drop it. */
  --edge:       rgba(255, 255, 255, .085);
  --edge-hi:    rgba(255, 255, 255, .17);
  --glass:      rgba(255, 255, 255, .035);
  --glass-2:    rgba(255, 255, 255, .06);
  --bevel:      inset 0 1px 0 rgba(255, 255, 255, .13);

  /* Oil-slick accents — used in small doses, never as flat fills. */
  --irid-violet: #a78bfa;
  --irid-teal:   #5fe3dc;
  --irid-rose:   #ff9fc0;
  --irid-gold:   #f7d08a;

  /* The chrome ramp. Sharp value jumps = reflection; the floor stays
     light enough (#7f8698) to keep display type readable on ink. */
  --chrome: linear-gradient(100deg,
    #a2a9bd   0%,
    #ced5e7   6%,
    #ffffff  12%,
    #e9edf7  18%,
    #a8afc4  26%,
    #8d94a8  34%,
    #d4dbec  42%,
    #ffffff  50%,
    #f6ecf4  56%,
    #d2dcf2  63%,
    #a5acc0  72%,
    #8d94a8  82%,
    #edf1f9  90%,
    #b6bdd0 100%);

  --irid: linear-gradient(100deg,
    var(--irid-violet), var(--irid-teal) 34%,
    var(--irid-rose) 68%, var(--irid-gold));

  --ease: cubic-bezier(.22, .68, 0, 1.02);
}

@property --ang {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  color-scheme: dark;
}
::selection { background: rgba(167, 139, 250, .35); color: #fff; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: 'Instrument Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Instrument Sans', sans-serif;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: #fff;
  letter-spacing: -.025em;
  overflow-wrap: break-word;
}
p { margin: 0 0 1em; color: var(--text-2); }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--irid-violet);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4a4f63, #2a2e3c);
  border-radius: 999px;
  border: 3px solid var(--ink);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #6d738a, #3b4052); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================================================================
   Chrome text
   ================================================================== */
.chrome-text {
  background-image: var(--chrome);
  background-size: 190% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 22px rgba(150, 170, 255, .22));
}

/* The hero mark keeps a slow sheen sweeping across it on its own. */
.chrome-text-live {
  animation: chromeSweep 9s linear infinite;
}
@keyframes chromeSweep {
  to { background-position: -190% 50%; }
}

/* Section headings sweep as they travel through the viewport — pure
   CSS scroll-driven animation, no JS, runs on the compositor. */
@supports (animation-timeline: view()) {
  .section-title {
    animation: chromeSweepScroll linear both;
    animation-timeline: view();
    animation-range: entry 15% cover 85%;
  }
  @keyframes chromeSweepScroll {
    from { background-position: 40% 50%; }
    to   { background-position: -110% 50%; }
  }
}

/* ==================================================================
   Background stack
   ================================================================== */
.bg-chrome {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  background: var(--ink);
}

/* Static stand-in when WebGL is unavailable — layered radial sheens
   read as brushed metal well enough that nothing looks broken. */
.no-webgl .bg-chrome { display: none; }
.no-webgl body {
  background:
    radial-gradient(70% 55% at 22% 12%, rgba(167, 139, 250, .16), transparent 62%),
    radial-gradient(60% 50% at 82% 28%, rgba(95, 227, 220, .11), transparent 64%),
    radial-gradient(80% 60% at 50% 96%, rgba(255, 159, 192, .09), transparent 66%),
    linear-gradient(168deg, #12131c 0%, #07070b 55%, #0c0d15 100%);
  background-attachment: fixed;
}

.bg-scrim {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(135% 95% at 50% 0%,
      rgba(7, 7, 11, .34) 0%,
      rgba(7, 7, 11, .62) 55%,
      rgba(7, 7, 11, .86) 100%);
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 1; }

/* ==================================================================
   Surfaces
   ================================================================== */
/* Every panel: dark glass + hairline + top bevel. */
.surface {
  background: var(--glass);
  border: 1px solid var(--edge);
  box-shadow: var(--bevel);
}

/* Cursor-tracked specular highlight. --mx/--my are set from JS. */
.glare { position: relative; }
.glare::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(230px circle at var(--mx, 50%) var(--my, 0%),
    rgba(255, 255, 255, .10), transparent 62%);
}
.glare:hover::after { opacity: 1; }

/* Rotating iridescent hairline, drawn as a masked ring so the fill
   underneath stays untouched. */
.irid-ring { position: relative; }
.irid-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(from var(--ang),
    var(--irid-violet), var(--irid-teal), var(--irid-rose),
    var(--irid-gold), var(--irid-violet));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  animation: ringSpin 7s linear infinite;
  opacity: .85;
}
@keyframes ringSpin { to { --ang: 360deg; } }

/* ---------- Reveal animation ---------- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal { transform: translateY(28px) scale(.985); }
.reveal-left { transform: translate(-42px, 16px) rotate(-3deg); }
.reveal-right { transform: translate(42px, 16px) rotate(3deg); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg) scale(1);
}

/* ==================================================================
   Buttons
   ================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: -.005em;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s ease,
              border-color .25s ease, background .25s ease;
  white-space: nowrap;
}

/* Primary = a milled metal pill: light top, dark equator, light base. */
.btn-primary {
  color: #0a0a10;
  background: linear-gradient(180deg,
    #ffffff 0%, #eaeefa 34%, #b6bdd2 50%, #d9dfee 62%, #ffffff 100%);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -1px 0 rgba(0, 0, 0, .28),
    0 10px 30px rgba(130, 150, 210, .16);
}
/* Sheen sweep on hover. */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -40% -10%;
  z-index: -1;
  background: linear-gradient(100deg,
    transparent 38%, rgba(255, 255, 255, .95) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -1px 0 rgba(0, 0, 0, .28),
    0 14px 42px rgba(167, 139, 250, .30),
    0 6px 22px rgba(95, 227, 220, .16);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--glass);
  border-color: var(--edge-hi);
  color: #fff;
  box-shadow: var(--bevel);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: var(--glass-2);
  border-color: rgba(167, 139, 250, .55);
  box-shadow: var(--bevel), 0 10px 30px rgba(167, 139, 250, .18);
}

.btn-small { padding: 11px 22px; font-size: .88rem; }
.btn-large { padding: 19px 44px; font-size: 1.06rem; }

/* ==================================================================
   Header
   ================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(7, 7, 11, 0);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(9, 9, 15, .62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--edge);
  box-shadow: var(--bevel);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.38rem;
  color: #fff;
  letter-spacing: -.03em;
}
.logo span {
  background-image: var(--chrome);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-cursor {
  display: inline-block;
  width: 2px;
  height: .95em;
  margin-left: 3px;
  background: linear-gradient(180deg, var(--irid-teal), var(--irid-violet));
  vertical-align: -.1em;
  box-shadow: 0 0 10px rgba(95, 227, 220, .7);
  animation: cursorBlink 1.1s steps(1) infinite;
}
@keyframes cursorBlink { 50% { opacity: 0; } }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 12px;
}
.nav a {
  font-size: .94rem;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 1.5px; width: 0;
  border-radius: 2px;
  background-image: var(--irid);
  transition: width .3s var(--ease);
}
.nav a:hover::after { width: 100%; }
.nav a.active { color: #fff; }
.nav a.active::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--glass);
  border: 1px solid var(--edge-hi);
  border-radius: 12px;
  box-shadow: var(--bevel);
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  height: 1.5px;
  margin: 0 9px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==================================================================
   Hero
   ================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 200px 0 116px;
  text-align: center;
}
/* Soft specular bloom trailing the cursor, on top of the shader. */
.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(560px circle at var(--x, 50%) var(--y, 18%),
    rgba(226, 232, 255, .10), transparent 62%);
}
.hero-inner { position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--edge-hi);
  background: var(--glass);
  box-shadow: var(--bevel);
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 30px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
  letter-spacing: -.04em;
}
.strike {
  position: relative;
  color: var(--text-3);
}
.strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; top: 52%;
  height: 3px;
  border-radius: 2px;
  background-image: var(--irid);
  box-shadow: 0 0 16px rgba(167, 139, 250, .6);
  transform: rotate(-3deg) scaleX(0);
  transform-origin: left center;
  transition: transform .7s var(--ease) .55s;
}
.reveal.in-view .strike::after,
.reveal-left.in-view .strike::after,
.reveal-right.in-view .strike::after { transform: rotate(-3deg) scaleX(1); }

.hero-lead {
  max-width: 690px;
  margin: 26px auto 0;
  font-size: 1.09rem;
  color: var(--text-2);
}
.hero-lead strong { color: #fff; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}
.hero-badges span {
  font-size: .85rem;
  color: var(--text-2);
  background: var(--glass);
  border: 1px solid var(--edge);
  box-shadow: var(--bevel);
  padding: 9px 17px;
  border-radius: 999px;
}

/* ==================================================================
   Marquee ticker
   ================================================================== */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 17px 0;
  margin: 0 -12px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, .075), rgba(255, 255, 255, .015));
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  box-shadow: var(--bevel);
  transform: rotate(-.9deg);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: .5em;
  background-image: var(--chrome);
  background-size: 160% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.marquee-track i {
  font-style: normal;
  -webkit-text-fill-color: var(--irid-teal);
  color: var(--irid-teal);
}
.marquee-track i:nth-of-type(even) {
  -webkit-text-fill-color: var(--irid-rose);
  color: var(--irid-rose);
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ==================================================================
   Sections
   ================================================================== */
.section { padding: 108px 0; }
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  max-width: 800px;
  margin: 0 auto .5em;
  font-weight: 800;
  background-image: var(--chrome);
  background-size: 190% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 20px rgba(150, 170, 255, .16));
}
.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  font-size: 1.02rem;
}

.grid { display: grid; gap: 24px; }
.grid > * { min-width: 0; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==================================================================
   Problem / Why cards
   ================================================================== */
.card {
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: var(--bevel);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.card-icon {
  font-size: 1.75rem;
  display: inline-block;
  margin-bottom: 14px;
}
/* Editorial category label — replaces decorative icons and doubles as a
   scanning anchor for readers who skim rather than read. */
.card-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--edge);
}
.card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.card p { font-size: .95rem; margin-bottom: 0; }

/* Attribution for the two cited findings — small, quiet, verifiable. */
.card-source {
  margin-top: 14px;
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--text-3);
}
.card-source::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  margin-right: 9px;
  vertical-align: middle;
  background: var(--edge-hi);
}

.card-problem:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 159, 192, .32);
  box-shadow: var(--bevel), 0 16px 44px rgba(0, 0, 0, .4);
}
.card-glow:hover {
  transform: translateY(-5px);
  border-color: rgba(95, 227, 220, .38);
  box-shadow: var(--bevel), 0 16px 44px rgba(0, 0, 0, .4),
              0 0 34px rgba(95, 227, 220, .10);
}
.card-icon.neon { filter: drop-shadow(0 0 12px rgba(167, 139, 250, .55)); }

/* ==================================================================
   Audience
   ================================================================== */
.audience-grid { grid-template-columns: repeat(4, 1fr); }
.audience-card {
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 38px 20px;
  box-shadow: var(--bevel);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, .4);
  box-shadow: var(--bevel), 0 16px 44px rgba(0, 0, 0, .4);
}
.audience-card .card-icon { font-size: 2.4rem; margin-bottom: 12px; }
.audience-card h3 { font-size: 1.02rem; margin-bottom: 0; }

/* ==================================================================
   Pricing
   ================================================================== */
.pricing-grid { align-items: stretch; }
.pricing-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 24px;
  padding: 42px 32px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--bevel);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--edge-hi);
  box-shadow: var(--bevel), 0 20px 50px rgba(0, 0, 0, .45);
}
.pricing-card h3 { font-size: 1.34rem; }
.pricing-desc { font-size: .92rem; min-height: 66px; }

.pricing-badge {
  position: absolute;
  top: -14px; left: 30px;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  transform: rotate(-2.5deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
}
.badge-neutral {
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06));
  color: #fff;
  border: 1px solid var(--edge-hi);
}
.badge-popular {
  background: linear-gradient(135deg, #ffffff, #cfd6ea 45%, #ffffff);
  color: #0a0a10;
  box-shadow: inset 0 1px 0 #fff, 0 0 26px rgba(207, 214, 234, .45);
}

.price { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
.price-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -.035em;
  background-image: var(--chrome);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-currency { font-size: 1.1rem; color: var(--text-2); font-weight: 600; }
.price-note { font-size: .8rem; color: var(--text-3); margin-bottom: 18px; }

/* Scope line — sets the expectation before the feature list is read. */
.pricing-scope {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 24px;
  padding: 9px 0;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  /* Holds the feature lists in line across all three cards even if one
     scope line wraps. */
  min-height: 58px;
  display: flex;
  align-items: center;
}

.pricing-features { margin-bottom: 30px; flex-grow: 1; }
.pricing-features li {
  font-size: .92rem;
  color: var(--text-2);
  padding: 10px 0 10px 27px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .055);
}
.pricing-features li:first-child { border-top: none; }
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--irid-teal);
  font-weight: 700;
}
.pricing-cta { width: 100%; }

.pricing-featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025));
  border-color: transparent;
  box-shadow: var(--bevel), 0 24px 64px rgba(0, 0, 0, .5);
}
.pricing-featured:hover { border-color: transparent; }

/* Risk reversal + capacity note under the grid. */
.assurance {
  max-width: 760px;
  margin: 44px auto 0;
  padding: 28px 34px;
  text-align: center;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--edge);
  box-shadow: var(--bevel);
}
.assurance p { font-size: .97rem; margin-bottom: 0; }
.assurance strong { color: #fff; font-weight: 600; }
.assurance-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--edge);
  font-size: .86rem;
  color: var(--text-3);
}

/* ==================================================================
   Works / Portfolio
   ================================================================== */
.works-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.work-card {
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--bevel);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, .38);
  box-shadow: var(--bevel), 0 24px 60px rgba(0, 0, 0, .5),
              0 0 36px rgba(167, 139, 250, .12);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03));
  border-bottom: 1px solid var(--edge);
  box-shadow: var(--bevel);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.browser-url {
  flex: 1;
  margin-left: 8px;
  font-size: .75rem;
  color: var(--text-2);
  background: rgba(0, 0, 0, .34);
  border: 1px solid var(--edge);
  padding: 4px 14px;
  border-radius: 999px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-preview {
  position: relative;
  padding: 16px 20px 30px;
  min-height: 205px;
  overflow: hidden;
  transition: transform .4s var(--ease);
  transform-origin: top center;
}
.work-card:hover .work-preview { transform: scale(1.03); }

/* Client previews keep their own brand colours — they represent real
   sites, so they intentionally sit outside the chrome system. */
.preview-gold {
  background:
    radial-gradient(340px circle at 80% 10%, rgba(212, 175, 55, .22), transparent 65%),
    linear-gradient(160deg, #1c1610, #0d0a07);
}
.preview-pink {
  background: linear-gradient(160deg, #fff1f6, #ffe0ec);
}
.mini-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
  pointer-events: none;
}
.mini-blob-a { width: 130px; height: 130px; background: #ffb3d1; top: -40px; right: -30px; }
.mini-blob-b { width: 90px; height: 90px; background: #ffd6e6; bottom: -30px; left: 18%; }

.mini-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.mini-logo { font-size: .82rem; font-weight: 700; white-space: nowrap; }
.mini-logo-gold { font-family: Georgia, 'Times New Roman', serif; color: #e9d8a6; }
.mini-logo-gold em { font-style: italic; color: #d4af37; }
.mini-logo-pink { font-family: 'Instrument Sans', sans-serif; color: #d6336c; }
.mini-links { display: flex; gap: 8px; margin-left: auto; }
.mini-links i { display: block; width: 16px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, .25); }
.mini-links-dark i { background: rgba(214, 51, 108, .3); }
.mini-btn { width: 52px; height: 14px; border-radius: 999px; flex-shrink: 0; }
.mini-btn-gold { background: linear-gradient(135deg, #d4af37, #b8860b); }
.mini-btn-pink { background: linear-gradient(135deg, #ff5c9d, #d6336c); }

.mini-hero { position: relative; text-align: center; }
.mini-eyebrow {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mini-eyebrow-gold { color: #d4af37; }
.mini-eyebrow-pink {
  display: inline-block;
  color: #d6336c;
  background: rgba(255, 255, 255, .75);
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: .02em;
}
.mini-title { font-size: 1.3rem; line-height: 1.2; font-weight: 700; margin-bottom: 14px; }
.mini-title-gold { font-family: Georgia, 'Times New Roman', serif; color: #f5ecd7; }
.mini-title-pink { font-family: 'Bricolage Grotesque', 'Instrument Sans', sans-serif; color: #3d2030; }
.mini-title-pink em {
  font-style: normal;
  background: linear-gradient(135deg, #ff5c9d, #d6336c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mini-cta { display: inline-block; width: 92px; height: 20px; border-radius: 999px; }
.mini-cta-gold { background: linear-gradient(135deg, #d4af37, #b8860b); box-shadow: 0 0 16px rgba(212, 175, 55, .4); }
.mini-cta-pink { background: linear-gradient(135deg, #ff5c9d, #d6336c); box-shadow: 0 0 16px rgba(214, 51, 108, .35); }

.work-info { padding: 26px 28px 30px; }
.work-info h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.work-arrow {
  color: var(--irid-teal);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.work-card:hover .work-arrow { transform: translateX(6px); }
.work-info p { font-size: .93rem; margin-bottom: 18px; }
.work-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.work-tags span {
  font-size: .78rem;
  color: var(--text-2);
  background: var(--glass);
  border: 1px solid var(--edge);
  box-shadow: var(--bevel);
  padding: 6px 13px;
  border-radius: 999px;
}

/* ==================================================================
   Process
   ================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  min-width: 0;
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: var(--bevel);
  transition: transform .3s var(--ease), border-color .3s ease;
}
.step:hover { transform: translateY(-4px); border-color: var(--edge-hi); }
.step-num {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -.04em;
  background-image: var(--chrome);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
/* Duration sits opposite the step number — makes the process feel
   designed and bounded rather than open-ended. */
.step-meta {
  position: absolute;
  top: 32px; right: 26px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--edge);
  padding: 5px 11px;
  border-radius: 999px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .92rem; margin-bottom: 0; }

/* ==================================================================
   FAQ
   ================================================================== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--bevel);
  transition: border-color .3s ease, background .3s ease;
}
.faq-item:hover { border-color: var(--edge-hi); }
.faq-item.open { background: var(--glass-2); border-color: rgba(167, 139, 250, .3); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 21px 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-toggle {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--irid-teal);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--irid-violet); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-answer p { padding: 0 26px 21px; font-size: .95rem; margin-bottom: 0; }
.faq-item.open .faq-answer { max-height: 420px; }
.faq-link {
  color: var(--irid-teal);
  border-bottom: 1px solid rgba(95, 227, 220, .4);
  transition: border-color .2s ease;
}
.faq-link:hover { border-bottom-color: var(--irid-teal); }

/* ==================================================================
   Final CTA
   ================================================================== */
.final-cta {
  text-align: center;
  padding-bottom: 140px;
}
.final-cta-inner {
  max-width: 700px;
  padding: 66px 44px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .02));
  border: 1px solid transparent;
  box-shadow: var(--bevel), 0 30px 80px rgba(0, 0, 0, .5);
}
.final-cta-inner h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  background-image: var(--chrome);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-cta-email { font-size: .9rem; margin-top: 20px; }
.final-cta-email a {
  color: var(--irid-teal);
  border-bottom: 1px solid rgba(95, 227, 220, .35);
}

/* ==================================================================
   Footer
   ================================================================== */
.site-footer {
  border-top: 1px solid var(--edge);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-inner p { font-size: .85rem; margin-bottom: 0; color: var(--text-3); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a {
  font-size: .85rem;
  color: var(--text-2);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--irid-teal); }

/* ==================================================================
   Responsive
   ================================================================== */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr; max-width: 560px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-featured { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }

  /* backdrop-filter is expensive on mobile GPUs — solid background instead */
  .site-header.scrolled {
    background: rgba(9, 9, 15, .96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(9, 9, 15, .98);
    border-bottom: 1px solid var(--edge);
    padding: 8px 24px 20px;
  }
  .nav.mobile-open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
  }
}

@media (max-width: 640px) {
  .hero { padding: 155px 0 84px; }
  .section { padding: 74px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .pricing-featured { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .final-cta-inner { padding: 44px 26px; }
  .work-preview { min-height: 175px; }
  .mini-title { font-size: 1.1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .marquee { padding: 13px 0; }
  .marquee-track span { font-size: .8rem; }
}

/* Touch devices get no hover-only affordances and no cursor glare. */
@media (hover: none) {
  .glare::after { display: none; }
}

/* ==================================================================
   Reduced motion
   ================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .strike::after { transform: rotate(-3deg) scaleX(1); transition: none; }
  .marquee-track { animation: none; }
  .logo-cursor { animation: none; }
  .chrome-text-live { animation: none; }
  .irid-ring::before { animation: none; }
  .section-title { animation: none; }
  .btn-primary::before { transition: none; }
}
