:root {
  color-scheme: light;
  --ink: #101827;
  --ink-soft: #2a3b52;
  --muted: #687a92;
  --line: #d9e8f3;
  --line-strong: #bfd5e8;
  --surface: #ffffff;
  --surface-soft: #f4f9fd;
  --cyan: #24b8e6;
  --teal: #2fc79d;
  --violet: #6d28d9;
  --amber: #f6a623;
  --coral: #ff7058;
  --navy: #071427;
  --shadow: 0 24px 70px rgba(19, 44, 70, 0.16);
  --soft-shadow: 0 18px 45px rgba(19, 44, 70, 0.08);
  --font: 'Atkinson Hyperlegible', 'Atkinson Hyperlegible Next', "SF Pro Display", "SF Pro Text", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  scroll-snap-type: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #f7fbff;
  font-family: var(--font);
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  min-height: 62px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(191, 213, 232, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 45px rgba(16, 24, 39, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(36, 184, 230, 0.2);
}

.brand span {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.25rem;
  font-weight: 700;
}

.brand small {
  max-width: 230px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-header nav a,
.header-login,
.header-cta,
.btn,
.hero-decision-card,
.waitlist button {
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header nav a {
  padding: 10px 12px;
}

.site-header nav a:hover {
  color: var(--ink);
  background: #eef8fc;
}

.site-header nav a.is-active {
  color: var(--ink);
  background: #e3f7ff;
}

.header-cta,
.header-login,
.btn,
.waitlist button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.header-login {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(191, 213, 232, 0.95);
}

.header-cta,
.btn-secondary {
  color: #07364b;
  background: #e5f8ff;
}

.btn-primary,
.waitlist button {
  color: #071427;
  background: linear-gradient(135deg, #78e6ff, #34d7a3 58%, #f4d35e);
  box-shadow: 0 18px 38px rgba(47, 199, 157, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.header-cta:hover,
.header-login:hover,
.btn:hover,
.hero-decision-card:hover,
.waitlist button:hover {
  transform: translateY(-2px);
}

.snap-story {
  position: relative;
}

.snap-section {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: clip;
  padding: 92px 0 44px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.compact-section {
  min-height: auto;
  padding: 108px 0 82px;
  scroll-snap-align: none;
}

.snap-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.theme-deep {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 20, 39, 0.98), rgba(13, 46, 70, 0.94) 48%, rgba(44, 22, 91, 0.95)),
    #071427;
}

.theme-paper {
  background:
    linear-gradient(135deg, #f7fcff 0%, #eef9f2 52%, #fff7eb 100%);
}

.hero-section {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(7, 20, 39, 0.99) 0%, rgba(7, 20, 39, 0.9) 42%, rgba(7, 20, 39, 0.58) 100%),
    linear-gradient(135deg, #071427 0%, #0b4664 50%, #4a238b 100%);
}

.hero-page-mark {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 32;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px;
  color: #ffffff;
  background: rgba(7, 20, 39, 0.38);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.hero-page-mark img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(36, 184, 230, 0.18);
}

.hero-page-mark span {
  display: none;
  font-weight: 700;
}

.hero-section::before,
.workflow-section::before,
.teacher-section::before,
.assessment-section::before,
.ai-section::before,
.pilot-section::before {
  background-image:
    linear-gradient(rgba(16, 24, 39, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 84px 0 32px 43vw;
  opacity: 0.82;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
}

.hero-dashboard {
  width: min(1040px, 68vw);
  min-width: 760px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(244, 249, 253, 0.86);
  box-shadow: 0 55px 140px rgba(0, 0, 0, 0.34);
  color: var(--ink);
  overflow: hidden;
  transform: translateX(4%) rotate(-1.5deg) scale(1.04);
}

.hero-product-shot {
  background: rgba(248, 252, 255, 0.92);
}

.product-shot-shell {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  min-height: 538px;
  background:
    linear-gradient(135deg, rgba(36, 184, 230, 0.08), rgba(47, 199, 157, 0.08)),
    #f8fcff;
}

.product-shot-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.product-shot-sidebar b {
  color: var(--ink);
  font-size: 1rem;
}

.product-shot-sidebar span,
.product-shot-sidebar i {
  border-radius: 999px;
  padding: 9px 11px;
  color: var(--muted);
  background: rgba(239, 248, 252, 0.84);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

.product-shot-sidebar .is-live {
  color: #075d46;
  background: #dff8ee;
}

.product-shot-main {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  grid-template-rows: auto 1fr 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.product-shot-topline {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.74);
}

.product-shot-topline span,
.product-shot-topline strong {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-shot-focus,
.product-shot-card,
.product-window {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.product-shot-focus {
  grid-row: span 3;
  padding: 22px;
}

.product-shot-focus h3 {
  max-width: 440px;
  margin: 14px 0 10px;
  font-size: 2.05rem;
  line-height: 1.02;
}

.product-shot-focus p,
.product-shot-card p {
  color: var(--muted);
  font-weight: 700;
}

.shot-progress-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.shot-progress-grid span {
  min-height: 78px;
  border-radius: 8px;
  padding: 12px;
  color: var(--muted);
  background: #f3f9fc;
  font-size: 0.8rem;
  font-weight: 700;
}

.shot-progress-grid b {
  display: block;
  color: #0b8dbb;
  font-size: 1.5rem;
}

.product-shot-card {
  padding: 16px;
}

.product-shot-card h4 {
  margin: 10px 0 6px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.1;
}

.shot-load {
  background: linear-gradient(135deg, #ffffff, #fff7e6);
}

.shot-report {
  background: linear-gradient(135deg, #ffffff, #eafff6);
}

.shot-ai {
  background: linear-gradient(135deg, #ffffff, #f3edff);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.browser-bar span:nth-child(2) {
  background: var(--amber);
}

.browser-bar span:nth-child(3) {
  background: var(--teal);
}

.browser-bar strong {
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 12px;
  padding: 14px;
}

.dash-card,
.owner-card,
.product-console,
.assessment-map,
.report-editor,
.ai-board article,
.waitlist,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.dash-card {
  min-height: 148px;
  padding: 16px;
}

.dash-card h3,
.owner-card h3,
.spend-card h3 {
  margin: 8px 0 6px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.dash-card p,
.owner-card p,
.section-copy p,
.section-heading p,
.feature-list,
.conflict-alert p,
.report-editor span,
.ai-board p,
.quote-card span,
.waitlist label span {
  color: var(--muted);
}

.planner-card {
  grid-row: span 2;
}

.budget-card {
  background: linear-gradient(135deg, #ffffff, #f3edff);
}

.chip,
.label {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #046387;
  background: #dcf6ff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.chip-green {
  color: #087153;
  background: #def9ee;
}

.chip-amber {
  color: #885400;
  background: #fff0c9;
}

.chip-violet {
  color: #5421a8;
  background: #eee5ff;
}

.meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8f0f7;
}

.meter span,
.bar-grid b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--amber));
}

.progress-row,
.teacher-row,
.route-line,
.student-strip,
.console-header,
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.progress-row {
  margin: 22px 0 8px;
  font-weight: 700;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
  text-align: center;
}

.mini-calendar span,
.mini-calendar strong {
  min-height: 26px;
  border-radius: 8px;
  background: #f3f8fc;
  font-size: 0.78rem;
}

.mini-calendar strong {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.05rem;
}

.mini-calendar .hot {
  color: #9b2517;
  background: #ffe4df;
}

.comment-line {
  width: 100%;
  height: 10px;
  margin-top: 20px;
  border-radius: 999px;
  background: #dfe9f3;
}

.comment-line.short {
  width: 62%;
  margin-top: 10px;
}

.hero-inner {
  max-width: 860px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 13px;
  color: #087aa1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.theme-deep .eyebrow,
.hero-section .eyebrow {
  color: #93ecff;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: 4.15rem;
}

h2 {
  font-size: 3.25rem;
}

.theme-deep h2,
.theme-deep .section-copy p,
.theme-deep .feature-list,
.theme-deep .quote-card span {
  color: #ffffff;
}

.hero-copy {
  width: min(570px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-decision-grid,
.compact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-decision-grid {
  width: min(860px, 100%);
  margin: 26px 0 0;
}

.hero-decision-card {
  display: grid;
  align-content: start;
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 16px;
  background: rgba(7, 20, 39, 0.48);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.hero-decision-card:hover {
  border-color: rgba(147, 236, 255, 0.74);
  background: rgba(7, 20, 39, 0.62);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.18);
}

.hero-decision-card span,
.compact-card-grid span {
  display: block;
  color: #93ecff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-decision-card strong,
.compact-card-grid strong {
  display: block;
  margin-top: 9px;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.08;
}

.hero-decision-card p,
.compact-card-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.38;
}

.hero-decision-card em {
  display: inline-flex;
  align-self: end;
  width: max-content;
  margin-top: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #071427;
  background: #93ecff;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
}

.workflow-section,
.teacher-section,
.owner-section {
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
}

.workflow-section {
  padding-top: 132px;
  background:
    linear-gradient(135deg, rgba(247, 252, 255, 0.94), rgba(238, 249, 242, 0.92) 56%, rgba(255, 247, 235, 0.94)),
    #f7fbff;
}

.section-bg-shot {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.62;
  filter: saturate(0.95);
}

.workflow-bg-shot {
  top: 128px;
  right: max(24px, calc((100vw - 1180px) / 2));
  width: min(660px, 46vw);
  transform: rotate(-2deg);
}

.teacher-bg-shot {
  top: 116px;
  right: max(12px, calc((100vw - 1180px) / 2 - 18px));
  width: min(650px, 45vw);
  transform: rotate(1.5deg);
}

.owner-bg-shot {
  top: 116px;
  right: max(12px, calc((100vw - 1180px) / 2 - 8px));
  width: min(650px, 45vw);
  transform: rotate(-1.2deg);
}

.product-window {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.mini-workflow-shot {
  min-height: 330px;
}

.workflow-lane-grid {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.workflow-lane-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f8fcff;
}

.workflow-lane-grid b,
.teacher-shot-grid h4,
.admin-shot-grid b {
  color: var(--ink);
}

.workflow-lane-grid span,
.teacher-shot-grid p {
  color: var(--muted);
  font-weight: 700;
}

.workflow-lane-grid i,
.admin-shot-grid i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--amber));
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.7fr);
  gap: 52px;
  align-items: center;
}

.workflow-proof-grid {
  display: grid;
  gap: 12px;
}

.workflow-proof-grid article {
  border: 1px solid rgba(191, 213, 232, 0.78);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.workflow-proof-grid span {
  color: #0b8dbb;
  font-size: 0.78rem;
  font-weight: 700;
}

.workflow-proof-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
}

.workflow-proof-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.teacher-product-shot,
.admin-product-shot {
  min-height: 380px;
}

.teacher-shot-grid,
.admin-shot-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  padding: 16px;
}

.teacher-shot-grid article,
.admin-shot-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f8fcff;
}

.teacher-shot-large {
  grid-row: span 2;
  min-height: 250px;
  background: linear-gradient(135deg, #ffffff, #eaf9ff) !important;
}

.teacher-shot-grid h4 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.admin-shot-grid {
  grid-template-columns: 1fr;
}

.admin-shot-grid article {
  display: grid;
  gap: 10px;
}

.admin-shot-grid b {
  font-size: 1.1rem;
}

.compact-layout {
  display: grid;
  gap: 28px;
}

.teacher-section .compact-layout,
.owner-section .compact-layout {
  max-width: 820px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  margin-right: auto;
}

.teacher-section .compact-card-grid,
.owner-section .lean-board {
  width: min(820px, 100%);
}

.compact-card-grid article {
  min-height: 194px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.compact-card-grid span {
  color: #0b8dbb;
}

.compact-card-grid strong {
  color: var(--ink);
  font-size: 1.45rem;
}

.compact-card-grid p {
  color: var(--muted);
  font-size: 1rem;
}

.lean-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sticky-grid-section {
  position: relative;
  z-index: 0;
  min-height: 360svh;
  background:
    linear-gradient(135deg, rgba(247, 252, 255, 0.92), rgba(238, 249, 242, 0.92) 56%, rgba(255, 247, 235, 0.92)),
    #f7fbff;
}

.teacher-section,
.assessment-section,
.ai-section,
.pilot-section {
  background-color: #f7fbff;
}

.sticky-grid-shell {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: clip;
  padding: 96px 24px 42px;
}

.sticky-grid-shell::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 24, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

.sticky-grid-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(670px, calc(100% - 32px));
  border: 1px solid rgba(191, 213, 232, 0.72);
  border-radius: 8px;
  padding: 34px 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 253, 0.9));
  box-shadow: 0 22px 70px rgba(19, 44, 70, 0.1);
  backdrop-filter: blur(16px);
  text-align: center;
}

.sticky-grid-copy::before {
  display: none;
}

.sticky-grid-copy h2 {
  max-width: 680px;
  color: var(--ink);
}

.sticky-grid-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.sticky-grid-copy .btn {
  margin-top: 26px;
}

.sticky-gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(900px, 72vw);
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
}

.sticky-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  will-change: transform;
}

.value-tile {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 206px;
  overflow: hidden;
  border: 1px solid rgba(191, 213, 232, 0.88);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
  will-change: transform, opacity;
}

.value-tile::after {
  position: absolute;
  inset: auto -24px -48px auto;
  width: 112px;
  height: 112px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(36, 184, 230, 0.22), rgba(47, 199, 157, 0.2));
  transform: rotate(18deg);
  content: "";
}

.value-tile span {
  position: relative;
  z-index: 1;
  width: max-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: #046387;
  background: #dcf6ff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.value-tile strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.12;
}

.value-tile p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.tile-lines,
.tile-week,
.tile-grid-mini,
.tile-meter {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin-top: 22px;
}

.tile-lines i,
.tile-grid-mini i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #dbeaf4;
}

.tile-lines i:nth-child(2) {
  width: 74%;
}

.tile-lines i:nth-child(3) {
  width: 52%;
}

.tile-score,
.tile-profile,
.tile-alert,
.tile-language,
.tile-points {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-top: 22px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--teal), var(--violet));
  font-size: 1.45rem;
  font-weight: 700;
}

.tile-week {
  grid-template-columns: repeat(3, 1fr);
}

.tile-week b {
  display: grid;
  min-height: 40px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: #f1f7fb;
}

.tile-week .hot {
  color: #a22b20;
  background: #ffe2dc;
}

.tile-grid-mini {
  grid-template-columns: repeat(2, 1fr);
}

.tile-grid-mini i {
  height: 28px;
  border-radius: 8px;
}

.tile-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8f0f7;
}

.tile-meter i {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--amber));
}

.tile-toggle {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 38px;
  margin-top: 24px;
  border-radius: 999px;
  background: #dff8ef;
}

.tile-toggle i {
  display: block;
  width: 30px;
  height: 30px;
  margin: 4px 4px 4px auto;
  border-radius: 50%;
  background: var(--teal);
}

.tile-lock {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 42px;
  margin-top: 26px;
  border-radius: 10px;
  background: #dff6ff;
}

.tile-lock::before {
  position: absolute;
  left: 14px;
  top: -17px;
  width: 26px;
  height: 25px;
  border: 6px solid #24b8e6;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  content: "";
}

.tile-rubric::after,
.tile-report::after {
  background: linear-gradient(135deg, rgba(246, 166, 35, 0.22), rgba(255, 112, 88, 0.18));
}

.tile-calendar::after,
.tile-ai::after,
.tile-modules::after {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.18), rgba(36, 184, 230, 0.16));
}

