:root {
  --navy: #18385b;
  --navy-deep: #102b49;
  --teal: #1d8a87;
  --teal-dark: #176f6d;
  --sage: #a7bfa7;
  --sage-light: #e6efea;
  --mint: #f1f7f4;
  --off-white: #faf8f5;
  --white: #ffffff;
  --gray-50: #f7f9fa;
  --gray-100: #eef1f3;
  --gray-200: #dfe5e8;
  --gray-300: #cbd4d9;
  --gray-500: #6b7280;
  --gray-700: #415061;
  --amber: #d7932f;
  --amber-light: #fff4df;
  --blue: #4f9fc6;
  --blue-light: #eaf4fa;
  --green: #5e9b71;
  --green-light: #eaf4ec;
  --shadow-sm: 0 8px 24px rgba(24, 56, 91, 0.07);
  --shadow-md: 0 22px 60px rgba(24, 56, 91, 0.12);
  --shadow-lg: 0 38px 90px rgba(24, 56, 91, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.035em; line-height: 1.12; }
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); font-weight: 650; }
h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 640; }
h3 { font-size: 1.35rem; font-weight: 650; }
p { color: var(--gray-700); }
::selection { background: var(--sage-light); color: var(--navy-deep); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(100%, 790px); margin-inline: auto; }
.section { padding: 104px 0; }
.section-tight { padding-top: 72px; }
.section-soft { background: linear-gradient(180deg, #f7faf8 0%, #f1f7f4 100%); }
.section-navy { background: var(--navy-deep); color: var(--white); }
.section-navy p { color: rgba(255,255,255,.73); }
.anchor-section { scroll-margin-top: 100px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; background: var(--navy); color: #fff; border-radius: 10px; transition: top var(--transition); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(24,56,91,.08); transition: box-shadow var(--transition), background var(--transition); }
.site-header.is-scrolled { box-shadow: 0 8px 32px rgba(24,56,91,.08); background: rgba(255,255,255,.96); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.35rem; font-weight: 650; letter-spacing: -.03em; color: var(--navy-deep); }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a:not(.button) { position: relative; font-size: .96rem; font-weight: 520; color: var(--navy); transition: color var(--transition); }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--teal); transition: right var(--transition); }
.primary-nav > a:not(.button):hover, .primary-nav > a.is-active { color: var(--teal-dark); }
.primary-nav > a:not(.button):hover::after, .primary-nav > a.is-active::after { right: 0; }
.nav-login { margin-left: 16px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 10px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; background: var(--navy); margin: 5px auto; transition: transform var(--transition), opacity var(--transition); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 24px; border-radius: 12px; border: 1px solid var(--navy-deep); background: var(--navy-deep); color: var(--white); font-weight: 620; box-shadow: 0 10px 24px rgba(16,43,73,.14); transition: transform var(--transition), box-shadow var(--transition), background var(--transition); }
.button:hover { transform: translateY(-2px); background: #0a3156; box-shadow: 0 15px 32px rgba(16,43,73,.22); }
.button:focus-visible, .primary-nav a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(79,159,198,.35); outline-offset: 3px; }
.button-small { min-height: 44px; padding-inline: 19px; font-size: .93rem; }
.button-secondary { background: transparent; color: var(--navy); border-color: var(--gray-300); box-shadow: none; }
.button-secondary:hover { background: var(--sage-light); color: var(--navy-deep); box-shadow: none; border-color: var(--sage); }
.full-width { width: 100%; }
.button-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin: 30px 0 26px; }
.centered-buttons { justify-content: center; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--teal-dark); font-weight: 620; }
.text-link span { transition: transform var(--transition); }
.text-link:hover span { transform: translateX(4px); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--teal-dark); text-transform: uppercase; letter-spacing: .13em; font-weight: 720; font-size: .76rem; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow-light { color: #a7d1ca; }
.lead { font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.7; }
.micro-label { display: block; text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 700; color: var(--teal-dark); }

.hero { overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; width: 540px; height: 540px; right: -180px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(167,191,167,.22), rgba(230,239,234,0) 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 80px; min-height: 650px; }
.hero-copy h1 { max-width: 720px; margin-bottom: 24px; }
.hero-copy h1 span { color: var(--teal); }
.hero-copy .lead { max-width: 670px; }
.trust-list { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; padding: 0; margin: 22px 0 0; font-size: .9rem; color: var(--gray-700); }
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list li::before { content: "✓"; width: 20px; height: 20px; border: 1px solid var(--sage); color: var(--teal-dark); border-radius: 50%; display: inline-grid; place-items: center; font-size: .72rem; }

.hero-visual { position: relative; min-width: 0; }
.dashboard-shell { border-radius: 26px; background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); overflow: hidden; transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.dashboard-topbar { height: 68px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--gray-100); background: #fcfdfc; }
.mini-brand { display: flex; align-items: center; gap: 9px; font-weight: 650; font-size: .9rem; }
.mini-brand img { width: 29px; height: 29px; }
.dashboard-user { padding: 7px 11px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 9px; font-size: .72rem; }
.dashboard-body { display: grid; grid-template-columns: 76px 1fr; min-height: 460px; }
.dashboard-sidebar { border-right: 1px solid var(--gray-100); padding: 24px 16px; display: flex; flex-direction: column; gap: 17px; background: #fbfcfb; }
.sidebar-pill { width: 42px; height: 35px; border-radius: 9px; background: var(--gray-100); }
.sidebar-pill.active { background: var(--sage-light); box-shadow: inset 4px 0 var(--teal); }
.dashboard-content { padding: 24px; min-width: 0; }
.dashboard-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dashboard-heading strong { display: block; font-size: 1.15rem; margin-top: 3px; }
.status-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 27px; padding: 0 10px; border-radius: 999px; font-size: .68rem; font-weight: 650; white-space: nowrap; }
.status-green { background: var(--green-light); color: #467c55; }
.status-amber { background: var(--amber-light); color: #a46b17; }
.status-blue { background: var(--blue-light); color: #337da3; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 15px; }
.metric-card { border: 1px solid var(--gray-100); border-radius: 14px; padding: 14px; background: var(--white); }
.metric-card span, .metric-card small { display: block; font-size: .66rem; color: var(--gray-500); }
.metric-card strong { display: block; font-size: 1.6rem; line-height: 1.1; margin: 6px 0 2px; }
.dashboard-panels { display: grid; grid-template-columns: 1.4fr .8fr; gap: 14px; }
.progress-panel, .signal-panel { border: 1px solid var(--gray-100); border-radius: 15px; padding: 16px; min-width: 0; }
.panel-title { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 16px; font-size: .7rem; }
.panel-title span { color: var(--gray-500); }
.progress-row { display: grid; grid-template-columns: 72px 1fr 34px; align-items: center; gap: 9px; font-size: .65rem; margin: 15px 0; }
.progress-row > div { height: 7px; background: var(--gray-100); border-radius: 99px; overflow: hidden; }
.progress-row i { display: block; height: 100%; background: var(--teal); border-radius: inherit; }
.progress-row b { text-align: right; color: var(--teal-dark); }
.signal-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.signal-row:last-child { border-bottom: 0; }
.signal-row strong, .signal-row small { display: block; line-height: 1.3; }
.signal-row strong { font-size: .69rem; }
.signal-row small { color: var(--gray-500); font-size: .58rem; margin-top: 2px; }
.signal-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.signal-dot.amber { background: #e7ad47; box-shadow: 0 0 0 5px var(--amber-light); }
.signal-dot.blue { background: var(--blue); box-shadow: 0 0 0 5px var(--blue-light); }
.signal-dot.green { background: var(--green); box-shadow: 0 0 0 5px var(--green-light); }
.floating-note { position: absolute; display: flex; align-items: center; gap: 13px; padding: 13px 16px; background: rgba(255,255,255,.96); border: 1px solid var(--gray-200); border-radius: 15px; box-shadow: var(--shadow-md); }
.floating-note strong, .floating-note small { display: block; line-height: 1.25; }
.floating-note strong { font-size: .78rem; }
.floating-note small { font-size: .65rem; color: var(--gray-500); margin-top: 4px; }
.note-one { right: -22px; bottom: 55px; }
.note-two { left: -38px; top: 62px; }
.note-icon { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--green-light); color: var(--green); font-weight: 800; }

.value-strip-section { padding: 24px 0 56px; }
.value-strip { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.value-strip > div { display: flex; align-items: center; gap: 16px; padding: 25px 30px; border-right: 1px solid var(--gray-200); }
.value-strip > div:last-child { border-right: 0; }
.value-strip p { margin: 0; font-size: .92rem; line-height: 1.45; }
.value-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--sage-light); color: var(--teal-dark); font-size: .72rem; font-weight: 750; }

.section-heading { max-width: 730px; margin-bottom: 50px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading p { font-size: 1.06rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card { background: var(--white); border: 1px solid rgba(24,56,91,.09); border-radius: var(--radius-md); padding: 34px; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--sage-light); color: var(--teal-dark); margin-bottom: 26px; }
.feature-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-card p { min-height: 108px; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.split-copy > p { font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 28px 0 32px; }
.check-list li { position: relative; padding-left: 34px; margin: 13px 0; color: var(--gray-700); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .08em; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--sage-light); color: var(--teal-dark); font-size: .72rem; font-weight: 800; }
.check-list.compact { margin-top: 22px; }
.check-list.compact li { font-size: .93rem; margin: 11px 0; }
.goal-card-stack { position: relative; min-height: 420px; }
.goal-card { border-radius: 20px; border: 1px solid var(--gray-200); background: var(--white); box-shadow: var(--shadow-md); }
.goal-card-main { position: absolute; z-index: 3; left: 30px; right: 30px; top: 70px; padding: 30px; }
.goal-card-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: .82rem; color: var(--teal-dark); margin-bottom: 24px; }
.goal-card-main h3 { font-size: 1.35rem; max-width: 490px; line-height: 1.35; }
.goal-progress { display: grid; grid-template-columns: 1fr 54px; align-items: center; gap: 15px; margin-top: 30px; }
.goal-progress span { height: 10px; border-radius: 99px; background: var(--gray-100); overflow: hidden; }
.goal-progress i { display: block; height: 100%; background: var(--teal); border-radius: inherit; }
.goal-progress strong { color: var(--teal-dark); }
.goal-legend { display: flex; gap: 24px; margin-top: 18px; font-size: .76rem; color: var(--gray-500); }
.goal-legend i, .chart-legend i { width: 8px; height: 8px; display: inline-block; border-radius: 50%; margin-right: 6px; }
i.green { background: var(--teal); } i.blue { background: var(--blue); }
.goal-card-back { position: absolute; z-index: 1; left: 0; right: 120px; top: 16px; padding: 18px 24px; transform: rotate(-3deg); background: var(--sage-light); }
.goal-card-back span, .goal-card-back strong, .goal-card-side span, .goal-card-side strong { display: block; }
.goal-card-back span, .goal-card-side span { font-size: .72rem; color: var(--gray-500); }
.goal-card-side { position: absolute; z-index: 4; right: 0; bottom: 18px; width: 250px; padding: 20px; background: var(--off-white); }

.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.process-intro h2 { max-width: 480px; }
.process-list { list-style: none; padding: 0; margin: 0; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.process-list li:first-child { padding-top: 0; }
.process-list li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(167,209,202,.13); border: 1px solid rgba(167,209,202,.34); color: #b9e2db; font-weight: 700; }
.process-list strong { display: block; color: #fff; margin-bottom: 5px; font-size: 1.08rem; }
.process-list p { margin: 0; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-list details { border-top: 1px solid var(--gray-200); }
.faq-list details:last-child { border-bottom: 1px solid var(--gray-200); }
.faq-list summary { list-style: none; cursor: pointer; padding: 24px 50px 24px 0; font-weight: 630; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--gray-50); color: var(--teal-dark); font-size: 1.2rem; transition: transform var(--transition); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 50px 24px 0; margin: 0; }

.section-cta { padding-top: 20px; }
.cta-panel { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; padding: 42px; border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--sage-light), #f7faf8 72%); border: 1px solid #d8e5dd; overflow: hidden; position: relative; }
.cta-panel::after { content: ""; position: absolute; right: -100px; bottom: -150px; width: 330px; height: 330px; border: 2px solid rgba(29,138,135,.12); border-radius: 50%; box-shadow: 0 0 0 40px rgba(29,138,135,.035), 0 0 0 80px rgba(29,138,135,.025); }
.cta-icon { width: 82px; height: 82px; border-radius: 20px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); z-index: 1; }
.cta-panel h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); margin-bottom: 10px; }
.cta-panel p { margin: 0; }
.cta-panel > * { position: relative; z-index: 1; }

.page-hero { background: linear-gradient(180deg, rgba(230,239,234,.45), rgba(255,255,255,0)); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 90px; align-items: center; }
.page-hero h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.page-hero-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); padding: 36px; box-shadow: var(--shadow-md); }
.overview-list { margin-top: 24px; }
.overview-list > div { display: flex; align-items: flex-start; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--gray-100); }
.overview-list > div:last-child { border-bottom: 0; }
.overview-list p { margin: 0; font-size: .95rem; }
.overview-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--sage-light); color: var(--teal-dark); font-weight: 700; font-size: .72rem; flex: 0 0 auto; }
.centered-hero { text-align: center; }
.centered-hero .eyebrow { justify-content: center; }

