/* ============================================================
   PRIMORABRIDGE — Design System
   White · Ink Text · Vivid Indigo/Magenta · Clean Sans
   ============================================================ */

:root {
  /* ---- Brand color tokens (white + vivid) ---- */
  --char-900: #edeef6;   /* selection text / lightest */
  --char-800: #ffffff;   /* base background (white) */
  --char-700: #ffffff;   /* raised surface / cards */
  --char-600: #f4f5fb;   /* alt surface     */
  --char-500: #e3e5f0;   /* hairline / muted */

  --ivory-50:  #0e1020;  /* primary heading text */
  --ivory-100: #1c2036;
  --ivory-300: #3f4458;  /* body / secondary text */
  --ivory-500: #6b7187;  /* muted text */
  --ivory-700: #a4aabf;  /* faint / placeholder */

  /* vivid indigo — lively, modern */
  --gold:      #6a3cff;
  --gold-soft: #9a7bff;
  --gold-deep: #4f1fe6;
  --gold-glow: rgba(106,60,255,0.18);

  /* glass (ink-tinted frost on white) */
  --glass-bg:     rgba(24,20,70,0.025);
  --glass-bg-2:   rgba(24,20,70,0.05);
  --glass-border: rgba(24,20,70,0.10);
  --glass-hi:     rgba(106,60,255,0.30);

  /* soft elevation shadows */
  --shadow-sm: 0 1px 2px rgba(30,25,80,0.05), 0 10px 28px -14px rgba(30,25,80,0.15);
  --shadow-md: 0 2px 8px rgba(30,25,80,0.06), 0 28px 64px -26px rgba(30,25,80,0.22);

  /* ---- Type ---- */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-scale: 1; /* tweakable */

  /* ---- Layout ---- */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;
}

/* ============================================================
   Reset & base
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--char-800);
  color: var(--ivory-300);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--char-900); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ambient page texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 600px at 80% -8%, rgba(106,60,255,0.16), transparent 60%),
    radial-gradient(820px 700px at 6% 10%, rgba(255,60,160,0.12), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
/* fine grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 1; }
.section { padding: clamp(72px, 11vw, 160px) 0; position: relative; z-index: 1; }
.section--tight { padding: clamp(56px, 8vw, 104px) 0; }

/* ---- Typography scale ---- */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--ivory-50); line-height: 1.02; letter-spacing: -0.02em; }