.tile-bilingual::after,
.tile-house::after {
  background: linear-gradient(135deg, rgba(47, 199, 157, 0.2), rgba(246, 166, 35, 0.22));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 42px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(420px, 1.16fr) minmax(0, 0.84fr);
}

.section-copy {
  min-width: 0;
}

.section-copy p,
.section-heading p {
  max-width: 720px;
  margin: 14px 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 0 0 5px rgba(36, 184, 230, 0.12);
  content: "";
}

.product-console {
  overflow: hidden;
  background: #ffffff;
}

.console-header,
.map-header {
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f6fbff;
}

.console-header strong,
.map-header strong {
  font-size: 1.02rem;
}

.console-header em,
.map-header span {
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 700;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(47, 199, 157, 0.16);
}

.ai-interview {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.ai-interview article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: #ffffff;
}

.ai-interview article.active {
  border-color: #8edff5;
  background: linear-gradient(135deg, #f0fbff, #f7fff9);
}

.ai-interview article span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: #064c65;
  background: #dff6ff;
  font-weight: 700;
}

.ai-interview p {
  margin: 5px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.unit-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.unit-flow span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--ink-soft);
  background: #ffffff;
  font-weight: 700;
  text-align: center;
}

.section-heading {
  width: min(850px, 100%);
}

