@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --white:      #FFFFFF;
  --bg:         #F7F9FE;
  --bg-alt:     #EEF3FB;
  --ink:        #0C1630;
  --ink-2:      #3D4F72;
  --ink-3:      #7D8FAD;
  --line:       #DDE4F0;
  --line-soft:  #E8EEF8;
  --blue:       #185FA5;
  --blue-hover: #1668B5;
  --blue-tint:  #EAF2FC;
  --teal:       #0D9488;
  --navy:       #0C1630;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1160px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: var(--font); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Eyebrow pill ───────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  border: 1px solid rgba(24,95,165,0.18);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s, color .15s;
  font-family: var(--font);
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(24,95,165,0.28); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-2); }
.btn-ghost-blue { background: transparent; color: var(--blue); border-color: rgba(24,95,165,0.28); }
.btn-ghost-blue:hover { background: var(--blue-tint); border-color: var(--blue); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.32); }
.btn-ghost-white:hover { border-color: var(--white); }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ── Nav ────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.brand-mark::after {
  content: ""; position: absolute;
  width: 7px; height: 7px; border-radius: 50%;
  background: #72C2FF; right: -1px; bottom: -1px;
  box-shadow: 0 0 0 2px var(--white);
}
.brand-mark svg { width: 15px; height: 15px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-signin { font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav-signin:hover { color: var(--ink); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--ink); }
.nav-toggle svg { display: block; }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--line);
  padding: 8px 0 14px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--ink); padding: 11px 24px; transition: background .1s; }
.mobile-menu a:hover { background: var(--bg); }
.mobile-menu .m-cta { margin: 10px 24px 0; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu .m-cta .btn { justify-content: center; }

@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-cta .nav-signin, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding: 76px 0 60px;
  background-color: var(--white);
  background-image: radial-gradient(rgba(24,95,165,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 {
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 800;
  color: var(--ink);
  max-width: 13ch;
  line-height: 1.06;
}
.hero-copy h1 em { font-style: normal; color: var(--blue); }
.hero-copy .lede {
  margin-top: 20px; font-size: 17px; line-height: 1.72;
  color: var(--ink-2); max-width: 44ch;
}
.hero-actions { display: flex; gap: 11px; margin-top: 30px; flex-wrap: wrap; }
.hero-formats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; }
.format-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 500; color: var(--ink-2);
}
.format-chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}

/* Hero visual + glow (the signature element) */
.hero-visual { position: relative; }
.hero-glow {
  position: absolute;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,95,165,0.13) 0%, transparent 70%);
  filter: blur(72px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 0;
}
.hero-shot-stack { position: relative; padding: 20px 0 0 36px; }
.browser-frame {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 4px rgba(12,22,48,0.04), 0 16px 48px rgba(12,22,48,0.12);
  position: relative;
}
.browser-frame.behind {
  position: absolute; top: -20px; left: -36px;
  width: 72%; opacity: 0.85;
  filter: saturate(0.75) brightness(0.97); z-index: 1;
}
.browser-frame.front { z-index: 2; }
.bf-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 12px; background: var(--bg); border-bottom: 1px solid var(--line);
}
.bf-bar span { width: 8px; height: 8px; border-radius: 50%; }
.bf-bar span:nth-child(1) { background: #FF5F57; }
.bf-bar span:nth-child(2) { background: #FEBC2E; }
.bf-bar span:nth-child(3) { background: #28C840; }
.browser-frame img { display: block; width: 100%; height: auto; }

.hero-callout {
  position: absolute; z-index: 3; right: -18px; bottom: -18px;
  width: 214px; background: var(--ink); color: var(--white);
  border-radius: 12px; padding: 13px 15px;
  box-shadow: 0 16px 40px rgba(12,22,48,0.36);
  font-size: 13px; line-height: 1.5;
}
.hero-callout .callout-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #72C2FF; margin-bottom: 5px;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .browser-frame.behind { display: none; }
  .hero-shot-stack { padding-left: 0; }
  .hero-callout { position: static; width: auto; margin-top: 12px; }
}
@media (max-width: 520px) { .hero { padding: 56px 0 44px; } }

/* ── Section scaffolding ────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy); color: rgba(255,255,255,0.8); }

.section-head { margin-bottom: 52px; max-width: 600px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 44px); color: var(--ink); margin-top: 10px; }
.section-dark .section-head h2 { color: var(--white); }
.section-head p { margin-top: 14px; font-size: 16px; color: var(--ink-2); line-height: 1.72; }
.section-dark .section-head p { color: rgba(255,255,255,0.58); }

/* ── Proof strip ────────────────────────────────────── */
.proof-strip {
  background: var(--bg); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); padding: 18px 0;
}
.proof-inner { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.proof-item { font-size: 13px; color: var(--ink-3); font-weight: 500; display: flex; align-items: center; gap: 7px; }
.proof-item strong { color: var(--ink-2); }
.proof-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line); flex-shrink: 0; }