.display {
  font-size: clamp(48px, 8.5vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.h-section { font-size: clamp(34px, 5.2vw, 68px); line-height: 1.0; }
.h-card { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.08; }

.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: var(--ivory-300); max-width: 58ch; }
.muted { color: var(--ivory-500); }
em.serif-em { font-family: var(--font-display); font-style: normal; font-weight: 500; color: var(--gold); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 100px;
  transition: transform .45s var(--ease), background .3s, color .3s, box-shadow .45s var(--ease);
  will-change: transform;
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #ffffff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.28) inset, 0 14px 34px -14px var(--gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 22px 48px -16px var(--gold); }

.btn--ghost {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--ivory-50);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { border-color: var(--glass-hi); background: var(--glass-bg-2); transform: translateY(-3px); }

.btn--lg { padding: 18px 34px; font-size: 16px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; color: var(--ivory-50);
}
.link-arrow .arr { color: var(--gold); transition: transform .4s var(--ease); }
.link-arrow:hover .arr { transform: translateX(5px); }

/* ============================================================
   Glass card
   ============================================================ */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), border-color .5s, padding .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: padding .5s var(--ease);
}
.nav.is-stuck {
  background: rgba(255,255,255,0.82);
  box-shadow: 0 8px 30px -16px rgba(30,25,80,0.20);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-bottom-color: var(--glass-border);
}
.nav.is-stuck .nav__inner { padding-top: 14px; padding-bottom: 14px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-size: 23px; color: var(--ivory-50); letter-spacing: 0.01em;
  line-height: 1;
}
.brand__name b { font-weight: 400; color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 14.5px; color: var(--ivory-300); letter-spacing: 0.01em;
  position: relative; padding: 4px 0; transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav__links a:hover { color: var(--ivory-50); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 6px 0; }
.nav__burger span { height: 1.5px; background: var(--ivory-50); transition: transform .4s var(--ease), opacity .3s; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  gap: 8px;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}
.drawer.is-open { transform: translateY(0); }
.drawer a {
  font-family: var(--font-display); font-size: 38px; color: var(--ivory-50);
  padding: 12px 0; border-bottom: 1px solid var(--glass-border);
}
.drawer a:hover { color: var(--gold); }

/* ============================================================
   Reveal animation
   ============================================================ */
/* Resting state is ALWAYS visible (safe for captures / throttled tabs / no-JS).
   The entrance is a one-shot keyframe applied only when JS adds .in. */
@keyframes pbReveal {
  from { opacity: 0; transform: translateY(calc(26px * var(--motion-scale))); }
  to   { opacity: 1; transform: none; }
}
.reveal { opacity: 1; transform: none; }
.reveal.in { animation: pbReveal .85s var(--ease-out) backwards; }
.reveal.in[data-delay="1"] { animation-delay: .07s; }
.reveal.in[data-delay="2"] { animation-delay: .14s; }
.reveal.in[data-delay="3"] { animation-delay: .21s; }
.reveal.in[data-delay="4"] { animation-delay: .28s; }
.reveal.in[data-delay="5"] { animation-delay: .35s; }
@media (prefers-reduced-motion: reduce) {
  .reveal.in { animation: none; }
  html { scroll-behavior: auto; }
}
/* Once the entrance has played (or the clock can't advance), strip the
   animation so the element rests in its visible base state. */
.reveal.anim-done,
.hero.anim-done .hero__title .ln > span,
.hero.anim-done .chart i,
.step.anim-done .step__bar i { animation: none !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(140px, 20vh, 220px); padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0;
}
.hero__orb--1 { width: 520px; height: 520px; top: -120px; right: -80px; background: radial-gradient(circle, var(--gold-glow), transparent 70%); }
.hero__orb--2 { width: 420px; height: 420px; bottom: -160px; left: -120px; background: radial-gradient(circle, rgba(255,60,160,0.16), transparent 70%); }

.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title { margin: 26px 0 26px; font-size: clamp(44px, 7vw, 92px); }
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span { display: block; }
@keyframes pbLineUp { from { transform: translateY(110%); } to { transform: translateY(0); } }
.hero.is-ready .hero__title .ln > span { animation: pbLineUp 1s var(--ease) backwards; }
.hero.is-ready .hero__title .ln:nth-child(2) > span { animation-delay: .1s; }
.hero.is-ready .hero__title .ln:nth-child(3) > span { animation-delay: .2s; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 40px; color: var(--ivory-500); font-size: 14px; }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--char-800);
  background: linear-gradient(135deg, var(--char-500), var(--char-600));
}
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* hero visual */
.hero__visual { position: relative; }
.hero__panel { padding: 26px; position: relative; box-shadow: var(--shadow-md); background: rgba(255,255,255,0.72); }
.hero__panel-glow { position: absolute; inset: -1px; border-radius: var(--radius); background: linear-gradient(135deg, var(--glass-hi), transparent 40%); pointer-events: none; opacity: .6; }

.metric-row { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--glass-border); }
.metric-row:last-child { border-bottom: none; }
.metric-row .m-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-500); }
.metric-row .m-val { font-family: var(--font-display); font-size: 34px; color: var(--ivory-50); }
.metric-row .m-val b { color: var(--gold); font-weight: 400; }

.chart {
  height: 92px; margin: 6px 0 18px; display: flex; align-items: flex-end; gap: 7px;
}
.chart i {
  flex: 1; background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  border-radius: 4px 4px 0 0; opacity: .85;
  transform-origin: bottom;
}
@keyframes pbGrowY { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.hero.is-ready .chart i { animation: pbGrowY .9s var(--ease) backwards; }

.hero__tag {
  position: absolute; padding: 12px 16px; border-radius: 14px;
  display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ivory-100);
  box-shadow: 0 18px 44px -18px rgba(30,25,80,0.28);
  background: rgba(255,255,255,0.86);
}
.hero__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-glow); }
.hero__tag--1 { top: -22px; left: -28px; }
.hero__tag--2 { bottom: -20px; right: -22px; }
@media (max-width: 560px){ .hero__tag { display: none; } }