.owner-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
  margin-top: 24px;
}

.owner-card {
  min-height: 164px;
  padding: 18px;
}

.owner-card.large {
  grid-row: span 2;
  min-height: 350px;
  background:
    linear-gradient(135deg, rgba(36, 184, 230, 0.12), rgba(47, 199, 157, 0.1)),
    #ffffff;
}

.owner-score {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 18px 0;
}

.owner-score strong {
  font-size: 4.2rem;
  line-height: 0.88;
}

.owner-score span {
  max-width: 160px;
  color: var(--muted);
  font-weight: 700;
}

.bar-grid {
  display: grid;
  gap: 11px;
}

.bar-grid div {
  display: grid;
  gap: 7px;
  position: relative;
}

.bar-grid span {
  color: var(--ink-soft);
  font-weight: 700;
}

.bar-grid div::before {
  display: block;
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7f0f7;
  content: "";
}

.bar-grid b {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 2;
  height: 9px;
  margin-top: 0;
}

.assessment-section {
  background: linear-gradient(135deg, #f6fbff, #fffaf2);
}

.assessment-map {
  overflow: hidden;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
}

.week-grid article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
}

.week-grid article span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.week-grid article strong {
  display: block;
  margin-top: 14px;
  font-size: 2.65rem;
  line-height: 1;
}

