/* ============================================================
   Boardside — Marketing Website
   ============================================================ */

:root {
  --navy:     #1a1f2e;
  --navy-80:  #2d3448;
  --navy-60:  #3d4560;
  --gold:     #C9A84C;
  --gold-10:  #f9f3e4;
  --gold-20:  #f2e5c0;
  --white:    #ffffff;
  --gray-50:  #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #868e96;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.13);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.16);

  --container: 1120px;
  --nav-h:     64px;
  --font:      'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); -webkit-font-smoothing: antialiased; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hide-mobile { display: inline; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--delay   { transition-delay: .1s; }
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .2s;
}
.nav.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .15s;
  position: relative;
}
.nav-link:hover { color: var(--gray-900); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-link--login {
  color: var(--gray-500);
  border-left: 1px solid var(--gray-200);
  padding-left: 16px;
  margin-left: 4px;
}
.nav-link--login:hover { color: var(--navy); }
.btn-nav {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, box-shadow .15s;
}
.btn-nav:hover {
  background: var(--navy-80);
  box-shadow: 0 3px 10px rgba(26,31,46,.2);
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  width: 34px;
  height: 34px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .25s, opacity .2s, width .2s;
}
/* Hamburger → X */
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 20px;
  box-shadow: var(--shadow);
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--gray-100);
}
.nav-drawer .btn-nav {
  margin-top: 8px;
  text-align: center;
  display: block;
  padding: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: background .15s, box-shadow .15s, transform .1s;
}
.btn-primary:hover {
  background: var(--navy-80);
  box-shadow: 0 4px 14px rgba(26,31,46,.28);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300);
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 500;
  transition: border-color .15s, color .15s, transform .1s;
}
.btn-ghost:hover {
  border-color: var(--gray-500);
  color: var(--gray-900);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
/* ── Hero gradient animation ── */
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes hero-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes mockup-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 24px 64px rgba(0,0,0,.16), 0 0 0 0 rgba(201,168,76,0); }
  50%       { box-shadow: 0 32px 80px rgba(0,0,0,.18), 0 0 60px 4px rgba(201,168,76,.12); }
}
@keyframes signal-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes signal-out {
  from { opacity: 1; transform: translateY(0); max-height: 60px; margin-bottom: 0; }
  to   { opacity: 0; transform: translateY(-8px); max-height: 0; margin-bottom: -1px; }
}
@keyframes count-up-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes step-num-pulse {
  0%   { transform: scale(1);    text-shadow: none; }
  40%  { transform: scale(1.18); text-shadow: 0 0 16px rgba(201,168,76,.5); }
  100% { transform: scale(1);    text-shadow: none; }
}
@keyframes connector-draw {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes check-tick-in {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f3 40%, #f5f0e8 70%, #ffffff 100%);
  background-size: 300% 300%;
  animation: hero-gradient-shift 12s ease infinite;
}
/* Dot grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(26,31,46,.09) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 65% 50%, rgba(0,0,0,.55) 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 90% at 65% 50%, rgba(0,0,0,.55) 0%, transparent 75%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy {}
.hero-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  color: #7a5e1a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--navy);
  margin-bottom: 20px;
}
.text-gold-gradient {
  background: linear-gradient(115deg, #C9A84C 0%, #e8c96a 40%, #b8922e 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-footnote {
  font-size: 13px;
  color: var(--gray-400);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ── Product mockup ── */
.hero-mockup {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  background: var(--white);
  animation: mockup-float 6s ease-in-out infinite, glow-pulse 6s ease-in-out infinite;
  will-change: transform;
}
.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.mockup-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}
.mockup-dots span:nth-child(1) { background: #fc6b5c; }
.mockup-dots span:nth-child(2) { background: #f9c120; }
.mockup-dots span:nth-child(3) { background: #34c749; }
.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--gray-500);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 3px 10px;
}
.mockup-body {
  display: flex;
}
.mockup-sidebar {
  width: 118px;
  background: var(--navy);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 5px;
  margin: 0 6px;
  cursor: default;
}
.mockup-nav-item.active {
  background: rgba(201,168,76,.15);
}
.mockup-nav-icon {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
}
.mockup-nav-item.active .mockup-nav-icon {
  color: var(--gold);
}
.mockup-nav-label {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  letter-spacing: .01em;
}
.mockup-nav-item.active .mockup-nav-label {
  color: rgba(255,255,255,.9);
  font-weight: 600;
}
.mockup-content {
  flex: 1;
  padding: 18px 20px;
  background: var(--white);
}
.mockup-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mockup-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.mockup-date {
  font-size: 11px;
  color: var(--gray-400);
}
.mockup-signal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: opacity .4s ease, transform .4s ease, max-height .4s ease;
  overflow: hidden;
}
.mockup-signal:last-of-type { border-bottom: none; }
.mockup-signal.entering {
  animation: signal-in .5s ease forwards;
}
.mockup-signal.exiting {
  animation: signal-out .4s ease forwards;
}
.sig-badge {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  margin-top: 1px;
}
.mockup-signal.threat .sig-badge   { background: #fee2e2; color: #dc2626; }
.mockup-signal.regulatory .sig-badge { background: #fef3c7; color: #b45309; }
.mockup-signal.opportunity .sig-badge { background: #d1fae5; color: #059669; }
.mockup-signal.neutral .sig-badge  { background: var(--gray-100); color: var(--gray-600); }
.sig-body { min-width: 0; flex: 1; }
.sig-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.45;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sig-meta {
  font-size: 10px;
  color: var(--gray-400);
}
.mockup-footer-bar {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: center;
}
.mockup-ai-pill {
  font-size: 10px;
  color: var(--gray-400);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 99px;
  padding: 3px 10px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  padding: 16px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-label-wrap {
  flex-shrink: 0;
  padding: 0 24px 0 24px;
  border-right: 1px solid var(--gray-200);
  margin-right: 0;
  background: var(--gray-50);
  position: relative;
  z-index: 2;
}
/* Fade edge on right of label */
.trust-label-wrap::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 0;
  bottom: 0;
  width: 24px;
  background: linear-gradient(to right, var(--gray-50), transparent);
  z-index: 3;
}
.trust-ticker-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}
.trust-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
}
.trust-ticker:hover { animation-play-state: paused; }
.trust-ticker span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 4px 20px;
  white-space: nowrap;
}
.trust-dot {
  color: var(--gray-300) !important;
  padding: 0 !important;
  font-size: 16px !important;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  padding: 88px 0;
}
.problem h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 44px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
/* Left accent bar — draws in on reveal */
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201,168,76,.35) 100%);
  transition: height .5s cubic-bezier(.22,1,.36,1);
}
.problem-card.visible::before {
  height: 100%;
}
.problem-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.problem-icon {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--gold);
}
.problem-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.problem-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}
.problem-statement {
  padding: 28px 36px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  text-align: center;
}
.problem-statement p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}
.problem-statement strong {
  color: var(--white);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  padding: 88px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.steps h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 52px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: start;
  gap: 0;
}
.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.step-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 14px;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}
/* Step number pulse when step scrolls in */
.step.visible .step-number {
  animation: step-num-pulse .55s cubic-bezier(.22,1,.36,1) forwards;
}