/* ── Workflow steps ──────────────────────────────────── */
.workflow {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.workflow-step { background: var(--white); padding: 28px 24px; }
.step-badge {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--blue-tint); color: var(--blue);
  font-size: 12.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.workflow-step h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.workflow-step p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 800px) { .workflow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .workflow { grid-template-columns: 1fr; } }

/* ── Activity type grid ──────────────────────────────── */
.activity-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.activity-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px 20px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.activity-card:hover { border-color: rgba(24,95,165,0.3); box-shadow: 0 4px 20px rgba(24,95,165,0.08); transform: translateY(-2px); }
.a-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-tint);
  padding: 3px 9px; border-radius: 999px; margin-bottom: 12px;
}
.activity-card h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.activity-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 800px) { .activity-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .activity-grid { grid-template-columns: 1fr; } }

/* ── Audience split ─────────────────────────────────── */
.audience-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audience-card {
  border-radius: var(--radius); padding: 42px 36px;
  display: flex; flex-direction: column; gap: 24px;
  justify-content: space-between; min-height: 256px;
}
.audience-card.for-creators { background: var(--ink); color: var(--white); }
.audience-card.for-creators .eyebrow { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.14); color: #90C5FF; }
.audience-card.for-learners { background: var(--blue-tint); border: 1px solid rgba(24,95,165,0.14); color: var(--ink); }
.audience-card h3 { font-size: 25px; font-weight: 800; max-width: 16ch; margin-top: 10px; }
.audience-card.for-creators h3 { color: var(--white); }
.audience-card p { font-size: 14.5px; line-height: 1.65; max-width: 36ch; margin-top: 10px; }
.audience-card.for-creators p { color: rgba(255,255,255,0.60); }
.audience-card.for-learners p { color: var(--ink-2); }
@media (max-width: 740px) { .audience-split { grid-template-columns: 1fr; } }

/* ── Testimonials ───────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.t-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px 20px;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 200px;
}
.t-stars { color: #F59E0B; font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; }
.t-quote { font-size: 14px; line-height: 1.65; color: var(--ink); flex: 1; }
.t-quote em { font-style: normal; font-weight: 700; color: var(--blue); }
.t-who { margin-top: 16px; font-size: 12px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.01em; }
@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── Billing toggle ─────────────────────────────────── */
.billing-wrap { text-align: center; margin-bottom: 36px; }
.billing-toggle {
  display: inline-flex; align-items: center; gap: 0;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px;
}
.billing-toggle button {
  border: none; background: transparent; padding: 8px 18px;
  border-radius: 999px; font-size: 13.5px; font-weight: 600;
  color: var(--ink-2); cursor: pointer; font-family: var(--font);
  transition: background .15s, color .15s, box-shadow .15s;
}
.billing-toggle button.active {
  background: var(--white); color: var(--ink);
  box-shadow: 0 1px 4px rgba(12,22,48,0.10);
}
.save-pill {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #0D9488; background: #E0F2F0;
  padding: 2px 9px; border-radius: 999px; margin-left: 6px;
}
.save-pill.hidden { display: none; }

