/* ─────────────────────────────────────────────────────────────
   Editee-inspired dark theme for AML video průvodce landing
   ───────────────────────────────────────────────────────────── */

:root {
  /* Dark surfaces */
  --bg: #0A0E1A;
  --bg-2: #0F1525;
  --surface: #141B30;
  --surface-2: #1A2238;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #FFFFFF;
  --text-soft: #C9D1E0;
  --text-mute: #8A93A8;
  --text-dim: #5F6878;

  /* Brand / accents (lime green, editee-style) */
  --primary: #A8FF53;
  --primary-2: #7DD63C;
  --primary-soft: rgba(168, 255, 83, 0.14);
  --primary-glow: rgba(168, 255, 83, 0.35);

  /* Light section */
  --light-bg: #F4F6FA;
  --light-surface: #FFFFFF;
  --light-text: #0F1525;
  --light-mute: #5A6577;
  --light-border: #E4E8EF;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  /* Layout */
  --container: 1180px;
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ─── Page wrapper ─── */
.page {
  padding-top: var(--nav-h);
}

/* ─── Eyebrow / small label ─── */
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--primary-2); }

/* Highlight inline */
.hl {
  color: var(--primary);
  font-weight: 600;
}

/* ─── Section common ─── */
.section-h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.section-h2-light { color: var(--light-text); }
.section-h2-center { text-align: center; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { display: block; }

/* ═══════════════════════════════════════════════════════════
   TOP NAV (fixed, editee-style)
   ═══════════════════════════════════════════════════════════ */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 50;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topnav-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topnav-logo { display: flex; align-items: center; }
.topnav-logo-img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }

.topnav-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topnav-link {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--r-sm);
  color: var(--text-2, rgba(255, 255, 255, 0.7));
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}
.topnav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.topnav-link.is-active {
  color: var(--primary);
  font-weight: 700;
}
.topnav-link.is-active:hover { background: transparent; color: var(--primary); }

.topnav-right { display: flex; align-items: center; gap: 12px; }
.topnav-badge {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--r-sm);
  letter-spacing: 0.01em;
}
.topnav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #0A0E1A;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.topnav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--primary-glow); filter: brightness(1.05); }
.topnav-cta-icon { font-size: 11px; }

@media (max-width: 720px) {
  .topnav-badge { display: none; }
  .topnav-inner { padding: 0 16px; }
  .topnav-logo-img { height: 22px; }
  .topnav-nav { gap: 4px; }
  .topnav-link { height: 32px; padding: 0 10px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO  (2-column: text left / form right)
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 56px 28px 64px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(168,255,83,0.08), transparent 60%),
    radial-gradient(700px 400px at 10% 30%, rgba(125,214,60,0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy { padding-top: 8px; }
.hero-headline {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}
.hero-sub {
  margin-top: 20px;
  font-size: 16.5px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 560px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-bullets {
  list-style: none;
  margin-top: 26px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-soft);
  font-weight: 500;
}
.bullet-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

/* Hero form card */
.hero-form-wrap {
  position: relative;
}
.hero-form-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-xl) + 1px);
  background: linear-gradient(135deg, rgba(168,255,83,0.45), rgba(125,214,60,0.0) 55%);
  z-index: 0;
  filter: blur(0.5px);
}

.signup-form {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.signup-form-head {
  margin-bottom: 4px;
}
.signup-form-pre {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.signup-form-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-group label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mute);
}
.signup-form input {
  width: 100%;
  height: 46px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: 0 14px;
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.signup-form input::placeholder { color: var(--text-dim); }
.signup-form input:hover { border-color: rgba(168,255,83,0.35); }
.signup-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(168,255,83,0.15);
  background: var(--bg-2);
}
.signup-form input.error {
  border-color: #FF5C7A;
  background: rgba(255, 92, 122, 0.05);
}
.error-msg {
  color: #FF8AA0;
  font-size: 12px;
  display: none;
}
.error-msg.show { display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  letter-spacing: 0.005em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #0A0E1A;
  box-shadow: 0 12px 32px rgba(168, 255, 83, 0.22);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 16px 40px rgba(168, 255, 83, 0.32);
}
.btn-primary:disabled {
  background: var(--surface-2);
  color: var(--text-dim);
  box-shadow: none;
  filter: none;
  cursor: not-allowed;
  transform: none;
}
.btn-primary.is-sending:disabled { cursor: progress; }
.btn-large { height: 58px; font-size: 16px; }
.btn-icon { font-size: 11px; }