.week-grid article p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.week-grid article.overload {
  border-color: #ffad9f;
  background: linear-gradient(180deg, #fff, #fff1ee);
}

.week-grid article.overload strong,
.week-grid article.overload span {
  color: #b93425;
}

.conflict-alert {
  margin: 0 18px 18px;
  border: 1px solid #ffbd8a;
  border-radius: 8px;
  padding: 14px;
  background: #fff7e8;
}

.conflict-alert strong {
  color: #87510a;
}

.conflict-alert p {
  margin: 6px 0 0;
  font-weight: 700;
}

.report-editor {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.student-strip {
  justify-content: flex-start;
}

.avatar {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan), var(--violet));
  font-weight: 700;
}

.student-strip span {
  display: block;
  margin-top: 3px;
  font-size: 0.88rem;
  font-weight: 700;
}

.report-editor label {
  display: grid;
  gap: 10px;
}

.report-editor label span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.report-editor textarea {
  width: 100%;
  min-height: 178px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--ink);
  background: #f8fcff;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
}

.evidence-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.evidence-row article {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
}

.evidence-row strong {
  display: block;
  font-size: 1.5rem;
}

.evidence-row span {
  display: block;
  margin-top: 6px;
  font-weight: 700;
}

.ai-section {
  background: linear-gradient(135deg, #f4fbff, #f8fff7 54%, #fff7ef);
}

.ai-board {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 14px;
  margin-top: 24px;
}

.ai-board article {
  min-height: 240px;
  padding: 20px;
}

.spend-card h3 {
  font-size: 2.55rem;
}

.spend-card .meter {
  margin: 22px 0 10px;
}

.route-line,
.teacher-row {
  min-height: 56px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f9fcff;
}

.route-line span {
  color: #087aa1;
  font-size: 0.84rem;
  font-weight: 700;
}

.teacher-row strong {
  border-radius: 999px;
  padding: 6px 10px;
  color: #ad2b1e;
  background: #ffe6e1;
  font-size: 0.78rem;
}

.teacher-row strong.warning {
  color: #8b5600;
  background: #fff0ca;
}

.teacher-row strong.active {
  color: #087153;
  background: #ddf8ed;
}

.module-switchboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.module-switchboard article {
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.module-switchboard .module-on {
  border-color: rgba(122, 232, 255, 0.44);
  background: rgba(122, 232, 255, 0.14);
}

.module-switchboard span {
  display: block;
  color: #93ecff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.module-switchboard strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.16;
}

.quote-card {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.11);
}

.quote-card strong {
  color: #ffffff;
  font-size: 1.2rem;
}

.pilot-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 251, 255, 0.94)),
    #f6fbff;
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 58px;
  align-items: center;
}