/* ── Plan grid ──────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-bottom: 24px; }
.plan-card {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 22px 18px;
  display: flex; flex-direction: column; gap: 3px; position: relative;
  transition: border-color .15s, box-shadow .15s;
}
.plan-card:hover { border-color: rgba(24,95,165,0.28); box-shadow: 0 4px 20px rgba(24,95,165,0.07); }
.plan-card.is-featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.plan-popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-2); }
.plan-price-row { display: flex; align-items: baseline; gap: 3px; margin: 6px 0; }
.plan-price-row .amount { font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.plan-price-row .per { font-size: 13px; color: var(--ink-3); }
.plan-billed { font-size: 11px; color: var(--ink-3); min-height: 15px; }
.plan-tagline { font-size: 12px; color: var(--ink-2); line-height: 1.5; padding: 8px 0; flex: 1; }
.plan-overage { font-size: 11px; color: var(--ink-3); min-height: 15px; }
.plan-cta {
  display: block; text-align: center; margin-top: 10px;
  padding: 9px 12px; border-radius: var(--radius-xs);
  font-size: 12.5px; font-weight: 600; text-decoration: none;
  background: var(--bg); color: var(--ink); border: 1px solid var(--line);
  transition: background .15s, border-color .15s; cursor: pointer;
  font-family: var(--font);
}
.plan-cta:hover { background: var(--line); }
.plan-card.is-featured .plan-cta { background: var(--blue); color: var(--white); border-color: var(--blue); }
.plan-card.is-featured .plan-cta:hover { background: var(--blue-hover); border-color: var(--blue-hover); }

.pricing-sub-note { text-align: center; font-size: 13.5px; color: var(--ink-3); margin-top: 4px; }
.pricing-sub-note a { color: var(--blue); font-weight: 600; }
.pricing-sub-note a:hover { text-decoration: underline; }

@media (max-width: 1000px) { .plan-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 680px) { .plan-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px) { .plan-grid { grid-template-columns: 1fr; } }

/* ── Feature table (pricing.html) ───────────────────── */
.section-label {
  font-size: 11px; font-weight: 700; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.feature-table { width: 100%; border-collapse: collapse; margin-bottom: 48px; }
.feature-table .group-hd td {
  font-size: 11px; font-weight: 700; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 20px 12px 8px; background: var(--bg);
}
.feature-table .col-hd {
  font-size: 11px; font-weight: 700; color: var(--ink-2);
  padding: 8px 12px; text-align: center;
  border-bottom: 1.5px solid var(--line);
}
.feature-table .col-hd:first-child { text-align: left; }
.feature-table .feat-row td {
  padding: 10px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: middle;
}
.feature-table .feat-row td:not(:first-child) { text-align: center; }
.feature-table .feat-row:hover td { background: var(--bg); }
.feat-label-cell { display: flex; align-items: center; gap: 6px; cursor: pointer; user-select: none; }
.expand-chevron { font-size: 12px; color: var(--ink-3); transition: transform .2s; flex-shrink: 0; width: 14px; display: inline-block; text-align: center; }
.feat-row.open .expand-chevron { transform: rotate(90deg); }
.feat-label { font-size: 13px; color: var(--ink); }
.feat-check { color: var(--teal); font-size: 15px; font-weight: 700; }
.feat-dash { color: var(--line); font-size: 15px; }
.feat-val { font-size: 13px; color: var(--ink); font-weight: 600; }
.explain-row { display: none; }
.explain-row.visible { display: table-row; }
.explain-row td {
  padding: 8px 12px 12px 32px; background: var(--blue-tint);
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px; color: var(--ink-2); line-height: 1.7;
}

/* ── FAQ ────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; font-size: 15px; font-weight: 600;
  color: var(--ink); gap: 16px; user-select: none;
}
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px;
  background: var(--bg); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 300; color: var(--ink-3);
  transition: transform .2s, background .2s, color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-tint); color: var(--blue); border-color: rgba(24,95,165,0.22); }
.faq-a { display: none; padding: 0 0 18px; font-size: 14px; color: var(--ink-2); line-height: 1.75; max-width: 64ch; }
.faq-item.open .faq-a { display: block; }

/* ── CTA band ───────────────────────────────────────── */
.cta-band {
  background: var(--navy); border-radius: 16px;
  padding: 58px 52px; display: flex; align-items: center;
  justify-content: space-between; gap: 28px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,95,165,0.40), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); font-size: clamp(24px, 3vw, 36px); max-width: 20ch; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Footer ─────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.58); padding: 60px 0 28px; }
.footer-top {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-brand { max-width: 290px; }
.footer-brand .brand { color: var(--white); }
.footer-brand .brand-mark { background: var(--blue); }
.footer-brand .brand-mark::after { background: #72C2FF; box-shadow: 0 0 0 2px var(--navy); }
.footer-brand p { margin-top: 12px; font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.38); }
.footer-cols { display: flex; gap: 52px; flex-wrap: wrap; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.30); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.58); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 12px; color: rgba(255,255,255,0.28);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }

/* ── How it works rows (index) ──────────────────────── */
.hiw-list { display: flex; flex-direction: column; gap: 80px; }
.hiw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hiw-row.flip .hiw-img { order: 2; }
.hiw-row.flip .hiw-copy { order: 1; }
.hiw-img img { border-radius: var(--radius); box-shadow: 0 4px 32px rgba(12,22,48,0.10); width: 100%; }
.hiw-copy .step-badge { margin-bottom: 16px; }
.hiw-copy h3 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; color: var(--ink); margin-top: 10px; }
.hiw-copy p { margin-top: 14px; font-size: 15.5px; color: var(--ink-2); line-height: 1.75; max-width: 40ch; }
@media (max-width: 800px) {
  .hiw-row { grid-template-columns: 1fr; gap: 24px; }
  .hiw-row.flip .hiw-img { order: 0; }
  .hiw-row.flip .hiw-copy { order: 1; }
  .hiw-copy p { max-width: none; }
}