/* Connector draw — override default reveal translateY with translateX */
.step-connector.reveal {
  transform: translateX(-14px);
}
.step-connector.reveal.visible {
  transform: none;
}
.reveal--connector-1.visible { transition-delay: .18s; }
.reveal--connector-2.visible { transition-delay: .32s; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  color: var(--gray-300);
  font-size: 18px;
}
.step-connector::before {
  content: '→';
  color: var(--gray-300);
  font-size: 20px;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution {
  padding: 88px 0;
}
.solution h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 16px;
  max-width: 640px;
}
.solution-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 44px;
}
.solution-compare {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-col { flex: 1; padding: 36px 40px; }
.compare-them { background: var(--gray-50); }
.compare-us   { background: var(--navy); }
.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  flex-shrink: 0;
  background: var(--gray-100);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}
.compare-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.compare-them .compare-label { color: var(--gray-400); }
.compare-us .compare-label   { color: rgba(255,255,255,.4); }
.compare-them ul li {
  font-size: 15px;
  color: var(--gray-600);
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-200);
}
.compare-them ul li:last-child { border-bottom: none; }
.compare-us ul li {
  font-size: 15px;
  color: rgba(255,255,255,.88);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transform: translateX(-10px);
}
.compare-us ul li:last-child { border-bottom: none; }

/* Tick in when comparison block scrolls into view */
.solution-compare.visible .compare-us ul li {
  animation: check-tick-in .38s cubic-bezier(.22,1,.36,1) forwards;
}
.solution-compare.visible .compare-us ul li:nth-child(1) { animation-delay: .08s; }
.solution-compare.visible .compare-us ul li:nth-child(2) { animation-delay: .19s; }
.solution-compare.visible .compare-us ul li:nth-child(3) { animation-delay: .30s; }
.solution-compare.visible .compare-us ul li:nth-child(4) { animation-delay: .41s; }
.solution-compare.visible .compare-us ul li:nth-child(5) { animation-delay: .52s; }
.solution-compare.visible .compare-us ul li:nth-child(6) { animation-delay: .63s; }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 88px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.features h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 44px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, rgba(201,168,76,.5), rgba(201,168,76,.1)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,.12), 0 2px 8px rgba(0,0,0,.06);
  transform: translateY(-3px);
  border-color: rgba(201,168,76,.25);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card--wide { grid-column: 1 / -1; }