/* ============================================================
   MARQUEE / logos
   ============================================================ */
.marquee { overflow: hidden; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 30px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 70px; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-size: 26px; color: var(--ivory-500);
  white-space: nowrap; display: inline-flex; align-items: center; gap: 12px; letter-spacing: .02em;
  transition: color .3s;
}
.marquee__track span:hover { color: var(--ivory-100); }
.marquee__track span::before { content: "✦"; color: var(--gold); font-size: 12px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   Section heading block
   ============================================================ */
.shead { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; margin-bottom: clamp(40px, 6vw, 72px); }
.shead__title { margin-top: 18px; max-width: 18ch; }
.shead p { max-width: 42ch; }
@media (max-width: 800px){ .shead { grid-template-columns: 1fr; } }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--glass-border); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.stat { background: var(--char-700); padding: clamp(28px, 4vw, 48px); position: relative; transition: background .5s; }
.stat:hover { background: var(--char-600); }
.stat__num { font-family: var(--font-display); font-size: clamp(46px, 6vw, 76px); color: var(--ivory-50); line-height: 1; letter-spacing: -0.02em; }
.stat__num .suffix { color: var(--gold); }
.stat__label { margin-top: 12px; font-size: 14.5px; color: var(--ivory-500); max-width: 22ch; }
@media (max-width: 880px){ .stats { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SERVICES
   ============================================================ */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  padding: 34px 30px 30px; border-radius: var(--radius); position: relative; overflow: hidden;
  background: var(--char-700); border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform .6s var(--ease), border-color .5s, background .5s, box-shadow .5s var(--ease);
}
.svc::after { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 200px at var(--mx,50%) 0%, var(--gold-glow), transparent 70%); opacity: 0; transition: opacity .5s; pointer-events: none; }
.svc:hover { transform: translateY(-6px); border-color: var(--glass-hi); box-shadow: var(--shadow-md); }
.svc:hover::after { opacity: 1; }
.svc__num { font-family: var(--font-mono); font-size: 12px; color: var(--gold); letter-spacing: .18em; }
.svc__ico { width: 50px; height: 50px; margin: 22px 0 20px; color: var(--gold); }
.svc__ico svg { width: 100%; height: 100%; }
.svc h3 { margin-bottom: 12px; }
.svc p { font-size: 15px; color: var(--ivory-500); line-height: 1.55; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.svc__tags span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ivory-300); padding: 6px 11px; border: 1px solid var(--glass-border); border-radius: 100px; }
.svc--wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
@media (max-width: 980px){ .services { grid-template-columns: repeat(2,1fr);} .svc--wide{ grid-column: span 2; } }
@media (max-width: 640px){ .services { grid-template-columns: 1fr;} .svc--wide{ grid-column: auto; grid-template-columns: 1fr; } }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases { display: grid; gap: 20px; }
.case {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px,4vw,64px); align-items: center;
  padding: clamp(28px, 4vw, 56px); border-radius: var(--radius-lg);
  background: var(--char-700); border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
.case:nth-child(even) .case__media { order: -1; }
.case__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.case__logo { font-family: var(--font-display); font-size: 22px; color: var(--ivory-50); }
.case__chip { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); padding: 5px 12px; border: 1px solid var(--gold-deep); border-radius: 100px; }
.case h3 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 16px; }
.case__quote { font-size: 16px; color: var(--ivory-300); }
.case__results { display: flex; gap: 38px; margin-top: 30px; flex-wrap: wrap; }
.case__results .r-num { font-family: var(--font-display); font-size: 42px; color: var(--gold); line-height: 1; }
.case__results .r-lab { font-size: 13px; color: var(--ivory-500); margin-top: 6px; }
.case__media { position: relative; }
@media (max-width: 860px){ .case { grid-template-columns: 1fr; } .case:nth-child(even) .case__media{ order: 0; } }

