﻿*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --slate-950: #0c0e14;
  --slate-900: #111318;
  --slate-800: #1a1d26;
  --slate-700: #252835;
  --slate-600: #373b4f;
  --slate-400: #8891a8;
  --slate-300: #adb5c6;
  --white: #f4f5f7;
  --blue: #3b82f6;
  --blue-light: #93c5fd;
  --blue-dim: rgba(59,130,246,0.12);
  --green: #22c55e;
  --green-dim: rgba(34,197,94,0.12);
  --amber-dim: rgba(245,158,11,0.12);
  --rule: rgba(255,255,255,0.07);
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--slate-950);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/*  HERO  */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 24px 48px;
  position: relative;
  overflow: hidden;
  background: var(--slate-950);
}

/* dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

/* blue glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% -10%, rgba(59,130,246,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 30% 20% at 50% 50%, rgba(59,130,246,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }

.hero-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-label::before,
.hero-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--slate-600);
}

/* live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  font-size: 12px;
  font-weight: 600;
  color: #86efac;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero h1 {
  font-size: clamp(38px, 6.5vw, 74px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 760px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--slate-300);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.hero-accent {
  font-weight: 600;
  color: var(--white);
}

.hero-tagline {
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 22px;
  line-height: 1.5;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.pill {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--slate-300);
}

/*  RULE  */
.rule {
  border: none;
  border-top: 1px solid var(--rule);
  max-width: 1100px;
  margin: 0 auto;
}

/*  EYEBROW  */
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}

/*  PROBLEM  */
.problem {
  padding: 48px 24px 40px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.problem h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.problem-sub {
  font-size: 16px;
  color: var(--slate-300);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* problem fragments strip */
.problem-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.problem-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-300);
}
.problem-chip-icon {
  font-size: 14px;
  opacity: 0.7;
}
.problem-result {
  margin-top: 24px;
  font-size: 15px;
  color: var(--slate-400);
  font-style: italic;
  line-height: 1.65;
}
.problem-accent {
  color: #fde68a;
  font-style: normal;
}

/*  HERO TRUST BUTTON  */
.hero-trust-btn {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 18px 22px 16px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.55);
  color: #ede9fe;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(196, 181, 253, 0.28),
    0 0 0 1px rgba(139, 92, 246, 0.14),
    0 4px 24px rgba(139, 92, 246, 0.22);
  transition: background 0.18s, border-color 0.18s, color 0.18s,
              box-shadow 0.18s, transform 0.18s;
}
.hero-trust-btn:hover {
  background: rgba(139, 92, 246, 0.28);
  border-color: rgba(139, 92, 246, 0.7);
  color: #f5f3ff;
  box-shadow:
    inset 0 1px 0 rgba(196, 181, 253, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.24),
    0 6px 30px rgba(139, 92, 246, 0.3);
  transform: translateY(-1px);
}
.hero-trust-btn svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
@media (hover: none) {
  .hero-trust-btn:hover {
    transform: none;
    box-shadow:
      inset 0 1px 0 rgba(196, 181, 253, 0.28),
      0 0 0 1px rgba(139, 92, 246, 0.14),
      0 4px 24px rgba(139, 92, 246, 0.22);
  }
}