.feature-card--highlight {
  background: var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.feature-card--highlight::before { display: none; }
.feature-card--highlight:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.22), 0 0 40px rgba(201,168,76,.15);
  transform: translateY(-3px);
  border-color: transparent;
}
.feature-icon-wrap {
  margin-bottom: 8px;
}
.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-10);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.feature-tag--gold {
  color: var(--navy);
  background: var(--gold);
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
  line-height: 1.3;
  margin-bottom: 14px;
}
.feature-card--highlight h3 { color: var(--white); }
.feature-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}
.feature-card--highlight p { color: rgba(255,255,255,.68); }
.feature-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.feature-detail-list span {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid var(--gray-200);
}
.feature-bullets {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.feature-bullets li {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.feature-bullets li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.feature-disclaimer {
  font-size: 12px !important;
  color: rgba(255,255,255,.35) !important;
  font-style: italic;
  margin-top: 14px;
}

/* ============================================================
   AI SECTION
   ============================================================ */
.ai-section {
  padding: 88px 0;
  background: var(--navy);
  text-align: center;
}
.ai-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.ai-section h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.ai-section p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 52px;
}
.ai-stats {
  display: flex;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 720px;
  margin-inline: auto;
}
.ai-stat {
  flex: 1;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.ai-stat:last-child { border-right: none; }
.ai-stat-num {
  font-size: 26px;
  font-weight: 700;
  transition: opacity .4s ease, transform .4s ease;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.ai-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* ============================================================
   EARLY ACCESS TRUST
   ============================================================ */
.early-access-trust {
  padding: 88px 0;
  background: var(--navy);
}
.eat-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.eat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.eat-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: eat-dot-pulse 2s ease-in-out infinite;
}
@keyframes eat-dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}
.early-access-trust h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.early-access-trust p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 44px;
}
.eat-sectors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}
.eat-sector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 10px 16px;
  transition: background .2s, border-color .2s;
}
.eat-sector:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.3);
}
.eat-sector-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--gold);
}
.eat-sector-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}
.eat-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.eat-note {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 88px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.pricing h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 44px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--white);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
  animation: pricing-glow-breathe 3.5s ease-in-out infinite;
}
@keyframes pricing-glow-breathe {
  0%, 100% { box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(201,168,76,.10), 0 2px 8px rgba(0,0,0,.06); }
  50%       { box-shadow: 0 0 0 1px var(--gold), 0 8px 48px rgba(201,168,76,.28), 0 2px 8px rgba(0,0,0,.06); }
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-xl);
  animation: none;
}
.pricing-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.pricing-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 22px;
  min-height: 42px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.btn-pricing {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  transition: border-color .15s, background .15s, color .15s;
}
.btn-pricing:hover { border-color: var(--navy); color: var(--navy); }
.btn-pricing--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.btn-pricing--featured:hover {
  background: var(--navy-80);
  border-color: var(--navy-80);
  color: var(--white);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: 96px 0;
  position: relative;
  background: linear-gradient(135deg, #fdf9f1 0%, #f8f2e4 30%, #fef6e4 60%, #f5ede0 85%, #fdf9f1 100%);
  background-size: 300% 300%;
  animation: hero-gradient-shift 10s ease infinite;
  overflow: hidden;
}
/* Subtle radial accent behind the form */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}
.cta h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.cta p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-form { margin-bottom: 14px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.form-field { display: flex; flex-direction: column; }
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.cta-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,31,46,.08);
}
.cta-form input::placeholder { color: var(--gray-400); }
.cta-form select option[value=""] { color: var(--gray-400); }
.form-field--full { grid-column: 1 / -1; }
.cta-form .btn-primary {
  width: 100%;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  font-size: 15px;
}
.cta-offer-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  color: #7a5e1a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-offer-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 28px;
  text-align: left;
}
.cta-offer-left {
  flex-shrink: 0;
  text-align: center;
  min-width: 64px;
}
.cta-offer-num {
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.03em;
}
.cta-offer-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.cta-offer-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.cta-offer-detail p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin: 0;
}
.cta-footnote {
  font-size: 13px;
  color: var(--gray-400);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 12px;
}
.footer-disclaimer {
  font-size: 12px !important;
  color: rgba(255,255,255,.28) !important;
  max-width: 280px;
  line-height: 1.65;
}
.footer-links { display: flex; gap: 52px; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.28); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  border-left: 3px solid var(--gold);
  z-index: 9999;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { text-align: center; padding: 64px 0 80px; }
  .hero-ctas { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-footnote { text-align: center; }
  .hero-glow { background: radial-gradient(ellipse 90% 60% at 50% 30%, rgba(201,168,76,.08) 0%, transparent 70%); }
  .hero::after { -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 70%, rgba(0,0,0,.45) 0%, transparent 75%); mask-image: radial-gradient(ellipse 90% 60% at 50% 70%, rgba(0,0,0,.45) 0%, transparent 75%); }
  .hero-mockup { max-width: 540px; margin-inline: auto; }

  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: unset; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .eat-sectors { gap: 8px; }
  .eat-sector { padding: 8px 12px; }

  .solution-compare { flex-direction: column; }
  .compare-divider {
    width: 100%;
    height: 40px;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
  }
  .ai-stats { flex-wrap: wrap; }
  .ai-stat { flex: 1 1 40%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { gap: 32px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hide-mobile { display: none; }

  .ai-stats { flex-direction: column; }
  .ai-stat { border-bottom: 1px solid rgba(255,255,255,.1); }

  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}