/* placeholder media */
.ph {
  position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--glass-border);
  background:
    repeating-linear-gradient(45deg, rgba(24,20,70,0.05) 0 10px, transparent 10px 20px),
    var(--char-600);
  display: flex; align-items: center; justify-content: center; min-height: 280px; color: var(--ivory-700);
}
.ph__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 8px 14px; border: 1px dashed var(--ivory-700); border-radius: 8px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 30px 26px; border-left: 1px solid var(--glass-border); position: relative; transition: background .5s; }
.step:first-child { border-left: none; }
.step__no { font-family: var(--font-display); font-size: 56px; color: var(--char-500); line-height: 1; transition: color .5s; }
.step:hover .step__no { color: var(--gold); }
.step h3 { font-size: 22px; margin: 18px 0 12px; }
.step p { font-size: 14.5px; color: var(--ivory-500); }
.step__bar { height: 2px; background: var(--glass-border); margin-top: 26px; position: relative; overflow: hidden; }
.step__bar i { position: absolute; inset: 0; background: var(--gold); transform-origin: left; }
@keyframes pbGrowX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.step.in .step__bar i { animation: pbGrowX 1s var(--ease) backwards; }
@media (max-width: 860px){ .process { grid-template-columns: 1fr 1fr; } .step:nth-child(3){ border-left: none; } }
@media (max-width: 520px){ .process { grid-template-columns: 1fr; } .step{ border-left: none; border-top: 1px solid var(--glass-border);} .step:first-child{ border-top:none; } }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { display: flex; flex-wrap: wrap; gap: 12px; }
.ind {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px; border-radius: 100px; border: 1px solid var(--glass-border);
  background: var(--char-700); font-size: 16px; color: var(--ivory-100);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), border-color .4s, color .4s, background .4s, box-shadow .4s;
}
.ind:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-deep); background: var(--char-600); box-shadow: var(--shadow-md); }
.ind .ind__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tcols { columns: 3; column-gap: 18px; }
.tcard { break-inside: avoid; margin-bottom: 18px; padding: 30px; border-radius: var(--radius); background: var(--char-700); border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm); transition: border-color .4s, transform .5s var(--ease), box-shadow .5s var(--ease); }
.tcard:hover { border-color: var(--glass-hi); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard .stars { font-size: 13px; margin-bottom: 16px; }
.tcard p { font-size: 16px; color: var(--ivory-100); line-height: 1.55; }
.tcard__by { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.tcard__av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--char-500), var(--char-600)); border: 1px solid var(--glass-border); flex: none; }
.tcard__by b { color: var(--ivory-50); font-weight: 600; display: block; font-size: 14.5px; }
.tcard__by small { color: var(--ivory-500); font-size: 12.5px; }
@media (max-width: 980px){ .tcols { columns: 2; } }
@media (max-width: 620px){ .tcols { columns: 1; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--glass-border); }
.qa { border-bottom: 1px solid var(--glass-border); }
.qa__q { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; text-align: left; padding: 28px 4px; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 27px); color: var(--ivory-50); transition: color .3s; }
.qa__q:hover { color: var(--gold-soft); }
.qa__icon { flex: none; width: 26px; height: 26px; position: relative; }
.qa__icon::before, .qa__icon::after { content: ""; position: absolute; background: var(--gold); transition: transform .4s var(--ease), opacity .3s; }
.qa__icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.qa__icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.qa.is-open .qa__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.qa__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.qa__a-inner { padding: 0 60px 30px 4px; color: var(--ivory-500); font-size: 16px; line-height: 1.6; max-width: 70ch; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(48px, 8vw, 100px) clamp(28px, 6vw, 88px);
  background: linear-gradient(135deg, var(--char-700), var(--char-600));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
.cta__orb { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(80px); background: radial-gradient(circle, var(--gold-glow), transparent 70%); top: -200px; right: -120px; pointer-events: none; }
.cta__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
@media (max-width: 860px){ .cta__grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 14px; background: var(--char-700); box-shadow: var(--shadow-md); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact__details { list-style: none; display: grid; gap: 14px; margin-top: 28px; }
.contact__details li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start; font-size: 15px; color: var(--ivory-300); line-height: 1.45; }
.contact__details a { color: var(--ivory-300); transition: color .3s; }
.contact__details a:hover { color: var(--gold); }
.contact__details .ci { width: 22px; height: 22px; color: var(--gold); margin-top: 1px; }
.contact__details .ci svg { width: 100%; height: 100%; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ivory-500); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 15px; color: var(--ivory-50);
  background: var(--char-600); border: 1px solid var(--glass-border); border-radius: 12px;
  padding: 14px 16px; transition: border-color .3s, background .3s, box-shadow .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ivory-700); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--char-700); box-shadow: 0 0 0 3px var(--gold-glow); }