/* Form bullets/disclaimer */
.form-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 6px;
}
.form-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 12.5px;
  color: var(--text-mute);
}
.form-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.form-disclaimer {
  font-size: 12.5px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 4px;
}

/* Consent checkboxes */
.form-consent {
  display: grid;
  gap: 10px;
  margin: 4px 0 2px;
}
.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--text-soft);
  cursor: pointer;
}
.consent-item a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-item a:hover { color: var(--primary-2); }
.consent-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1.5px solid var(--border-strong);
  border-radius: 5px;
  background: var(--surface-2);
  cursor: pointer;
  position: relative;
  transition: background 140ms ease, border-color 140ms ease;
}
.consent-item input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}
.consent-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #0A0E1A;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent-item input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (max-width: 960px) {
  .hero { padding: 36px 18px 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-headline { font-size: clamp(28px, 6.5vw, 40px); }
}

/* ═══════════════════════════════════════════════════════════
   PRESENTS STRIP (under hero)
   ═══════════════════════════════════════════════════════════ */
.presents {
  padding: 8px 28px 28px;
}
.presents-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}
.presents-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.presents-list {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.presenter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: background 160ms ease;
}
.presenter:hover { background: rgba(168,255,83,0.06); }
.presenter-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(168,255,83,0.4);
  flex-shrink: 0;
}
.presenter-photo img { width: 100%; height: 100%; object-fit: cover; }
.presenter-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.presenter-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.presenter-sep {
  color: var(--text-dim);
  font-weight: 700;
}
.presenter-company {
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 500;
}
.presents-divider {
  width: 1px;
  height: 28px;
  background: var(--border-strong);
}

@media (max-width: 860px) {
  .presents-inner { gap: 12px; padding: 16px 18px; }
  .presents-divider { display: none; }
  .presents-list { gap: 12px; flex-direction: column; align-items: flex-start; width: 100%; }
  .presents-label { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   VIDEO BAND (full width centered)
   ═══════════════════════════════════════════════════════════ */
.video-band { padding: 12px 28px 64px; }
.video-band-inner {
  max-width: 980px;
  margin: 0 auto;
}
.video-locked {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  transition: transform 200ms ease;
}
.video-locked:hover { transform: translateY(-2px); }
.video-locked-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(168,255,83,0.18), transparent 60%),
    linear-gradient(135deg, #1A2238 0%, #0F1525 100%);
}
.video-locked-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.video-locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.video-locked-play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #0A0E1A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px var(--primary-glow);
  padding-left: 6px;
  transition: transform 200ms ease;
}
.video-locked:hover .video-locked-play { transform: scale(1.06); }
.video-locked-badge {
  background: rgba(10,14,26,0.75);
  border: 1px solid var(--border-strong);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  backdrop-filter: blur(6px);
}

/* ═══════════════════════════════════════════════════════════
   LEARN SECTION (2-col: image / check-list)
   ═══════════════════════════════════════════════════════════ */
.learn { padding: 48px 28px 56px; }
.learn-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.learn-visual { position: relative; }
.learn-visual-bare {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.learn-visual-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  text-align: center;
}
.learn-visual-caption-name {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.learn-visual-caption-role {
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.4;
}
.learn-visual-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -80px;
}

/* Dotted grid backdrop */
.learn-visual-grid {
  position: absolute;
  inset: 6% 4% 14% 4%;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at 50% 45%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 45%, black 30%, transparent 75%);
  border-radius: 50%;
  z-index: 0;
}

/* Soft green halo behind subject */
.learn-visual-halo {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 78%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 55%,
                rgba(168,255,83,0.22) 0%,
                rgba(168,255,83,0.10) 35%,
                transparent 70%);
  filter: blur(8px);
  border-radius: 50%;
  z-index: 0;
}

/* Floor ellipse — grounds the subject so he doesn't float */
.learn-visual-ground {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: 60%;
  height: 32px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, transparent 70%);
  filter: blur(6px);
  border-radius: 50%;
  z-index: 1;
}

.learn-visual-bare-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 24px rgba(168, 255, 83, 0.10))
    drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
}