/*  TRUST MODAL  */
.trust-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.trust-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.trust-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 20, 0.82);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.trust-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--slate-800);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 52px 48px 44px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.05);
  transform: translateY(14px);
  transition: transform 0.22s ease;
}
.trust-modal.open .trust-modal-panel {
  transform: none;
}
.trust-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--slate-300);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.trust-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.trust-modal-close svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.trust-modal-panel .eyebrow {
  color: #a78bfa;
  margin-bottom: 12px;
}
.trust-modal-panel h2 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.trust-modal-body {
  font-size: 15px;
  color: var(--slate-300);
  line-height: 1.78;
  margin-bottom: 32px;
}
.trust-modal-docs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-doc-link {
  display: flex;
  align-items: center;
  padding: 13px 16px 13px 14px;
  border-radius: 10px;
  background: var(--slate-900);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid transparent;
  color: var(--slate-300);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, border-left-color 0.15s, color 0.15s, background 0.15s;
}
.trust-doc-link:hover {
  color: var(--white);
}
.trust-doc-link::after {
  content: '↗';
  margin-left: auto;
  font-size: 12px;
  opacity: 0.5;
}
/* Privacy Notice — purple */
.trust-doc-link--purple { border-left-color: rgba(139, 92, 246, 0.65); }
.trust-doc-link--purple:hover { background: rgba(139, 92, 246, 0.09); border-left-color: rgba(139, 92, 246, 1); color: #ddd6fe; }
.trust-doc-link--purple::after { color: #a78bfa; opacity: 1; }
/* Data Protection Summary — blue */
.trust-doc-link--blue { border-left-color: rgba(59, 130, 246, 0.65); }
.trust-doc-link--blue:hover { background: rgba(59, 130, 246, 0.09); border-left-color: rgba(59, 130, 246, 1); color: #bfdbfe; }
.trust-doc-link--blue::after { color: #60a5fa; opacity: 1; }
/* ICO registered — green */
.trust-doc-link--green { border-left-color: rgba(16, 185, 129, 0.65); }
.trust-doc-link--green:hover { background: rgba(16, 185, 129, 0.09); border-left-color: rgba(16, 185, 129, 1); color: #a7f3d0; }
.trust-doc-link--green::after { color: #34d399; opacity: 1; }

/*  FLOW INTRO  */
.flow-intro {
  padding: 48px 24px 8px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  scroll-margin-top: 80px;
}
.flow-intro h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
}
.flow-intro-sub {
  font-size: 16px;
  color: var(--slate-300);
  margin-top: 10px;
  line-height: 1.65;
}

/*  STEP  */
.step {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.step.flip { direction: rtl; }
.step.flip > * { direction: ltr; }
.step.wide { grid-template-columns: 1fr 1.55fr; }
.step.wide.flip { grid-template-columns: 1.55fr 1fr; }

/* big decorative step number */
.step-num-wrap { position: relative; margin-bottom: 14px; }
.step-num-bg {
  position: absolute;
  top: -18px;
  left: -4px;
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
  position: relative;
}
.step h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.step p {
  font-size: 17px;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 18px;
}

/*  TAGS  */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--slate-300);
}
.tag.g { background: var(--green-dim); border-color: rgba(34,197,94,0.2); color: #86efac; }
.tag.b { background: var(--blue-dim); border-color: rgba(59,130,246,0.2); color: var(--blue-light); }
.tag.a { background: var(--amber-dim); border-color: rgba(245,158,11,0.2); color: #fde68a; }

/*  HERO DEVICE COMPOSITION  */
.hero-devices {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: 36px;
  max-width: 840px;
  width: 100%;
}
.hero-desktop {
  flex: 1 1 auto;
  min-width: 0;
}
.hero-desktop .lid {
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 40px rgba(59,130,246,0.08);
}
.hero-mobile {
  flex: 0 0 175px;
  width: 175px;
}
.hero-mobile .phone {
  max-width: 100%;
  width: 100%;
  margin: 0;
  box-shadow:
    0 28px 56px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

/*  PHONE MOCKUP  */
.phone {
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: var(--slate-800);
  border-radius: 40px;
  padding: 8px;
  border: 1.5px solid rgba(255,255,255,0.09);
  box-shadow:
    0 32px 64px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.screen {
  border-radius: 33px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 9 / 19.5;
}
.screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
}


/* Step 2 phone — slightly smaller to reduce empty white space dominance */
.phone.phone-compact {
  max-width: 220px;
}

/*  ADMIN / DESKTOP MOCKUP  */
.laptop { max-width: 640px; margin: 0 auto; }
.lid {
  background: var(--slate-800);
  border-radius: 12px;
  padding: 8px;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), 0 0 30px rgba(59,130,246,0.06);
}
.bar {
  background: var(--slate-900);
  border-radius: 5px;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  margin-bottom: 5px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.url-bar {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  height: 14px;
  margin: 0 8px;
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  padding: 0 8px;
  letter-spacing: 0.03em;
}
.screen-wrap { border-radius: 8px; overflow: hidden; }
.screen-wrap img { width: 100%; height: auto; display: block; }



/*  STATS STRIP  */
.stats-strip {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: transparent;
}
.stat-cell {
  background: var(--slate-950);
  padding: 28px 24px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--rule);
}
.stat-num {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--blue); }
.stat-label {
  font-size: 14px;
  color: var(--slate-300);
  line-height: 1.55;
}

/*  WHO BENEFITS  */
.who {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}
.who-head { margin-bottom: 24px; }
.who-head h2 { font-size: clamp(20px, 2.8vw, 28px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 6px; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-radius: 12px;
}
.who-item {
  background: var(--slate-900);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--rule);
}
/* coloured top border per card */
.who-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.who-item:nth-child(1)::before { background: var(--blue); }
.who-item:nth-child(2)::before { background: #8b5cf6; }
.who-item:nth-child(3)::before { background: #f59e0b; }
.who-item:nth-child(4)::before { background: var(--green); }

.who-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.who-item span { font-size: 15px; color: var(--slate-300); line-height: 1.65; }

/*  CLOSE  */
.close {
  text-align: center;
  padding: 80px 24px 96px;
  position: relative;
  overflow: hidden;
  background: var(--slate-900);
  border-top: 1px solid var(--rule);
}
.close::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 120%, rgba(59,130,246,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 50% 100%, rgba(59,130,246,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.close-inner { position: relative; z-index: 1; }
.close h2 { font-size: clamp(22px, 3.8vw, 42px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 14px; }
.close p { font-size: 16px; color: var(--slate-300); max-width: 440px; margin: 0 auto 28px; line-height: 1.65; }
.close-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.18);
  font-size: 12px;
  font-weight: 600;
  color: #86efac;
  margin-bottom: 6px;
}
.close-proof-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
.close-proof-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate-400);
  margin-top: 8px;
  margin-bottom: 20px;
}

/*  FADE IN  */
.fade { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade.in { opacity: 1; transform: none; }

/*  RESPONSIVE  */
@media (max-width: 760px) {
  .step, .step.wide, .step.wide.flip { grid-template-columns: 1fr; gap: 28px; }
  .step.flip { direction: ltr; }
  .step { padding: 40px 20px 44px; }
  .phone { max-width: 220px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .problem { padding: 56px 20px 40px; }
  .who { padding: 48px 20px; }
  .hero { padding-top: 96px; }
  .hero-trust-btn {
    top: 14px;
    left: 14px;
    padding: 10px 14px 9px;
    gap: 5px;
    font-size: 10px;
    border-radius: 11px;
  }
  .hero-trust-btn svg { width: 18px; height: 18px; }
  .trust-modal-panel { padding: 44px 28px 36px; }
  .flow-intro { padding-top: 56px !important; }
  .close { padding: 64px 20px 80px; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 20px 72px; }
  .hero-devices {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
  }
  .hero-desktop {
    width: 100%;
    max-width: 360px;
  }
  .hero-mobile {
    flex: none;
    width: 180px;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .who-grid { grid-template-columns: 1fr; }
  .hero-desktop { max-width: 320px; }
  .hero-mobile { width: 160px; }
}

/*  CTA — Join the pilot  */
.cta-pilot {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--blue);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow:
    0 2px 12px rgba(59,130,246,0.35),
    0 0 0 1px rgba(59,130,246,0.5);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.cta-pilot:hover {
  background: #2563eb;
  box-shadow:
    0 4px 20px rgba(59,130,246,0.45),
    0 0 0 1px rgba(59,130,246,0.6);
  transform: translateY(-1px);
}
@media (hover: none) {
  .cta-pilot:hover { transform: none; }
}
@media (max-width: 760px) {
  .cta-pilot {
    bottom: 18px;
    right: 18px;
    padding: 10px 18px;
    font-size: 12px;
  }
}

/*  HERO SUPPORTING LINE  */
.hero-supporting {
  font-size: 14px;
  color: var(--slate-400);
  max-width: 540px;
  line-height: 1.65;
  margin-top: 0;
}

/*  HERO CTAs  */
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 100px;
  background: var(--blue);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 16px rgba(59,130,246,0.3), 0 0 24px rgba(59,130,246,0.15);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.hero-cta-primary:hover {
  background: #2563eb;
  box-shadow: 0 4px 24px rgba(59,130,246,0.4), 0 0 32px rgba(59,130,246,0.2);
  transform: translateY(-1px);
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 100px;
  background: transparent;
  color: var(--slate-300);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.18s, color 0.18s, transform 0.18s;
}
.hero-cta-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  transform: translateY(-1px);
}
@media (hover: none) {
  .hero-cta-primary:hover,
  .hero-cta-secondary:hover { transform: none; }
}

/*  PROBLEM BODY  */
.problem-body {
  font-size: 17px;
  color: var(--slate-300);
  line-height: 1.75;
  margin-bottom: 28px;
}

/*  PORTALS  */
.portals {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}
.portals h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.portals-body {
  font-size: 17px;
  color: var(--slate-300);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 36px;
}
.portals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.portal-card {
  background: var(--slate-900);
  padding: 28px 24px;
  text-align: left;
  border-radius: 12px;
  border: 1px solid var(--rule);
}
.portal-card strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.portal-card p {
  font-size: 15px;
  color: var(--slate-300);
  line-height: 1.7;
}
.portals-status {
  font-size: 14px;
  color: var(--slate-400);
  font-style: italic;
}

/*  BRAND PROMISE  */
.brand-promise {
  background: #f7f8fa;
  padding: 44px 24px 48px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.brand-promise-inner {
  max-width: 600px;
  margin: 0 auto;
}
.brand-promise h2 {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #1a1d26;
  margin-bottom: 0;
}

/*  FINAL CTA  */
.final-cta {
  background: var(--slate-950);
  border-top: 1px solid var(--rule);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(59,130,246,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(59,130,246,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(22px, 3.8vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--white);
}
.final-cta p {
  font-size: 17px;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 28px;
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--blue);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 16px rgba(59,130,246,0.3), 0 0 28px rgba(59,130,246,0.18);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.final-cta-btn:hover {
  background: #2563eb;
  box-shadow: 0 4px 24px rgba(59,130,246,0.45), 0 0 36px rgba(59,130,246,0.25);
  transform: translateY(-1px);
}
@media (hover: none) {
  .final-cta-btn:hover { transform: none; }
}
.final-cta-terms {
  font-size: 13px;
  color: var(--slate-400);
  margin-top: 20px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

/*  FOOTER  */
.site-footer {
  background: #f7f8fa;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 40px 24px 48px;
  text-align: center;
}
.footer-inner {
  max-width: 560px;
  margin: 0 auto;
}
.footer-brand {
  font-size: 16px;
  font-weight: 700;
  color: #1a1d26;
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}
.footer-legal {
  font-size: 13px;
  color: #9ca3af;
}

/*  RESPONSIVE — new sections  */
@media (max-width: 760px) {
  .portals { padding: 56px 20px; }
  .portals-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 64px 20px 56px; }
  .site-footer { padding: 32px 20px 36px; }
}

/* ======================================================= */
/*  LIGHT CONTENT — off-white middle sections              */
/* ======================================================= */
.light-content {
  background: #f7f8fa;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* Dividers on light bg */
.light-content .rule {
  border-top-color: rgba(0,0,0,0.07);
}

/* Eyebrow stays blue — no override needed */

/* Problem */
.light-content .problem h2 { color: #1a1d26; }
.light-content .problem-body { color: #4b5563; }
.light-content .problem-chip {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: #374151;
}

/* Stats strip */
.light-content .stats-strip {
  background: transparent;
}
.light-content .stat-cell {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.light-content .stat-num { color: #1a1d26; }
.light-content .stat-label { color: #4b5563; }

/* Flow intro */
.light-content .flow-intro h2 { color: #1a1d26; }
.light-content .flow-intro-sub { color: #4b5563; }

/* Steps — tighter spacing on light bg */
.light-content .step { padding: 32px 24px 36px; }
.light-content .step h3 { color: #1a1d26; }
.light-content .step p { color: #4b5563; }
.light-content .step-num-bg { color: rgba(0,0,0,0.04); }

/* Tags — light variants */
.light-content .tag {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: #4b5563;
}
.light-content .tag.g {
  background: rgba(34,197,94,0.07);
  border-color: rgba(34,197,94,0.18);
  color: #15803d;
}
.light-content .tag.b {
  background: rgba(59,130,246,0.07);
  border-color: rgba(59,130,246,0.18);
  color: #2563eb;
}
.light-content .tag.a {
  background: rgba(245,158,11,0.07);
  border-color: rgba(245,158,11,0.18);
  color: #b45309;
}

/* Device mockups — dark bezels, subtle glow on light bg */
.light-content .phone {
  box-shadow:
    0 16px 48px rgba(0,0,0,0.13),
    0 0 0 1px rgba(0,0,0,0.06),
    0 0 32px rgba(59,130,246,0.06);
}
.light-content .lid {
  box-shadow:
    0 12px 36px rgba(0,0,0,0.11),
    0 0 0 1px rgba(0,0,0,0.05),
    0 0 28px rgba(59,130,246,0.05);
}

/* Portals */
.light-content .portals h2 { color: #1a1d26; }
.light-content .portals-body { color: #4b5563; }
.light-content .portals-grid {
  background: transparent;
}
.light-content .portal-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.light-content .portal-card strong { color: #1a1d26; }
.light-content .portal-card p { color: #4b5563; }
.light-content .portals-status { color: #6b7280; }

/* Why it's different — compact, light */
.why-different {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 36px;
  text-align: center;
}
.why-different h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #1a1d26;
  margin-bottom: 12px;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}
.why-different p {
  font-size: 16px;
  color: #4b5563;
  max-width: 500px;
  margin: 0 auto 18px;
  line-height: 1.7;
}
.why-different-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin-bottom: 12px;
}

/* Pills — light variant */
.light-content .pill {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: #4b5563;
}

/* Who benefits */
.light-content .who-head h2 { color: #1a1d26; }
.light-content .who-grid {
  background: transparent;
}
.light-content .who-item {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.light-content .who-item strong { color: #1a1d26; }
.light-content .who-item span { color: #4b5563; }

/* Responsive — light content */
@media (max-width: 760px) {
  .light-content .step { padding: 24px 20px 28px; }
  .why-different { padding: 36px 20px 32px; }
  .brand-promise { padding: 36px 20px 40px; }
}