.field textarea { resize: vertical; min-height: 96px; }
.form__note { font-size: 13px; color: var(--ivory-500); }
.form__ok { display: none; align-items: center; gap: 10px; color: var(--gold-soft); font-size: 15px; padding: 14px 0; }
.form.is-sent .form__ok { display: flex; }

@media (max-width: 520px){ .form__row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--glass-border); padding: clamp(56px, 7vw, 88px) 0 40px; position: relative; z-index: 1; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brandcol p { font-size: 14.5px; color: var(--ivory-500); max-width: 34ch; margin-top: 20px; }
.footer__addr { font-style: normal; font-size: 13.5px; color: var(--ivory-500); line-height: 1.6; margin-top: 20px; }
.footer__addr strong { color: var(--ivory-300); font-weight: 600; letter-spacing: .02em; }
.footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-500); margin-bottom: 18px; font-weight: 400; }
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a { font-size: 15px; color: var(--ivory-300); transition: color .3s; }
.footer ul a:hover { color: var(--gold-soft); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: clamp(48px, 6vw, 72px); padding-top: 28px; border-top: 1px solid var(--glass-border); flex-wrap: wrap; }
.footer__bottom p { font-size: 13px; color: var(--ivory-700); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--ivory-300); transition: border-color .3s, color .3s, transform .4s var(--ease); pointer-events: none; cursor: default; opacity: 0.55; }
.footer__social a:hover { border-color: var(--gold-deep); color: var(--gold); transform: translateY(-3px); }
@media (max-width: 820px){ .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   INDUSTRY SOLUTIONS (featured cards)
   ============================================================ */
.solutions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sol {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--char-700); border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  padding: 30px 26px 28px;
  display: flex; flex-direction: column; min-height: 300px;
  transition: transform .6s var(--ease), border-color .5s, box-shadow .6s var(--ease);
}
.sol:hover { transform: translateY(-6px); border-color: var(--gold-deep); box-shadow: var(--shadow-md); }
.sol__top { display: flex; align-items: center; justify-content: space-between; }
.sol__ico { width: 42px; height: 42px; color: var(--gold); }
.sol__ico svg { width: 100%; height: 100%; }
.sol__idx { font-family: var(--font-mono); font-size: 12px; color: var(--ivory-700); letter-spacing: .14em; }
.sol h3 { font-size: 25px; margin: 26px 0 10px; }
.sol p { font-size: 14.5px; color: var(--ivory-500); line-height: 1.55; flex: 1; }
.sol__metric { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--glass-border); }
.sol__metric b { font-family: var(--font-display); font-size: 30px; color: var(--gold); display: block; line-height: 1; }
.sol__metric span { font-size: 12.5px; color: var(--ivory-500); }
@media (max-width: 1040px){ .solutions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .solutions { grid-template-columns: 1fr; } }

/* ============================================================
   CONVERSION BAND
   ============================================================ */
.band { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--glass-border); background: linear-gradient(120deg, var(--char-700), var(--char-600)); box-shadow: var(--shadow-md); }
.band__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 72px); }
.band__orb { position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(80px); background: radial-gradient(circle, var(--gold-glow), transparent 70%); top: -180px; left: -80px; pointer-events: none; }
.band h2 { font-size: clamp(30px, 4vw, 52px); max-width: 20ch; }
.band p { color: var(--ivory-300); margin-top: 14px; max-width: 46ch; }
.band__actions { display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 820px){ .band__inner { grid-template-columns: 1fr; } .band__actions { flex-direction: row; flex-wrap: wrap; } }

/* ============================================================
   INSIGHTS / BLOG
   ============================================================ */