/* Floating glassmorphic chips */
.float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(20, 27, 48, 0.78);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  animation: floatChip 5s ease-in-out infinite;
}
.float-chip-icon {
  font-size: 18px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(168,255,83,0.12);
  border-radius: 8px;
  flex-shrink: 0;
}
.float-chip-icon-check {
  color: var(--primary);
  font-weight: 700;
}
.float-chip-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  line-height: 1.1;
}
.float-chip-sub {
  font-size: 11.5px;
  color: var(--text-mute);
  white-space: nowrap;
  margin-top: 2px;
}

.float-chip-1 {
  top: 12%;
  left: -6%;
  animation-delay: 0s;
}
.float-chip-2 {
  top: 38%;
  right: -8%;
  animation-delay: 1.6s;
}
.float-chip-3 {
  bottom: 14%;
  left: -2%;
  animation-delay: 3.2s;
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 960px) {
  .learn-visual-stage { max-width: 420px; aspect-ratio: 4 / 5; }
  .float-chip-1 { left: 2%; }
  .float-chip-2 { right: 2%; }
  .float-chip-3 { left: 6%; }
  .float-chip-title { font-size: 12px; }
  .float-chip-sub { font-size: 11px; }
}
@media (max-width: 520px) {
  .float-chip { padding: 8px 10px; gap: 8px; }
  .float-chip-icon { width: 24px; height: 24px; font-size: 15px; }
}
.learn-visual-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--surface);
}
.learn-visual-frame-transparent {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(168,255,83,0.18), transparent 60%),
    linear-gradient(160deg, #1A2238 0%, #0F1525 100%);
  border-color: var(--border-strong);
}
.learn-visual-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at center, var(--primary-glow), transparent 60%);
  z-index: 0;
  filter: blur(40px);
  opacity: 0.5;
}
.learn-visual-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.learn-visual-img-transparent {
  object-fit: contain;
  aspect-ratio: 4 / 5;
  padding: 0;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}
.learn-visual-badge {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10,14,26,0.85);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  backdrop-filter: blur(6px);
}
.learn-visual-badge-icon { color: var(--primary); font-size: 11px; }

.learn-content { min-width: 0; }
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.check-list p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
}
.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon-bonus {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #0A0E1A;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.learn-note {
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-md);
  font-size: 13.5px;
  color: var(--text-mute);
}

@media (max-width: 960px) {
  .learn { padding: 56px 18px; }
  .learn-grid { grid-template-columns: 1fr; gap: 36px; }
  .learn-visual-img { aspect-ratio: 16 / 11; }
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS STRIP
   ═══════════════════════════════════════════════════════════ */
.partners {
  padding: 32px 28px 64px;
  text-align: center;
}
.partners-caption {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.partners-logos {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 28px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  transition: border-color 160ms ease, transform 160ms ease;
  min-width: 180px;
}
.partner-tile:hover { border-color: rgba(168,255,83,0.4); transform: translateY(-2px); }
.partner-tile img {
  max-height: 36px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════
   SPEAKERS / ABOUT  (LIGHT bg)
   ═══════════════════════════════════════════════════════════ */
.speakers-section {
  background: var(--light-bg);
  color: var(--light-text);
  padding: 72px 28px;
}
.speakers-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.speakers-copy .eyebrow {
  color: var(--primary-2);
  background: rgba(125,214,60,0.10);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
}
.speakers-lead {
  font-size: 16px;
  color: var(--light-mute);
  line-height: 1.65;
  margin-bottom: 16px;
}
.speakers-lead strong { color: var(--light-text); font-weight: 600; }

.speakers-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--light-border);
}
.stat-num {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--light-text);
  letter-spacing: -0.02em;
}
.stat-label {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--light-mute);
  line-height: 1.4;
}