/* Tour screen image polish */
.tour-screen img { border-radius: var(--radius); box-shadow: 0 4px 32px rgba(12,22,48,0.10); }

/* ── Interior page hero ─────────────────────────────── */
.page-hero { padding: 68px 0 40px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 50px); font-weight: 800; max-width: 22ch; margin-top: 14px; }
.page-hero .lede { margin-top: 16px; font-size: 17px; color: var(--ink-2); line-height: 1.72; max-width: 52ch; }
.page-hero .hero-actions { margin-top: 26px; }

/* ── Creators: shift list ───────────────────────────── */
.shift-list {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; gap: 1px; background: var(--line);
}
.shift-row {
  display: grid; grid-template-columns: 1fr 44px 1fr;
  align-items: center; background: var(--white); padding: 22px 28px; gap: 16px;
}
.shift-row .before { color: var(--ink-3); font-size: 14.5px; line-height: 1.6; }
.shift-row .after { color: var(--ink); font-size: 14.5px; line-height: 1.6; font-weight: 600; }
.shift-row .arrow {
  width: 34px; height: 34px; border-radius: 50%; background: var(--blue-tint);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 14px; margin: 0 auto;
}
@media (max-width: 660px) {
  .shift-row { grid-template-columns: 1fr; }
  .shift-row .arrow { margin: 4px 0; }
}

/* ── Product tour (creators) ────────────────────────── */
.tour { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 48px; align-items: start; }
.tour-tabs { display: flex; flex-direction: column; gap: 2px; }
.tour-tab {
  position: relative; display: block; width: 100%; text-align: left;
  background: transparent; border: none; cursor: pointer;
  padding: 14px 0 14px 20px; border-left: 2px solid var(--line);
  transition: border-color .2s; font-family: var(--font);
}
.tt-num { font-size: 11px; color: var(--ink-3); font-weight: 700; letter-spacing: 0.04em; display: block; }
.tt-title { font-size: 15px; font-weight: 700; color: var(--ink-2); margin-top: 4px; transition: color .2s; display: block; }
.tt-desc {
  font-size: 13px; color: var(--ink-3); margin-top: 6px; line-height: 1.5;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .25s ease, opacity .2s ease; display: block;
}
.tt-progress { position: absolute; left: -1px; top: 0; width: 2px; height: 0%; background: var(--blue); transition: height linear; }
.tour-tab.is-active { border-left-color: transparent; }
.tour-tab.is-active .tt-title { color: var(--ink); }
.tour-tab.is-active .tt-desc { max-height: 80px; opacity: 1; }
.tour-tab:not(.is-active):hover .tt-title { color: var(--ink); }
.tour-screen img,
.tour-screen video { display: none; width: 100%; height: auto; }
.tour-screen img.is-active,
.tour-screen video.is-active { display: block; animation: tourFade .35s ease; }
@keyframes tourFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 880px) {
  .tour { grid-template-columns: 1fr; gap: 24px; }
  .tour-tabs { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .tour-tab { width: auto; border-left: none; border-bottom: 2px solid var(--line); padding: 0 0 8px; }
  .tt-desc { display: none; }
  .tt-progress { left: 0; top: auto; bottom: -1px; width: 0%; height: 2px; }
}

/* ── Creators: analytics dark band ──────────────────── */
.analytics-strip { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center; }
.analytics-points { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.ap-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #72C2FF; margin-bottom: 4px; }
.ap-text { font-size: 13.5px; color: rgba(255,255,255,0.68); line-height: 1.6; }
@media (max-width: 780px) { .analytics-strip { grid-template-columns: 1fr; } }

/* ── Learners: showcase rows ────────────────────────── */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 60px; }
.showcase:last-child { margin-bottom: 0; }
.showcase.reverse .showcase-copy { order: 2; }
.showcase-copy h3 { font-size: 25px; font-weight: 800; margin-top: 10px; }
.showcase-copy p { margin-top: 12px; font-size: 15px; color: var(--ink-2); line-height: 1.72; }
.showcase-visual {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  min-height: 220px; display: flex; align-items: center; justify-content: center;
}
@media (max-width: 780px) {
  .showcase { grid-template-columns: 1fr; gap: 22px; }
  .showcase.reverse .showcase-copy { order: 0; }
}