.insights { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
.post {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--char-700); border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .6s var(--ease), border-color .5s, box-shadow .6s var(--ease);
}
.post:hover { transform: translateY(-6px); border-color: var(--glass-hi); box-shadow: var(--shadow-md); }
.post__media { position: relative; min-height: 180px; flex: none; }
.post--lead .post__media { min-height: 280px; }
.post__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.post__meta { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.post__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ivory-700); }
.post__meta .t { color: var(--ivory-500); }
.post h3 { font-size: 22px; margin: 14px 0 0; line-height: 1.12; }
.post--lead h3 { font-size: clamp(26px, 2.6vw, 34px); }
.post p { font-size: 14.5px; color: var(--ivory-500); margin-top: 12px; flex: 1; }
.post__more { margin-top: 18px; }
@media (max-width: 920px){ .insights { grid-template-columns: 1fr 1fr; } .post--lead { grid-column: span 2; } }
@media (max-width: 600px){ .insights { grid-template-columns: 1fr; } .post--lead { grid-column: auto; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--char-700); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 36px 32px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform .6s var(--ease), border-color .5s, box-shadow .6s var(--ease);
}
.pcard:hover { transform: translateY(-8px); border-color: var(--glass-hi); box-shadow: var(--shadow-md); }
.pcard--feat {
  border-color: var(--gold-deep);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--gold-deep) inset;
}
.pcard--feat::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none;
  background: radial-gradient(420px 220px at 50% 0%, var(--gold-glow), transparent 70%);
}
@media (min-width: 981px){ .pcard--feat { transform: scale(1.035); } .pcard--feat:hover { transform: scale(1.035) translateY(-8px); } }

.pcard__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  padding: 7px 16px; border-radius: 100px; white-space: nowrap; z-index: 2;
  box-shadow: 0 10px 24px -10px var(--gold);
}
.pcard__head { position: relative; z-index: 1; }
.pcard__name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.pcard__price { display: flex; align-items: flex-start; gap: 2px; margin: 18px 0 4px; }
.pcard__price .cur { font-family: var(--font-display); font-size: 28px; color: var(--ivory-50); margin-top: 8px; }
.pcard__price .amt { font-family: var(--font-display); font-size: clamp(48px, 6vw, 64px); line-height: 1; color: var(--ivory-50); letter-spacing: -0.02em; }
.pcard__price .cents { font-family: var(--font-display); font-size: 24px; color: var(--ivory-300); margin-top: 8px; }
.pcard__once { font-size: 13px; color: var(--ivory-500); }
.pcard__desc { font-size: 14.5px; color: var(--ivory-500); line-height: 1.55; margin: 20px 0 4px; position: relative; z-index: 1; }

.pcard__cta { margin-top: 26px; position: relative; z-index: 1; }
.pcard__cta .btn { width: 100%; }

.pcard__incl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ivory-700); margin: 30px 0 16px; position: relative; z-index: 1; }
.pcard__feats { list-style: none; display: grid; gap: 13px; position: relative; z-index: 1; }
.pcard__feats li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 14.5px; color: var(--ivory-300); line-height: 1.4; }
.pcard__feats .ck {
  width: 20px; height: 20px; border-radius: 50%; margin-top: 1px;
  background: var(--gold-glow); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.pcard__feats .ck svg { width: 12px; height: 12px; }
@media (max-width: 980px){ .pricing { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* trust badges under pricing */
.guarantees { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 44px; }
.gbadge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 100px; border: 1px solid var(--glass-border);
  background: var(--char-700); box-shadow: var(--shadow-sm);
  font-size: 14px; color: var(--ivory-100); font-weight: 500;
}
.gbadge .gi { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px var(--gutter); flex-wrap: wrap;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-bottom: 1px solid var(--glass-border);
}
.legal-main { padding: clamp(44px, 6vw, 80px) 0 0; position: relative; z-index: 1; }
.legal-doc { max-width: 880px; }
.legal-back { display: flex; width: fit-content; align-items: center; gap: 8px; font-size: 14px; color: var(--ivory-500); margin-bottom: 24px; transition: color .3s; }
.legal-back:hover { color: var(--gold); }
.legal-title { font-size: clamp(38px, 6vw, 66px); margin: 14px 0 12px; line-height: 1.02; }
.legal-updated { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ivory-500); margin-bottom: 8px; }
.legal-intro { font-size: 18px; color: var(--ivory-300); line-height: 1.6; margin: 26px 0 8px; max-width: 70ch; }
.legal-body { font-size: 16px; color: var(--ivory-300); line-height: 1.72; margin-top: 14px; }
.legal-body h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 48px 0 14px; color: var(--ivory-50); letter-spacing: -0.01em; }
.legal-body h3 { font-size: 18px; margin: 26px 0 8px; color: var(--ivory-100); }
.legal-body p { margin-bottom: 16px; max-width: 74ch; }
.legal-body ul { margin: 0 0 20px; padding: 0; list-style: none; display: grid; gap: 11px; max-width: 74ch; }
.legal-body ul li { display: grid; grid-template-columns: 16px 1fr; gap: 12px; align-items: start; }
.legal-body ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 10px; }
.legal-body a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: var(--ivory-100); font-weight: 600; }
.legal-note { margin: 48px 0 0; padding: 24px 26px; border: 1px solid var(--glass-border); border-radius: var(--radius); background: var(--char-600); box-shadow: var(--shadow-sm); font-size: 14.5px; color: var(--ivory-500); }
.legal-note strong { color: var(--ivory-100); }
.legal-main + .footer { margin-top: clamp(64px, 9vw, 120px); }

