
/* ==========================================================================
   Know Your Way Marketing site
   Brand pulled from focalpoint.education (live stylesheet)
   Primary #43baff · Cyan #00deff · Purple #7141b1 / #502a71 · Ink #1b1d21
   Signature gradient: linear-gradient(125deg,#00deff,#502a71)
   Fonts: Montserrat (headings) + Inter (body)
   ========================================================================== */

:root {
  --blue: #43baff;
  --cyan: #00deff;
  --purple: #7141b1;
  --purple-deep: #502a71;
  --ink: #1b1d21;
  --green: #5ba612;
  --blue-2: #2e76fe;

  --bg: #ffffff;
  --bg-soft: #f4f8ff;
  --bg-ink: #15171a;
  --border: #e6ecf5;
  --text: #1b1d21;
  --text-muted: #5b6675;
  --text-on-dark: #e9eef6;
  --muted-on-dark: #a3adbe;

  --grad: linear-gradient(125deg, #00deff, #502a71);
  --grad-blue: linear-gradient(125deg, #43baff, #7141b1);
  --grad-ink: linear-gradient(160deg, #1b1d21 0%, #25203a 60%, #2a1f4a 100%);

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(27, 29, 33, .06);
  --shadow: 0 18px 50px rgba(40, 32, 81, .12);
  --shadow-lg: 0 30px 80px rgba(40, 32, 81, .22);

  --maxw: 1160px;
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { padding: 92px 0; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.eyebrow.on-dark { color: var(--cyan); }
.gradient-text {
  background: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { margin-top: 16px; color: var(--text-muted); font-size: 18px; }
.center { text-align: center; }
.soft { background: var(--bg-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, opacity .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-blue); color: #fff; border: none; transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.18); }
.btn-primary:hover { opacity: .92; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 8px 0; overflow: visible; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -.02em; }
.brand .mark { width: 34px; height: 34px; border-radius: 9px; background: var(--grad); display: grid; place-items: center; box-shadow: 0 6px 16px rgba(80,42,113,.35); }
.brand .mark svg { width: 19px; height: 19px; }
.brand-logo { width: 40px; height: 40px; border-radius: 50%; display: block; flex: none; }
.brand-logo-emblem { height: 38px; width: auto; display: block; flex: none; }
.brand-logo-full { height: 38px; width: auto; display: block; flex: none; }
.footer-logo { height: 34px; width: auto; display: block; background: #fff; padding: 8px 13px; border-radius: 10px; }
.brand small { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .04em; color: var(--text-muted); margin-top: -2px; font-family: var(--font-body); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.link { font-weight: 600; font-size: 15px; color: var(--text-muted); transition: color .15s; }
.nav-links a.link:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero { background: var(--grad-ink); color: var(--text-on-dark); position: relative; overflow: hidden; padding: 96px 0 104px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(640px 320px at 82% 8%, rgba(0,222,255,.10), transparent 70%),
    radial-gradient(560px 360px at 12% 92%, rgba(113,65,177,.34), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 58px); }
.hero h1 .gradient-text { background: linear-gradient(120deg,#43baff,#00deff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { margin: 22px 0 32px; font-size: 19px; color: var(--text-on-dark); max-width: 560px; }
.hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .pill-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; color: var(--muted-on-dark); font-size: 14px; }
.hero .pill-row span { display: flex; align-items: center; gap: 8px; }
.hero .pill-row svg { width: 16px; height: 16px; color: var(--cyan); }

/* Hero product mock */
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 18px; box-shadow: var(--shadow-lg); backdrop-filter: blur(6px);
}
.hero-card .bar { display: flex; gap: 6px; padding: 4px 6px 14px; }
.hero-card .bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.3); }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mode-chip {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 16px; color: #fff;
}
.mode-chip .ic { width: 36px; height: 36px; border-radius: 9px; background: var(--grad); display: grid; place-items: center; margin-bottom: 10px; }
.mode-chip .ic svg { width: 19px; height: 19px; color: #fff; }
.mode-chip b { font-family: var(--font-head); font-size: 15px; display: block; }
.mode-chip span { font-size: 12.5px; color: var(--muted-on-dark); }

/* ---------- Logo strip ---------- */
.trust { padding: 36px 0; border-bottom: 1px solid var(--border); }
.trust p { text-align: center; color: var(--text-muted); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin-bottom: 20px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; align-items: center; }
.trust-row .logo-text { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: #aeb6c2; letter-spacing: -.01em; }
.trust-row img { height: 46px; width: auto; max-width: 170px; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter .25s ease, opacity .25s ease; }
.trust-row img:hover { filter: grayscale(0); opacity: 1; }
.trust-row .gadoe { height: 56px; }
.trust-parent { text-align: center; margin-top: 22px; font-size: 13.5px; color: var(--text-muted); }
.trust-parent b { color: var(--ink); font-weight: 700; }

/* ---------- Feature grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d7e2f2; }
.card .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--bg-soft); display: grid; place-items: center; margin-bottom: 18px; }
.card .ic svg { width: 25px; height: 25px; color: var(--purple); }
.card h3 { font-size: 20px; margin-bottom: 9px; }
.card p { color: var(--text-muted); font-size: 15.5px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); }
.step .num { font-family: var(--font-head); font-weight: 800; font-size: 15px; width: 38px; height: 38px; border-radius: 50%; background: var(--grad-blue); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 15px; }
.code-embed {
  margin-top: 40px; background: var(--bg-ink); color: #d7e6ff; border-radius: var(--radius);
  padding: 22px 24px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 14.5px;
  overflow-x: auto; box-shadow: var(--shadow);
}
.code-embed .tok-tag { color: #43baff; }
.code-embed .tok-attr { color: #00deff; }
.code-embed .tok-str { color: #9be88a; }
.code-embed .cmt { color: #8c9bb5; }

/* ---------- Audiences ---------- */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audience .panel { border-radius: var(--radius); padding: 40px; color: #fff; position: relative; overflow: hidden; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; }
.audience .panel.k12 { background: linear-gradient(150deg, #2e76fe, #7141b1); }
.audience .panel.higher { background: linear-gradient(150deg, #502a71, #00deff); }
.audience .panel h3 { color: #fff; font-size: 26px; margin-bottom: 10px; }
.audience .panel p { color: rgba(255,255,255,.9); margin-bottom: 18px; }
.audience .panel ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.audience .panel li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,.94); }
.audience .panel li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: #fff; }

/* ---------- Detailed feature rows ---------- */
.feature-rows { display: flex; flex-direction: column; gap: 88px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.frow.rev .ftext { order: 2; }
.ftext .kicker { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .04em; color: var(--purple); margin-bottom: 14px; }
.ftext .kicker .dot { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); display: grid; place-items: center; }
.ftext .kicker .dot svg { width: 16px; height: 16px; color: #fff; }
.ftext h3 { font-size: clamp(24px, 3.2vw, 34px); }
.ftext > p { color: var(--text-muted); font-size: 17px; margin: 14px 0 4px; }
.ftext ul.feat { list-style: none; margin-top: 22px; display: grid; gap: 16px; }
.ftext ul.feat li { display: flex; gap: 13px; align-items: flex-start; }
.ftext ul.feat li svg.ck { width: 22px; height: 22px; flex: none; margin-top: 1px; color: var(--green); }
.ftext ul.feat li b { font-family: var(--font-head); font-size: 15.5px; display: block; }
.ftext ul.feat li span { color: var(--text-muted); font-size: 14.5px; }
.ftext .who-for { margin-top: 24px; font-size: 14px; color: var(--text-muted); }
.ftext .who-for b { color: var(--purple); font-family: var(--font-head); }

/* feature visual frame */
.fvisual { position: relative; }
.fvisual::before { content: ""; position: absolute; inset: -10% -6% -10% -6%; background: radial-gradient(60% 60% at 60% 40%, rgba(67,186,255,.16), transparent 70%); z-index: 0; }
.mock { position: relative; z-index: 1; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: var(--shadow); }
.mock .mock-head { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--text-muted); font-size: 12.5px; font-weight: 600; }
.mock .mock-head i { width: 9px; height: 9px; border-radius: 50%; background: #d7dee9; }
.mock .mock-head .src { margin-left: auto; font-family: ui-monospace, monospace; font-size: 11px; background: var(--bg-soft); padding: 3px 9px; border-radius: 6px; color: var(--purple); }

/* flashcard mock */
.fc-card { border: 1px solid var(--border); border-radius: 14px; padding: 22px; background: linear-gradient(180deg,#fff, #f8fbff); }
.fc-card .q { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); }
.fc-card .divider { height: 1px; background: var(--border); margin: 16px 0; }
.fc-card .a { color: var(--text-muted); font-size: 14.5px; }
.fc-foot { display: flex; gap: 8px; margin-top: 16px; }
.fc-foot .pill { font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--bg-soft); color: var(--purple); }
.fc-foot .pill.flip { margin-left: auto; background: var(--grad-blue); color: #fff; }

/* quiz mock */
.quiz-q { font-family: var(--font-head); font-weight: 700; font-size: 16.5px; margin-bottom: 14px; }
.quiz-opt { display: flex; align-items: center; gap: 11px; border: 1px solid var(--border); border-radius: 11px; padding: 12px 14px; margin-bottom: 9px; font-size: 14.5px; }
.quiz-opt .mk { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #cdd6e3; flex: none; }
.quiz-opt.correct { border-color: var(--green); background: #f3fbef; }
.quiz-opt.correct .mk { border-color: var(--green); background: var(--green); position: relative; }
.quiz-opt.correct .mk::after { content: ""; position: absolute; left: 6px; top: 3px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.quiz-opt.wrong { border-color: #f1b9b9; background: #fef5f5; }

/* mindmap mock */
.mm-wrap { height: 220px; display: grid; place-items: center; }
.mm-node { font-family: var(--font-head); font-weight: 700; font-size: 13px; padding: 8px 14px; border-radius: 999px; }

/* podcast mock */
.pod { display: flex; align-items: center; gap: 16px; }
.pod .play { width: 54px; height: 54px; border-radius: 50%; background: var(--grad-blue); display: grid; place-items: center; flex: none; box-shadow: 0 8px 20px rgba(113,65,177,.35); }
.pod .play svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }
.pod .wave { display: flex; align-items: center; gap: 3px; height: 40px; flex: 1; }
.pod .wave i { flex: 1; background: linear-gradient(180deg,#43baff,#7141b1); border-radius: 3px; opacity: .85; }
.pod-meta { display: flex; justify-content: space-between; margin-top: 14px; font-size: 12.5px; color: var(--text-muted); }
.pod-meta .voice { color: var(--purple); font-weight: 600; }

/* breakdown mock */
.bd-step { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--border); }
.bd-step:last-child { border-bottom: none; }
.bd-step .n { width: 26px; height: 26px; border-radius: 8px; background: var(--bg-soft); color: var(--purple); font-family: var(--font-head); font-weight: 800; font-size: 13px; display: grid; place-items: center; flex: none; }
.bd-step b { font-family: var(--font-head); font-size: 14.5px; display: block; }
.bd-step span { font-size: 13px; color: var(--text-muted); }

/* ---------- Reusable tick list ---------- */
.ticks { list-style: none; display: grid; gap: 10px; margin-top: 16px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.ticks li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--green); }
.week-card .wk { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--grad-blue); padding: 5px 13px; border-radius: 999px; margin-bottom: 14px; }
.week-card h3 { font-size: 20px; }
.week-card > p { color: var(--text-muted); font-size: 14.5px; margin-top: 6px; }
.week-card .ship { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--border); font-size: 13.5px; }
.week-card .ship b { color: var(--purple); font-family: var(--font-head); }

/* ---------- Pedagogy ---------- */
.pedagogy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ped-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.ped-card .tagn { font-family: var(--font-head); font-weight: 800; font-size: 13px; color: #007a8c; letter-spacing: .08em; text-transform: uppercase; }
.ped-card h3 { font-size: 19px; margin: 8px 0 10px; }
.ped-card p { color: var(--text-muted); font-size: 15px; }

/* ---------- Integrations ---------- */
.integ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.integ { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; font-family: var(--font-head); font-weight: 700; font-size: 15px; box-shadow: var(--shadow-sm); }
.integ .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--bg-soft); display: grid; place-items: center; flex: none; }
.integ .ic svg { width: 18px; height: 18px; color: var(--purple); }
.integ small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 12px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--border); border-radius: 12px; padding: 4px 22px; margin-bottom: 12px; background: #fff; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 16.5px; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 22px; height: 22px; flex: none; position: relative; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--purple); border-radius: 2px; transition: transform .2s; }
.faq summary .plus::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq summary .plus::after { left: 10px; top: 2px; bottom: 2px; width: 2px; }
.faq details[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq details p { color: var(--text-muted); font-size: 15.5px; padding: 0 0 20px; }

/* ---------- Accessibility ---------- */
.a11y { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.a11y .copy h2 { font-size: clamp(28px, 3.8vw, 42px); }
.a11y .copy p { color: var(--text-muted); font-size: 17px; margin: 16px 0 24px; }
.a11y .copy ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.a11y .copy li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.a11y .copy li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--green); }
.a11y .copy li b { font-family: var(--font-head); }
.learner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.learner-chip { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s; }
.learner-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.learner-chip .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; margin-bottom: 12px; }
.learner-chip .ic svg { width: 21px; height: 21px; color: #fff; }
.learner-chip b { font-family: var(--font-head); font-size: 15.5px; display: block; }
.learner-chip span { font-size: 13px; color: var(--text-muted); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 4vw, 48px); background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .l { color: var(--text-muted); font-size: 15px; margin-top: 4px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative;
}
.plan.featured { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-8px); background: linear-gradient(#fff,#fff) padding-box, var(--grad-blue) border-box; border: 2px solid transparent; }
.plan .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-blue); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .04em; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 21px; }
.plan .price { font-family: var(--font-head); font-weight: 800; font-size: 36px; margin: 12px 0 2px; color: var(--ink); }
.plan .price span { font-size: 15px; font-weight: 600; color: var(--text-muted); }
.plan .gens { color: var(--purple); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.plan .unit { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.plan li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--green); }
.plan .btn { width: 100%; justify-content: center; }
.pricing-note { text-align: center; margin-top: 24px; color: var(--text-muted); font-size: 14px; }

/* ---------- Compliance ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 12px; }
.badge { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 10px 18px; font-weight: 600; font-size: 14px; box-shadow: var(--shadow-sm); }
.badge svg { width: 18px; height: 18px; color: var(--green); }

/* ---------- Talent / Sapphirus banner ---------- */
.sapphirus { background: var(--grad-ink); color: var(--text-on-dark); border-radius: 22px; padding: 56px; overflow: hidden; position: relative; }
.sapphirus::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 90% 10%, rgba(0,222,255,.18), transparent 70%); }
.sapphirus .inner { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.sapphirus h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); }
.sapphirus p { color: var(--text-on-dark); margin: 16px 0 26px; font-size: 17px; }
.sapphirus .proof { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 26px; }
.sapphirus .proof b { font-family: var(--font-head); display: block; color: var(--cyan); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.sapphirus .proof p { color: var(--text-on-dark); font-size: 15.5px; margin: 0; }

/* ---------- Testimonial ---------- */
.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote blockquote { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px, 3vw, 30px); line-height: 1.32; letter-spacing: -.02em; color: var(--ink); }
.quote .who { margin-top: 22px; color: var(--text-muted); font-size: 15px; }
.quote .who b { color: var(--ink); }

/* ---------- CTA ---------- */
.cta-band { background: var(--grad-blue); color: #fff; border-radius: 24px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 220px at 15% 10%, rgba(255,255,255,.22), transparent 70%); }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); position: relative; }
.cta-band p { position: relative; color: rgba(255,255,255,.94); font-size: 18px; margin: 14px 0 28px; }
.cta-band .btn-light { background: #fff; color: var(--purple); position: relative; }
.cta-band .btn-light:hover { box-shadow: 0 16px 34px rgba(0,0,0,.2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-ink); color: var(--muted-on-dark); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand small { color: var(--muted-on-dark); }
.site-footer p.desc { font-size: 14.5px; max-width: 300px; }
.footer-col h3 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-head); }
.footer-col a { display: block; color: var(--muted-on-dark); font-size: 14.5px; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .grid-3, .steps, .stats, .pedagogy { grid-template-columns: repeat(2, 1fr); }
  .integ-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .plan.featured { transform: none; }
  .audience, .grid-2, .sapphirus .inner, .footer-grid, .a11y { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; gap: 36px; }
  .frow.rev .ftext { order: 0; }
  .feature-rows { gap: 60px; }
  .footer-grid { gap: 28px; }
  section { padding: 70px 0; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 16px 24px 24px; gap: 14px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { flex-direction: column; align-items: stretch; }
  .nav-toggle { display: block; }
  .grid-3, .steps, .stats, .pricing-grid, .pedagogy, .integ-grid { grid-template-columns: 1fr; }
  .sapphirus, .cta-band { padding: 40px 26px; }
  .stats { gap: 32px; }
}


/* ============================== Sub-pages (about/contact/security/privacy/terms) ============================== */
.subpage-hero { background: var(--grad-ink); color: var(--text-on-dark); padding: 132px 0 72px; position: relative; overflow: hidden; }
.subpage-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(680px 320px at 78% -10%, rgba(0,222,255,.18), transparent 60%); }
.subpage-hero .container { position: relative; max-width: 880px; }
.subpage-hero .crumb { font-size: 13px; letter-spacing:.04em; color: var(--muted-on-dark); margin-bottom: 22px; }
.subpage-hero .crumb a { color: var(--muted-on-dark); }
.subpage-hero .crumb a:hover { color: #fff; }
.subpage-hero h1 { font-size: clamp(34px, 5vw, 54px); margin: 6px 0 0; }
.subpage-hero .lead { margin: 20px 0 0; font-size: 19px; color: var(--text-on-dark); max-width: 620px; line-height: 1.6; }
.subpage-body { padding: 76px 0 96px; }
.subpage-body .container { max-width: 880px; }
.prose > p { color: var(--text-muted); font-size: 17px; margin: 0 0 20px; line-height: 1.7; }
.prose h2 { font-size: 26px; margin: 14px 0 12px; }
.prose h2:not(:first-child) { margin-top: 12px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.info-card h2 { font-size: 21px; margin: 0 0 8px; }
.info-card p { color: var(--text-muted); font-size: 16px; line-height: 1.65; margin: 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.legal-note { background: #fff8e1; border: 1px solid #ffe082; border-radius: 10px; padding: 14px 18px; margin: 22px 0; color: #6b5400; font-size: 15px; }
.legal h2 { font-size: 20px; margin: 26px 0 8px; }
.legal p { color: var(--text-muted); margin: 0 0 8px; }
.legal em { color: var(--text-muted); }
.subpage-cta { padding: 0 0 100px; }
.subpage-cta .container { max-width: 1000px; }
@media (max-width: 760px){ .info-grid { grid-template-columns: 1fr; } .subpage-hero { padding: 110px 0 56px; } }

/* WCAG 2.2 AA */
:focus-visible { outline: 2.5px solid var(--purple); outline-offset: 2px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }
.skip-link { position: absolute; top: 0; left: 8px; z-index: 9999; padding: 8px 16px; background: var(--purple); color: #fff; font-weight: 700; border-radius: 6px; text-decoration: none; font-size: 14px; white-space: nowrap; transform: translateY(-120%); }
.skip-link:focus-visible { transform: translateY(8px); }