.pilot-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.pilot-steps span {
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
  color: var(--ink-soft);
  font-weight: 700;
  box-shadow: var(--soft-shadow);
}

.waitlist {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.waitlist img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
}

.waitlist h3 {
  margin: 0;
  font-size: 1.6rem;
}

.waitlist label {
  display: grid;
  gap: 8px;
}

.waitlist label span {
  font-size: 0.86rem;
  font-weight: 700;
}

.waitlist input,
.waitlist select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #f8fcff;
}

.waitlist button {
  width: 100%;
}

.snap-progress {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 4px;
  overflow: hidden;
  background: rgba(16, 24, 39, 0.08);
}

.snap-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--amber), var(--violet));
  transform-origin: left;
}

.reveal {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .snap-section {
    scroll-snap-align: none;
  }
}

@media (max-width: 1080px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .site-header nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 3.15rem;
  }

  .snap-section {
    min-height: auto;
    overflow: visible;
  }

  .hero-section {
    min-height: 100svh;
    overflow: clip;
  }

  .hero-page-mark {
    display: none;
  }

  .hero-backdrop {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 106px 0 0 18vw;
    opacity: 0.22;
    mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
  }

  .hero-dashboard {
    width: 800px;
    min-width: 800px;
    transform: translateX(18%) rotate(-1deg) scale(0.86);
  }

  .workflow-section,
  .teacher-section,
  .owner-section {
    min-height: auto;
    overflow: clip;
  }

  .section-bg-shot {
    display: block;
    opacity: 0.26;
  }

  .workflow-bg-shot,
  .teacher-bg-shot,
  .owner-bg-shot {
    top: 96px;
    right: -148px;
    width: 640px;
    transform: rotate(-1deg);
  }

  .teacher-section .compact-layout,
  .owner-section .compact-layout {
    max-width: min(820px, calc(100% - 48px));
    margin-inline: auto;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-proof-grid {
    width: min(720px, 100%);
  }

  .sticky-grid-section {
    min-height: auto;
  }

  .sticky-grid-shell {
    position: relative;
    min-height: auto;
    overflow: visible;
    padding: 104px 24px 56px;
  }

  .sticky-grid-copy {
    margin-bottom: 34px;
  }

  .sticky-grid-copy::before {
    display: none;
  }

  .sticky-gallery {
    position: relative;
    top: auto;
    left: auto;
    width: min(920px, 100%);
    transform: none;
    pointer-events: auto;
  }

  .sticky-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-tile {
    min-height: 188px;
  }

  .split-layout,
  .split-layout.reverse,
  .pilot-layout {
    grid-template-columns: 1fr;
  }

  .owner-board,
  .lean-board,
  .ai-board {
    grid-template-columns: 1fr;
  }

  .owner-card.large {
    min-height: 0;
  }
}