/* ============================================================
   Big outline wordmark accent
   ============================================================ */
.bigmark { font-family: var(--font-display); font-size: clamp(80px, 20vw, 280px); line-height: .8; color: transparent; -webkit-text-stroke: 1px var(--char-500); text-stroke: 1px var(--char-500); text-align: center; letter-spacing: -0.02em; user-select: none; pointer-events: none; }

/* ============================================================
   Responsive nav
   ============================================================ */
@media (max-width: 940px){
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; }
}

/* ============================================================
   HONEST CONTENT BLOCKS
   ============================================================ */

/* Hero trust badges */
.hero__trust { flex-wrap: wrap; gap: 18px 22px; }
.htrust { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ivory-500); }
.htrust svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

/* Hero sample-report panel */
.rpt__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--glass-border); }
.rpt__kick { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.rpt__name { font-family: var(--font-display); font-size: 21px; color: var(--ivory-50); }
.rpt__badge { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory-500); border: 1px dashed var(--glass-hi); border-radius: 100px; padding: 5px 11px; flex: none; }
.rpt__rows { display: grid; gap: 16px; padding: 22px 0; }
.rpt__row { display: grid; grid-template-columns: 132px 1fr 40px; gap: 14px; align-items: center; }
.rpt__row > span:first-child { font-size: 13.5px; color: var(--ivory-300); }
.rpt__bar { height: 7px; border-radius: 100px; background: var(--char-600); overflow: hidden; }
.rpt__bar i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--gold-soft), var(--gold)); }
.rpt__pct { font-family: var(--font-mono); font-size: 12px; color: var(--ivory-500); text-align: right; }
.rpt__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--glass-border); }
.rpt__foot > span:first-child { font-size: 13.5px; color: var(--ivory-300); }
.rpt__cta { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); }

/* Industry solutions — honest focus label */
.sol__metric .sol__mlabel { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.sol__metric .sol__mtext { font-size: 14px; color: var(--ivory-300); line-height: 1.5; }

/* Insight featured cover — custom illustration */
.post__art { position: relative; width: 100%; min-height: 180px; overflow: hidden; background: linear-gradient(150deg, var(--gold-deep), var(--gold)); }
.post--lead .post__art { min-height: 280px; }
.post__art svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.post__art__chips { position: absolute; left: 24px; bottom: 22px; display: flex; gap: 10px; z-index: 2; }
.post__chip { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; display: inline-flex; align-items: center; gap: 8px; }
.post__chip--off { color: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.28); text-decoration: line-through; text-decoration-thickness: 1px; }
.post__chip--on { color: var(--gold-deep); background: #fff; font-weight: 700; box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4); }
.post__chip--on .d { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Principles / "what to expect" cards */
.promise { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px){ .promise { grid-template-columns: 1fr; } }
.prom { padding: 30px 30px 28px; border-radius: var(--radius); background: var(--char-700); border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), border-color .4s, box-shadow .5s; }
.prom:hover { transform: translateY(-4px); border-color: var(--glass-hi); box-shadow: var(--shadow-md); }
.prom__ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: var(--gold); background: var(--gold-glow); margin-bottom: 20px; }
.prom__ico svg { width: 23px; height: 23px; }
.prom h3 { font-size: 21px; margin-bottom: 10px; }
.prom p { font-size: 15px; color: var(--ivory-500); line-height: 1.55; }