/* Compliance badges */
.compliance-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compliance-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--r-md);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.compliance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15,21,37,0.08);
  border-color: rgba(125,214,60,0.45);
}
.compliance-mark {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compliance-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.compliance-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.compliance-desc {
  font-size: 13.5px;
  color: var(--light-mute);
  line-height: 1.5;
}

@media (max-width: 520px) {
  .compliance-card { grid-template-columns: 64px 1fr; padding: 14px 16px; gap: 14px; }
  .compliance-mark { width: 64px; height: 64px; }
  .compliance-title { font-size: 16px; }
  .compliance-desc { font-size: 13px; }
}

@media (max-width: 960px) {
  .speakers-section { padding: 64px 18px; }
  .speakers-grid { grid-template-columns: 1fr; gap: 40px; }
  .speakers-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 520px) {
  .speakers-stats { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials { padding: 96px 28px; max-width: var(--container); margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  transition: transform 160ms ease, border-color 160ms ease;
}
.testimonial:hover { transform: translateY(-2px); border-color: rgba(168,255,83,0.35); }
.testimonial-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 60px;
  line-height: 0.7;
  color: var(--primary);
  opacity: 0.8;
  margin-bottom: 4px;
}
.testimonial blockquote {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  font-style: italic;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 64px 18px; }
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq { padding: 96px 28px; max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 160ms ease;
}
.faq-item[open] { border-color: rgba(168,255,83,0.35); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--primary);
  transition: transform 200ms ease;
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.final-cta {
  padding: 96px 28px;
}
.final-cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(168,255,83,0.10), transparent 60%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 56px 40px 44px;
  text-align: center;
  overflow: hidden;
}
.final-cta-inner::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.6;
}
.final-cta-sub {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.signup-form-final {
  background: var(--bg-2);
  border-color: var(--border-strong);
  text-align: left;
  margin-top: 12px;
}
.signup-form-final .form-disclaimer { text-align: center; }

@media (max-width: 720px) {
  .final-cta { padding: 64px 18px; }
  .final-cta-inner { padding: 40px 22px 28px; }
}

/* ═══════════════════════════════════════════════════════════
   THANK-YOU PAGE
   ═══════════════════════════════════════════════════════════ */
.ty-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 28px 32px;
  text-align: center;
  position: relative;
}
.ty-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(168,255,83,0.10), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.ty-success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #0A0E1A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 14px 40px var(--primary-glow);
}
.ty-headline {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
}
.ty-subtitle {
  font-size: 16.5px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 14px;
}
.ty-subtitle strong { color: var(--primary); font-weight: 600; }
.ty-spam-note {
  font-size: 13.5px;
  color: var(--text-mute);
}

.ty-video {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 28px 32px;
}
.ty-video-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  background: var(--surface);
}
.ty-video-frame wistia-player {
  display: block;
  width: 100%;
}
.ty-unmute-hint {
  margin-top: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-mute);
}

.ty-softsell {
  padding: 56px 28px 96px;
}
.ty-softsell-inner {
  max-width: 720px;
  margin: 0 auto;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(168,255,83,0.10), transparent 60%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ty-softsell-inner::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.6;
}
.ty-softsell-sub {
  color: var(--text-soft);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 28px;
}
.ty-softsell-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 560px;
}
.ty-softsell-bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.ty-softsell-bullets p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
}

.ty-softsell-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(168,255,83,0.06);
}

@media (max-width: 720px) {
  .ty-hero { padding: 56px 18px 24px; }
  .ty-video { padding: 16px 18px; }
  .ty-softsell { padding: 40px 18px 72px; }
  .ty-softsell-inner { padding: 32px 22px; }
  .ty-softsell-actions { flex-direction: column; }
  .ty-softsell-actions .btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #06090F;
  border-top: 1px solid var(--border);
  padding: 56px 28px 24px;
}
.site-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.site-footer-logo-link { display: inline-block; margin-bottom: 14px; transition: opacity 160ms ease; }
.site-footer-logo-link:hover { opacity: 0.7; }
.site-footer-logo { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; display: block; }
.site-footer-tagline { color: var(--text-mute); font-size: 13.5px; max-width: 320px; line-height: 1.55; }
.site-footer-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-weight: 600;
}
.site-footer-link {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 6px;
  transition: color 160ms ease;
}
a.site-footer-link:hover { color: var(--primary); }
.site-footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 22px;
  font-size: 12.5px;
  color: var(--text-dim);
  text-align: center;
}

@media (max-width: 760px) {
  .site-footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  display: none;
  z-index: 100;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.cookie-banner.show { display: block; }
.cookie-content p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}
.cookie-link { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
.cookie-btn {
  padding: 9px 18px;
  border-radius: var(--r-sm);
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: filter 160ms ease, transform 160ms ease;
}
.cookie-btn-secondary {
  background: transparent;
  color: var(--text-soft);
  border: 1px solid var(--border-strong);
}
.cookie-btn-secondary:hover { color: var(--text); border-color: var(--text-mute); }
.cookie-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #0A0E1A;
}
.cookie-btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