.product-feature-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.product-feature-grid.reverse { grid-template-columns: 1.15fr .85fr; }
.product-feature-grid.reverse .product-copy { order: 2; }
.product-feature-grid.reverse .ui-preview { order: 1; }
.product-copy > p { font-size: 1.05rem; }
.ui-preview { border-radius: 24px; background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); padding: 28px; }
.ui-preview-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--gray-100); }
.ui-preview-header span:not(.status-badge) { color: var(--gray-500); font-size: .82rem; }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; padding: 18px 0; }
.filter-chip { padding: 7px 11px; border-radius: 8px; background: var(--gray-50); border: 1px solid var(--gray-200); font-size: .72rem; color: var(--gray-700); }
.filter-chip.active { background: var(--sage-light); border-color: #cfe0d5; color: var(--teal-dark); }
.goal-list-item, .student-row { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--gray-100); }
.goal-list-item:last-child, .student-row:last-child { border-bottom: 0; }
.goal-index { width: 34px; height: 34px; display: grid; place-items: center; background: var(--gray-50); border-radius: 10px; color: var(--teal-dark); font-weight: 700; font-size: .72rem; flex: 0 0 auto; }
.goal-list-item > div, .student-row > div { flex: 1; min-width: 0; }
.goal-list-item strong, .goal-list-item small, .student-row strong, .student-row small { display: block; }
.goal-list-item strong, .student-row strong { font-size: .88rem; }
.goal-list-item small, .student-row small { color: var(--gray-500); font-size: .72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chevron { color: var(--gray-500); font-size: 1.4rem; }
.avatar { width: 37px; height: 37px; display: grid; place-items: center; color: #fff; border-radius: 50%; font-weight: 700; font-size: .75rem; flex: 0 0 auto; }
.avatar-one { background: #657e93; }.avatar-two { background: #8c7d9c; }.avatar-three { background: #6d9986; }
.preview-footer { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-top: 18px; padding: 14px; background: var(--off-white); border-radius: 12px; font-size: .76rem; }
.preview-footer span { color: var(--gray-500); }
.chart-area { position: relative; height: 250px; margin-top: 24px; border-left: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.chart-area svg { position: absolute; inset: 15px 0 0 0; width: 100%; height: calc(100% - 25px); overflow: visible; }
.grid-line { position: absolute; left: 0; right: 0; height: 1px; background: var(--gray-100); }
.grid-one { top: 25%; }.grid-two { top: 50%; }.grid-three { top: 75%; }
.chart-legend { display: flex; gap: 24px; margin-top: 18px; font-size: .76rem; color: var(--gray-500); }
.role-section { padding: 20px 0; }
.role-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.role-grid article { border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 30px; }
.role-grid article > span { color: var(--teal-dark); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.role-grid h3 { margin-top: 16px; }

.pricing-section { padding-top: 20px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.pricing-card { position: relative; border: 1px solid var(--gray-200); border-radius: 24px; background: var(--white); padding: 34px; display: flex; flex-direction: column; }
.pricing-card-featured { border-color: #9ec8bd; box-shadow: var(--shadow-md); transform: translateY(-10px); }
.plan-label { display: inline-flex; align-self: flex-start; padding: 6px 10px; background: var(--sage-light); color: var(--teal-dark); border-radius: 8px; text-transform: uppercase; letter-spacing: .11em; font-size: .67rem; font-weight: 720; margin-bottom: 20px; }
.popular-label { position: absolute; right: 22px; top: 22px; color: var(--teal-dark); font-size: .7rem; font-weight: 700; }
.pricing-card p { min-height: 80px; }
.price { padding: 20px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.price strong, .price span { display: block; }
.price strong { font-size: 1.65rem; }
.price span { color: var(--gray-500); font-size: .8rem; }
.pricing-card .button { margin-top: auto; }
.included-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.included-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.included-list > div { display: flex; gap: 14px; background: rgba(255,255,255,.8); border: 1px solid #dbe7e0; border-radius: 16px; padding: 20px; }
.included-list > div > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--sage-light); color: var(--teal-dark); font-size: .75rem; flex: 0 0 auto; }
.included-list p { margin: 0; font-size: .88rem; }

.form-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.form-intro { padding-top: 28px; position: sticky; top: 118px; }
.demo-points { margin: 36px 0; }
.demo-points > div { display: flex; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--gray-100); }
.demo-points > div > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: var(--sage-light); color: var(--teal-dark); font-weight: 700; font-size: .72rem; }
.demo-points p { margin: 0; font-size: .9rem; }
.privacy-note { padding: 18px 20px; border-radius: 15px; border: 1px solid #d9e6de; background: var(--mint); }
.privacy-note p { margin: 4px 0 0; font-size: .88rem; }
.form-card { border: 1px solid var(--gray-200); border-radius: 26px; background: var(--white); box-shadow: var(--shadow-md); padding: 38px; }
.form-card-header { margin-bottom: 25px; }
.form-card-header h2 { font-size: 2rem; margin: 6px 0 10px; }
.form-card-header p { margin: 0; }
.form-alert { background: #fff3f1; border: 1px solid #f1c9c3; border-radius: 12px; padding: 14px 18px; color: #8a3c31; margin-bottom: 22px; }
.form-alert ul { margin: 8px 0 0; padding-left: 20px; }
.field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
form label { display: block; color: var(--navy); font-size: .86rem; font-weight: 620; margin-bottom: 17px; }
input, select, textarea { display: block; width: 100%; margin-top: 7px; border: 1px solid var(--gray-300); border-radius: 11px; background: var(--white); color: var(--navy-deep); padding: 12px 13px; transition: border-color var(--transition), box-shadow var(--transition); }
input, select { min-height: 48px; }
textarea { resize: vertical; min-height: 130px; }
input:hover, select:hover, textarea:hover { border-color: #aebcc3; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(29,138,135,.1); outline: 0; }
.consent-label { display: flex; gap: 11px; align-items: flex-start; font-weight: 400; color: var(--gray-700); line-height: 1.45; }
.consent-label input { width: 18px; height: 18px; min-height: auto; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--teal); }
.consent-label a { color: var(--teal-dark); text-decoration: underline; }
.form-footnote { text-align: center; margin: 12px 0 0; font-size: .78rem; color: var(--gray-500); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-options { display: grid; gap: 12px; margin: 34px 0; }
.contact-options a { display: flex; align-items: center; gap: 14px; border: 1px solid var(--gray-200); padding: 16px; border-radius: 14px; background: var(--white); transition: border-color var(--transition), transform var(--transition); }
.contact-options a:hover { transform: translateY(-2px); border-color: var(--sage); }
.contact-options small, .contact-options strong { display: block; }
.contact-options small { color: var(--gray-500); }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--sage-light); color: var(--teal-dark); font-weight: 700; }

.privacy-hero { padding-bottom: 55px; }
.updated { color: var(--gray-500); font-size: .86rem; }
.privacy-section { padding-top: 40px; }
.privacy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 80px; align-items: start; }
.privacy-nav { position: sticky; top: 115px; display: flex; flex-direction: column; gap: 9px; padding: 20px; border-radius: 15px; background: var(--gray-50); border: 1px solid var(--gray-100); }
.privacy-nav strong { margin-bottom: 4px; }
.privacy-nav a { color: var(--gray-700); font-size: .86rem; }
.privacy-nav a:hover { color: var(--teal-dark); }
.privacy-content { max-width: 780px; }
.privacy-content section { scroll-margin-top: 110px; padding-bottom: 30px; margin-bottom: 34px; border-bottom: 1px solid var(--gray-100); }
.privacy-content h2 { font-size: 1.65rem; }
.privacy-content li { color: var(--gray-700); margin: 7px 0; }
.privacy-content address { font-style: normal; color: var(--gray-700); padding: 18px; background: var(--gray-50); border-radius: 12px; }
.privacy-content a { color: var(--teal-dark); text-decoration: underline; }
.legal-note { padding: 18px 20px; background: var(--amber-light); border: 1px solid #f1d7a7; border-radius: 14px; color: #76501a; }

.thank-you-section { min-height: 70vh; display: flex; align-items: center; background: linear-gradient(180deg, var(--mint), #fff); }
.thank-you-card { text-align: center; padding: 60px 40px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.thank-you-card .eyebrow { justify-content: center; }
.success-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: var(--green-light); color: var(--green); font-size: 2rem; font-weight: 700; }

.site-footer { margin-top: 70px; padding: 72px 0 25px; background: var(--navy-deep); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .8fr 1.25fr; gap: 50px; padding-bottom: 45px; }
.site-footer p { color: rgba(255,255,255,.66); }
.site-footer h2 { font-size: .86rem; letter-spacing: 0; margin-bottom: 18px; color: #fff; }
.site-footer a:not(.button) { display: block; color: rgba(255,255,255,.69); margin: 9px 0; font-size: .9rem; }
.site-footer a:not(.button):hover { color: #fff; }
.brand-footer { color: #fff; margin-bottom: 16px; }
.brand-footer img { background: #fff; border-radius: 12px; }
.footer-cta { padding: 22px; border-radius: 18px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.footer-cta p { font-size: .88rem; }
.footer-cta .button-secondary { color: #fff; border-color: rgba(255,255,255,.25); }
.footer-cta .button-secondary:hover { background: rgba(255,255,255,.08); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.11); }
.footer-bottom p { margin: 0; font-size: .78rem; }
.footer-bottom-meta { display: flex; align-items: center; gap: 22px; }
.site-footer .footer-inline-link { display: inline; margin: 0; font-size: inherit; color: rgba(255,255,255,.86); text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; }
.site-footer .footer-inline-link:hover { color: #fff; text-decoration-color: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero-grid { gap: 42px; }
  .note-one { right: -8px; }
  .note-two { left: -8px; }
  .split-grid, .product-feature-grid, .product-feature-grid.reverse, .form-layout { gap: 55px; }
  .footer-grid { grid-template-columns: 1.1fr .7fr .8fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section-tight { padding-top: 50px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; box-shadow: var(--shadow-md); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { padding: 12px 10px; }
  .primary-nav > a:not(.button)::after { display: none; }
  .nav-login { margin-left: 0; }
  .hero-grid, .page-hero-grid, .split-grid, .process-grid, .product-feature-grid, .product-feature-grid.reverse, .form-layout, .included-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-copy .button-row, .trust-list { justify-content: center; }
  .hero-visual { max-width: 760px; margin-inline: auto; }
  .value-strip { grid-template-columns: 1fr; }
  .value-strip > div { border-right: 0; border-bottom: 1px solid var(--gray-200); }
  .value-strip > div:last-child { border-bottom: 0; }
  .feature-grid, .role-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-card p { min-height: auto; }
  .pricing-card-featured { transform: none; }
  .product-feature-grid.reverse .product-copy, .product-feature-grid.reverse .ui-preview { order: initial; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro, .form-intro { position: static; }
  .cta-panel { grid-template-columns: auto 1fr; }
  .cta-panel .button { grid-column: 1 / -1; justify-self: start; }
  .privacy-layout { grid-template-columns: 1fr; gap: 35px; }
  .privacy-nav { position: static; display: grid; grid-template-columns: repeat(2,1fr); }
  .privacy-nav strong { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .site-header .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand { font-size: 1.18rem; }
  .brand img { width: 38px; height: 38px; }
  h1 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.75rem); }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .trust-list { flex-direction: column; align-items: flex-start; width: fit-content; margin-inline: auto; }
  .dashboard-shell { transform: none; }
  .dashboard-body { grid-template-columns: 50px 1fr; }
  .dashboard-sidebar { padding: 17px 8px; }
  .sidebar-pill { width: 32px; height: 29px; }
  .dashboard-content { padding: 14px; }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .metric-grid .metric-card:last-child { grid-column: 1 / -1; }
  .dashboard-panels { grid-template-columns: 1fr; }
  .signal-panel { display: none; }
  .floating-note { display: none; }
  .value-strip > div { padding: 20px; }
  .feature-card { padding: 26px; }
  .goal-card-stack { min-height: 390px; }
  .goal-card-main { left: 8px; right: 8px; padding: 22px; }
  .goal-card-side { width: 220px; }
  .goal-legend { flex-direction: column; gap: 7px; }
  .process-grid { gap: 45px; }
  .cta-panel { grid-template-columns: 1fr; padding: 28px; }
  .cta-icon { width: 68px; height: 68px; }
  .page-hero-card, .ui-preview, .form-card { padding: 24px; }
  .field-grid, .included-list { grid-template-columns: 1fr; }
  .goal-list-item, .student-row { align-items: flex-start; }
  .goal-list-item .status-badge, .student-row .status-badge { display: none; }
  .role-grid article, .pricing-card { padding: 26px; }
  .form-layout { gap: 42px; }
  .privacy-nav { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-bottom-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
  .thank-you-card { padding: 42px 22px; }
}
.w-68 { width: 68%; }
.w-72 { width: 72%; }
.w-76 { width: 76%; }


/* Werkelijke LeerSignaal-schermen in de bestaande websitepresentatie */
.app-screenshot-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: inherit;
  background: #f8f6f3;
  box-shadow: inherit;
}
.app-screenshot-bar {
  height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-100);
  background: rgba(255,255,255,.96);
}
.app-screenshot-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 680;
}
.app-screenshot-brand img { width: 25px; height: 25px; }
.app-screenshot-dots { display: flex; gap: 5px; }
.app-screenshot-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-200);
}
.app-screenshot-viewport {
  position: relative;
  aspect-ratio: 1200 / 920;
  overflow: hidden;
  background: #faf8f5;
}
.app-screenshot-viewport img,
.ui-preview-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-screenshot-shell-hero {
  border-radius: 26px;
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}
.app-showcase-stack { min-height: 445px; }
.app-showcase-back {
  position: absolute;
  inset: 28px 70px 38px 2px;
  border: 1px solid #cfe0d5;
  border-radius: 22px;
  background: var(--sage-light);
  transform: rotate(-3deg);
  box-shadow: var(--shadow-sm);
}
.app-screenshot-shell-stack {
  position: absolute;
  z-index: 2;
  inset: 34px 8px 10px 30px;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.ui-preview-screenshot {
  padding: 0;
  aspect-ratio: 1200 / 920;
  overflow: hidden;
  background: #faf8f5;
}

@media (max-width: 640px) {
  .app-screenshot-shell-hero { transform: none; }
  .app-screenshot-bar { height: 38px; padding-inline: 12px; }
  .app-screenshot-brand { font-size: .7rem; }
  .app-screenshot-brand img { width: 21px; height: 21px; }
  .app-showcase-stack { min-height: 335px; }
  .app-showcase-back { inset: 22px 34px 24px 0; }
  .app-screenshot-shell-stack { inset: 24px 0 0 12px; }
  .ui-preview-screenshot { padding: 0; }
}