@media (max-height: 820px) and (min-width: 1081px) {
  .snap-section {
    padding-top: 84px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-copy,
  .section-copy p,
  .section-heading p {
    font-size: 0.96rem;
  }

  .hero-decision-card {
    min-height: 70px;
    padding: 12px;
  }

  .hero-decision-card strong {
    font-size: 1.16rem;
  }

  .owner-card {
    min-height: 142px;
    padding: 16px;
  }

  .owner-card.large {
    min-height: 306px;
  }

  .week-grid article {
    min-height: 164px;
  }

  .report-editor textarea {
    min-height: 150px;
  }

  .ai-board article {
    min-height: 214px;
  }
}

@media (max-width: 780px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    top: 10px;
    width: min(100% - 20px, 1180px);
  }

  .brand small {
    display: none;
  }

  .header-login,
  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .snap-section {
    min-height: auto;
    overflow: visible;
    padding: 92px 0 42px;
    scroll-snap-align: none;
  }

  .hero-section,
  .workflow-section,
  .teacher-section,
  .owner-section {
    overflow: clip;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero-inner {
    margin-inline: auto;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-copy,
  .section-copy p,
  .section-heading p {
    font-size: 1rem;
  }

  .hero-decision-grid,
  .compact-card-grid,
  .week-grid,
  .evidence-row,
  .pilot-steps,
  .module-switchboard,
  .sticky-gallery__grid,
  .unit-flow {
    grid-template-columns: 1fr;
  }

  .hero-decision-card,
  .compact-card-grid article {
    min-height: 0;
  }

  .hero-backdrop {
    padding: 112px 0 0 18vw;
    opacity: 0.18;
  }

  .hero-dashboard {
    width: 680px;
    min-width: 680px;
    transform: translateX(22%) rotate(-1deg) scale(0.74);
  }

  .section-bg-shot {
    opacity: 0.2;
  }

  .workflow-bg-shot,
  .teacher-bg-shot,
  .owner-bg-shot {
    top: 112px;
    right: -260px;
    width: 620px;
  }

  .product-console,
  .assessment-map,
  .report-editor,
  .owner-board,
  .lean-board,
  .ai-board,
  .module-switchboard,
  .waitlist {
    max-width: 100%;
  }

  .week-grid article {
    min-height: 150px;
  }

  .spend-card h3,
  .owner-score strong {
    font-size: 2.8rem;
  }

  .snap-progress {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 56px;
    padding: 7px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .header-cta {
    display: none;
  }

  .header-login {
    min-height: 38px;
    padding: 0 14px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .ai-interview article {
    grid-template-columns: 1fr;
  }

  .progress-row,
  .teacher-row,
  .route-line,
  .student-strip,
  .console-header,
  .map-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-editor textarea {
    min-height: 210px;
  }
}
