:root {
  --ink: #102332;
  --ink-deep: #071a2b;
  --navy: #0a263d;
  --navy-soft: #123852;
  --blue: #2d69a0;
  --blue-bright: #3f8dcc;
  --blue-pale: #dcecf8;
  --gold: #e9a23b;
  --gold-pale: #fff0d4;
  --mint: #55b88d;
  --mint-pale: #def5eb;
  --coral: #e7796d;
  --paper: #f7f7f2;
  --paper-warm: #f4f1e9;
  --white: #fff;
  --muted: #667784;
  --line: rgba(16, 35, 50, 0.12);
  --shadow-sm: 0 10px 30px rgba(10, 38, 61, 0.08);
  --shadow-md: 0 24px 70px rgba(8, 31, 51, 0.13);
  --shadow-lg: 0 36px 100px rgba(7, 26, 43, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1240px;
  --header-height: 82px;
  --ease-out: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(63, 141, 204, .5);
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 560px;
  height: 560px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .16;
}

.ambient--one {
  top: -220px;
  right: -180px;
  background: var(--blue-bright);
}

.ambient--two {
  top: 720px;
  left: -330px;
  background: var(--gold);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .icon {
  transition: transform .25s var(--ease-out);
}

.button:hover .icon {
  transform: translateX(3px);
}

a[href],
button:not(:disabled),
summary {
  cursor: pointer;
}

button:disabled { cursor: not-allowed; }

.hero-visual,
.trust-ribbon-inner,
.essential-card,
.essentials-action,
.eyebrow,
.hero-assurances,
.video-modal-head,
.video-modal-foot > span {
  cursor: default;
}

.button--small {
  min-height: 46px;
  padding: 11px 17px;
  border-radius: 13px;
  font-size: 13px;
}

.button--dark {
  color: var(--white);
  background: var(--ink-deep);
  box-shadow: 0 12px 26px rgba(7, 26, 43, .17);
}

.button--dark:hover {
  background: #123954;
  box-shadow: 0 16px 32px rgba(7, 26, 43, .22);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #367fba);
  box-shadow: 0 16px 34px rgba(45, 105, 160, .26), inset 0 1px rgba(255, 255, 255, .2);
}

.button--primary:hover {
  box-shadow: 0 21px 42px rgba(45, 105, 160, .33), inset 0 1px rgba(255, 255, 255, .2);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .68);
  border-color: rgba(16, 35, 50, .13);
  box-shadow: 0 10px 30px rgba(10, 38, 61, .05);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: var(--white);
  border-color: rgba(45, 105, 160, .3);
}

.button--wide {
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease-out), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(248, 248, 244, .89);
  border-color: rgba(16, 35, 50, .09);
  box-shadow: 0 10px 36px rgba(7, 26, 43, .06);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: 142px;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: #455968;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--ink-deep);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav .nav-video-link {
  padding: 7px 12px;
  color: #81520f;
  background: var(--gold-pale);
  border: 1px solid rgba(233, 162, 59, .28);
  border-radius: 999px;
}
.desktop-nav .nav-video-link::after { display: none; }
.desktop-nav .nav-video-link:hover { color: #6b4208; background: #ffe6b7; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 890px;
  padding: calc(var(--header-height) + 90px) 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 32%, rgba(63, 141, 204, .13), transparent 30%),
    linear-gradient(180deg, #fafaf7 0%, #f4f5f1 100%);
}

.hero::after {
  position: absolute;
  right: -14%;
  bottom: -24%;
  width: 70%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(233, 162, 59, .12), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-grid,
.contact-grid,
.video-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 35, 50, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 50, .032) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 90%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, .86fr) minmax(600px, 1.3fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  padding-bottom: 20px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 100%;
  padding: 9px 13px 9px 10px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(45, 105, 160, .15);
  border-radius: 999px;
  box-shadow: 0 7px 24px rgba(45, 105, 160, .07);
}

.eyebrow > span:last-child {
  min-width: 0;
}

.eyebrow-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(85, 184, 141, .14);
}

.eyebrow-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(85, 184, 141, .35);
  border-radius: 50%;
  content: "";
  animation: pulse 2s infinite;
}

.hero h1,
.section-heading h2,
.confidence-copy h2,
.security-copy h2,
.founder-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 24px 0 25px;
  color: var(--ink-deep);
  font-family: "Manrope", sans-serif;
  font-size: clamp(53px, 5.3vw, 78px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .99;
}

.hero h1 span,
.section-heading h2 span,
.confidence-copy h2 span,
.security-copy h2 span,
.founder-copy h2 span,
.faq-intro h2 span,
.contact-copy h2 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 32px;
  color: #536775;
  font-size: 18px;
  line-height: 1.72;
}

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

.hero-call-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: #526b7b;
  font-size: 11px;
  font-weight: 700;
}

.hero-call-link .icon { width: 15px; height: 15px; color: var(--blue); }
.hero-call-link:hover { color: var(--blue); }

.play-dot {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 50%;
}

.play-dot .icon {
  width: 12px;
  height: 12px;
  margin-left: 2px;
  fill: currentColor;
  stroke: none;
}

.button--video .play-dot {
  color: #a46916;
  background: var(--gold-pale);
}

.button--video:hover {
  border-color: rgba(233, 162, 59, .38);
  box-shadow: 0 14px 32px rgba(145, 91, 17, .12);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 25px 0 0;
  padding: 0;
  color: #667984;
  font-size: 12px;
  font-weight: 600;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-assurances .icon {
  color: var(--mint);
  stroke-width: 2.5;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 630px;
  isolation: isolate;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
}

.visual-glow {
  position: absolute;
  top: 22%;
  right: 4%;
  width: 75%;
  height: 62%;
  background: radial-gradient(ellipse, rgba(45, 105, 160, .24), rgba(233, 162, 59, .09) 45%, transparent 72%);
  filter: blur(34px);
}

.dashboard-window {
  position: absolute;
  top: 50px;
  right: 20px;
  z-index: 1;
  width: min(680px, 94%);
  overflow: hidden;
  background: #edf1f4;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 22px;
  box-shadow: 0 38px 100px rgba(7, 26, 43, .25), 0 8px 20px rgba(7, 26, 43, .1);
  transform: perspective(1200px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transform-origin: 50% 70%;
  transition: transform .3s var(--ease-out);
}

.window-bar {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  height: 43px;
  align-items: center;
  padding: 0 13px;
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid #dfe6eb;
}

.traffic-lights {
  display: flex;
  gap: 5px;
}

.traffic-lights span {
  width: 8px;
  height: 8px;
  background: #f3c863;
  border-radius: 50%;
}

.traffic-lights span:first-child { background: #ef756d; }
.traffic-lights span:last-child { background: #61c28e; }

.window-address {
  justify-self: center;
  display: flex;
  min-width: 210px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 13px;
  color: #8a98a1;
  background: #f1f4f6;
  border-radius: 7px;
  font-size: 8px;
}

.lock-dot {
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
}

.demo-badge {
  padding: 4px 7px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 440px;
}

.mock-sidebar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 9px;
  background: var(--ink-deep);
  flex-direction: column;
}

.mock-sidebar img {
  width: 29px;
  height: 29px;
  margin-bottom: 9px;
  border-radius: 8px;
}

.side-item {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: rgba(255, 255, 255, .45);
  border-radius: 8px;
}

.side-item .icon { width: 13px; height: 13px; }

.side-item.is-active {
  color: var(--white);
  background: rgba(63, 141, 204, .35);
  box-shadow: inset 2px 0 var(--blue-bright);
}

.dashboard-content {
  padding: 17px 17px 19px;
}

.mock-heading-row,
.card-heading,
.student-top,
.phone-brand,
.phone-status,
.phone-section-title,
.phone-course {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-heading-row {
  margin-bottom: 14px;
}

.mock-heading-row > div:first-child {
  display: flex;
  flex-direction: column;
}

.mock-kicker {
  color: #8a99a4;
  font-size: 7px;
}

.mock-heading-row strong {
  color: var(--ink-deep);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1.25;
}

.mock-user {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-user span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), #6fa8d5);
  border-radius: 50%;
  font-size: 7px;
  font-weight: 800;
}

.mock-user i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border: 2px solid #edf1f4;
  border-radius: 50%;
  transform: translate(-11px, 10px);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.metric-card {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  min-height: 74px;
  gap: 8px;
  padding: 11px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 35, 50, .06);
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(7, 26, 43, .045);
}

.metric-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: currentColor;
  border-radius: 0 0 0 40px;
  content: "";
  opacity: .05;
}

.metric-card--blue { color: var(--blue); }
.metric-card--gold { color: var(--gold); }
.metric-card--mint { color: var(--mint); }

.metric-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: currentColor;
  border-radius: 9px;
}

.metric-icon .icon {
  width: 13px;
  height: 13px;
  color: var(--white);
}

.metric-card > div {
  display: flex;
  flex-direction: column;
}

.metric-card small {
  color: #8c99a2;
  font-size: 7px;
}

.metric-card strong {
  color: var(--ink-deep);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.metric-card em {
  position: absolute;
  right: 8px;
  bottom: 7px;
  color: currentColor;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.45fr .82fr;
  gap: 9px;
  margin-top: 9px;
}

.chart-card,
.activity-card {
  min-height: 258px;
  padding: 13px;
  background: var(--white);
  border: 1px solid rgba(16, 35, 50, .06);
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(7, 26, 43, .045);
}

.card-heading > div {
  display: flex;
  flex-direction: column;
}

.card-heading small {
  color: #9aa7af;
  font-size: 6px;
  text-transform: uppercase;
}

.card-heading strong {
  color: var(--ink-deep);
  font-family: "Manrope", sans-serif;
  font-size: 9px;
}

.card-heading > span {
  padding: 4px 6px;
  color: #85939d;
  background: #f2f4f6;
  border-radius: 5px;
  font-size: 6px;
}

.chart-summary {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 17px;
}

.chart-summary strong {
  color: var(--ink-deep);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.chart-summary span {
  color: var(--mint);
  font-size: 7px;
  font-weight: 700;
}

.chart-summary i {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--mint);
  border-radius: 50%;
}

.bar-chart {
  position: relative;
  display: grid;
  height: 125px;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 7px;
  margin-top: 13px;
  padding-top: 10px;
  border-bottom: 1px solid #e8edf0;
  background: repeating-linear-gradient(to bottom, #edf1f3 0 1px, transparent 1px 37px);
}

.bar-column {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: end;
  flex-direction: column;
}

.bar-column i {
  width: 11px;
  height: var(--bar);
  min-height: 10px;
  background: linear-gradient(180deg, #73b0dc, var(--blue));
  border-radius: 4px 4px 2px 2px;
  transform-origin: bottom;
  animation: grow-bar 1s var(--ease-out) both;
}

.bar-column.is-current i {
  background: linear-gradient(180deg, #f5c16f, var(--gold));
  box-shadow: 0 5px 12px rgba(233, 162, 59, .24);
}

.bar-column small {
  margin-top: 5px;
  color: #9ba7af;
  font-size: 5px;
}

.live-dot {
  color: var(--mint) !important;
  background: var(--mint-pale) !important;
}

.activity-card ul {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.activity-card li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  border-top: 1px solid #edf0f2;
}

.activity-card li:first-child { border-top: 0; }

.activity-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 8px;
}

.activity-icon--green { color: var(--mint); background: var(--mint-pale); }
.activity-icon--gold { color: var(--gold); background: var(--gold-pale); }
.activity-icon .icon { width: 11px; height: 11px; }

.activity-card li > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.activity-card li strong {
  overflow: hidden;
  color: var(--ink-deep);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-card li small {
  color: #98a5ad;
  font-size: 6px;
}

.phone-mockup {
  position: absolute;
  right: -7px;
  bottom: 10px;
  z-index: 4;
  width: 210px;
  height: 433px;
  padding: 7px;
  background: #061725;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 35px;
  box-shadow: 0 35px 75px rgba(7, 26, 43, .36), inset 0 0 0 1px rgba(255, 255, 255, .1);
  transform: rotate(3.6deg);
  animation: phone-float 6s ease-in-out infinite;
}

.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 63px;
  height: 17px;
  background: #061725;
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  padding: 9px 10px 48px;
  overflow: hidden;
  background: #f1f3f7;
  border-radius: 28px;
}

.phone-status {
  padding: 0 5px 5px;
  color: #283c49;
  font-size: 5px;
}

.phone-status span { letter-spacing: 1px; }

.phone-brand {
  justify-content: flex-start;
  gap: 5px;
  padding-top: 3px;
}

.phone-brand img { width: 23px; height: 23px; border-radius: 6px; }
.phone-brand strong { font-family: "Manrope", sans-serif; font-size: 9px; }

.avatar-mini {
  display: grid;
  width: 21px;
  height: 21px;
  margin-left: auto;
  place-items: center;
  color: #667984;
  background: var(--white);
  border-radius: 50%;
}

.avatar-mini .icon { width: 9px; height: 9px; }

.phone-welcome {
  display: flex;
  margin: 14px 2px 9px;
  flex-direction: column;
}

.phone-welcome small { color: #929fa8; font-size: 6px; }
.phone-welcome strong { color: var(--ink-deep); font-family: "Manrope", sans-serif; font-size: 11px; }

.student-card {
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(16, 35, 50, .05);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(16, 35, 50, .07);
}

.student-top { gap: 7px; }

.student-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #9b6b1d;
  background: var(--gold-pale);
  border-radius: 50%;
  font-size: 7px;
  font-weight: 800;
}

.student-top div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.student-top strong { color: var(--ink-deep); font-size: 8px; }
.student-top small { color: #93a0a8; font-size: 6px; }
.student-top b { color: #99a5ad; font-size: 14px; font-weight: 400; }

.student-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 9px;
}

.student-actions span {
  padding: 5px 2px;
  color: #6d7e89;
  background: #f5f6f8;
  border-radius: 6px;
  font-size: 5px;
  text-align: center;
}

.student-actions i {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.phone-section-title {
  margin: 13px 2px 6px;
}

.phone-section-title strong { font-size: 8px; }
.phone-section-title small { color: var(--blue); font-size: 5px; }

.phone-course {
  justify-content: flex-start;
  gap: 6px;
  margin-top: 5px;
  padding: 8px;
  background: var(--white);
  border-radius: 9px;
}

.phone-course time { width: 26px; color: var(--ink-deep); font-size: 6px; font-weight: 800; }
.phone-course > i { width: 2px; height: 24px; background: var(--blue); border-radius: 2px; }
.phone-course > i.gold { background: var(--gold); }

.phone-course div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.phone-course strong { font-size: 6px; }
.phone-course small { color: #96a3aa; font-size: 5px; }
.phone-course > span { color: #9ba6ad; font-size: 9px; }
.phone-course .done-check { display: grid; width: 14px; height: 14px; place-items: center; color: var(--mint); background: var(--mint-pale); border-radius: 50%; font-size: 6px; }

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 43px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid #e9edf0;
}

.phone-nav span {
  display: flex;
  align-items: center;
  gap: 1px;
  color: #a0abb2;
  flex-direction: column;
}

.phone-nav .is-active { color: var(--blue); }
.phone-nav .icon { width: 10px; height: 10px; }
.phone-nav small { font-size: 4px; }

.floating-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 13px;
  box-shadow: 0 18px 45px rgba(7, 26, 43, .17);
  backdrop-filter: blur(14px);
}

.floating-note--top {
  top: 20px;
  right: 1px;
  animation: note-float 5s ease-in-out infinite;
}

.floating-note--bottom {
  bottom: 38px;
  left: 14px;
  animation: note-float 5.5s 1s ease-in-out infinite;
}

.note-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 9px;
}

.note-icon .icon { width: 13px; height: 13px; }

.floating-note > div {
  display: flex;
  flex-direction: column;
}

.floating-note small { color: #91a0a9; font-size: 6px; }
.floating-note strong { color: var(--ink-deep); font-size: 8px; }

.note-check {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: var(--white);
  background: var(--mint);
  border-radius: 50%;
  font-size: 7px;
}

.pulse-ring {
  position: relative;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  background: var(--mint-pale);
  border-radius: 50%;
}

.pulse-ring i {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(85, 184, 141, .18);
}

.trust-ribbon {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--ink-deep);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.trust-ribbon-inner {
  display: grid;
  min-height: 112px;
  grid-template-columns: 1fr 1.5fr auto;
  align-items: center;
  gap: 40px;
}

.trust-ribbon-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.45;
}

.trust-ribbon-inner > p strong { color: var(--white); font-size: 14px; }

.trust-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.trust-flow span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.trust-flow span .icon { color: #7eb4dc; }

.trust-flow > i {
  position: relative;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 180, 220, .25), #7eb4dc, rgba(126, 180, 220, .25));
}

.trust-flow > i::after {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--blue-bright);
  border-radius: 50%;
  content: "";
  animation: flow-dot 2.4s linear infinite;
}

.trust-mini {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar-stack { display: flex; }
.avatar-stack i { display: grid; width: 27px; height: 27px; margin-left: -7px; place-items: center; color: var(--white); background: var(--blue); border: 2px solid var(--ink-deep); border-radius: 50%; font-size: 7px; font-style: normal; font-weight: 800; }
.avatar-stack i:first-child { margin-left: 0; background: var(--gold); }
.avatar-stack i:last-child { background: var(--mint); }
.trust-mini p { display: flex; margin: 0; flex-direction: column; line-height: 1.25; }
.trust-mini strong { font-size: 10px; }
.trust-mini small { color: rgba(255, 255, 255, .5); font-size: 8px; }

.section {
  position: relative;
  padding: 126px 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 65px;
}

.section-heading h2,
.confidence-copy h2,
.security-copy h2,
.founder-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(39px, 4.3vw, 61px);
  line-height: 1.06;
}

.section-heading--split > p,
.section-heading--center > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading--center .section-label { justify-content: center; }
.section-heading--center h2 { margin: 16px 0 20px; }
.section-label--light { color: #83c3f0; }
.section-heading--light h2 { color: var(--white); }
.section-heading--light h2 span { color: #83c3f0; }
.section-heading--light p { color: rgba(255, 255, 255, .58); }

.section--outcomes {
  overflow: hidden;
  background: var(--paper);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.outcome-card {
  position: relative;
  min-height: 410px;
  grid-column: span 5;
  padding: 33px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 35, 50, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.outcome-card--wide {
  display: grid;
  grid-column: span 7;
  grid-template-columns: .88fr 1.12fr;
  gap: 24px;
}

.outcome-card--dark {
  color: var(--white);
  background: var(--ink-deep);
  border-color: rgba(255, 255, 255, .06);
}

.outcome-card--gold {
  background: linear-gradient(145deg, #f5b858, var(--gold));
  border-color: rgba(255, 255, 255, .3);
}

.outcome-card--family {
  background: #edf6fb;
}

.card-number {
  position: absolute;
  top: 27px;
  right: 30px;
  color: rgba(16, 35, 50, .27);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.outcome-card--dark .card-number { color: rgba(255, 255, 255, .32); }

.icon-box {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 13px;
}

.icon-box .icon { width: 20px; height: 20px; }
.icon-box--blue { color: var(--blue); background: var(--blue-pale); }
.icon-box--gold { color: var(--gold); background: rgba(233, 162, 59, .15); }
.icon-box--ink { color: var(--white); background: var(--ink-deep); }
.icon-box--mint { color: var(--mint); background: var(--mint-pale); }

.outcome-card h3 {
  max-width: 420px;
  margin-bottom: 14px;
  color: var(--ink-deep);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.outcome-card--dark h3 { color: var(--white); }

.outcome-card p {
  max-width: 440px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.outcome-card--dark p { color: rgba(255, 255, 255, .55); }
.outcome-card--gold p { color: rgba(16, 35, 50, .7); }

.outcome-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.outcome-card a .icon { transition: transform .2s ease; }
.outcome-card a:hover .icon { transform: translateX(4px); }

.mini-dashboard {
  position: relative;
  align-self: end;
  height: 280px;
  padding: 18px;
  overflow: hidden;
  background: #f1f4f6;
  border: 1px solid rgba(16, 35, 50, .07);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(7, 26, 43, .09);
  transform: translate(15px, 26px) rotate(-2deg);
}

.mini-head { display: flex; justify-content: space-between; }
.mini-head span { width: 64px; height: 7px; background: #ccd6dc; border-radius: 5px; }
.mini-head span:last-child { width: 34px; background: var(--blue-pale); }
.mini-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 18px; }
.mini-kpis i { height: 49px; background: var(--white); border-radius: 9px; box-shadow: 0 5px 12px rgba(7, 26, 43, .05); }
.mini-kpis i:nth-child(2) { border-top: 3px solid var(--gold); }
.mini-kpis i:first-child { border-top: 3px solid var(--blue); }
.mini-kpis i:last-child { border-top: 3px solid var(--mint); }

.mini-chart {
  display: flex;
  height: 145px;
  align-items: end;
  gap: 9px;
  margin-top: 14px;
  padding: 17px 12px 8px;
  background: var(--white);
  border-radius: 11px;
}

.mini-chart span { width: 17px; height: var(--h); background: linear-gradient(180deg, #76b4df, var(--blue)); border-radius: 5px 5px 2px 2px; }
.mini-chart span:nth-child(5) { background: linear-gradient(180deg, #f6c572, var(--gold)); }

.mini-tooltip {
  position: absolute;
  top: 104px;
  right: 12px;
  display: flex;
  width: 125px;
  padding: 10px;
  color: var(--white);
  background: rgba(7, 26, 43, .93);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(7, 26, 43, .2);
  flex-direction: column;
}

.mini-tooltip small { color: rgba(255, 255, 255, .55); font-size: 6px; }
.mini-tooltip strong { font-family: "Manrope", sans-serif; font-size: 17px; }
.mini-tooltip span { color: #7cd0a9; font-size: 7px; }

.money-flow {
  position: absolute;
  right: 28px;
  bottom: 29px;
  left: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3px 12px;
  padding: 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
}

.money-flow span { color: rgba(255, 255, 255, .52); font-size: 10px; }
.money-flow strong { font-family: "Manrope", sans-serif; font-size: 18px; }
.money-flow i { grid-column: 2; grid-row: 2; justify-self: end; padding: 3px 7px; color: #77d2aa; background: rgba(85, 184, 141, .13); border-radius: 999px; font-size: 7px; font-style: normal; }

.progress-orbit {
  position: absolute;
  right: 32px;
  bottom: 31px;
  display: grid;
  width: 125px;
  height: 125px;
  place-items: center;
  border: 13px solid rgba(255, 255, 255, .45);
  border-top-color: var(--ink-deep);
  border-right-color: var(--ink-deep);
  border-radius: 50%;
  transform: rotate(20deg);
}

.progress-orbit span { display: flex; align-items: baseline; transform: rotate(-20deg); }
.progress-orbit strong { font-family: "Manrope", sans-serif; font-size: 24px; }
.progress-orbit small { font-size: 8px; }
.progress-orbit i { position: absolute; top: -9px; right: 10px; width: 10px; height: 10px; background: var(--white); border: 3px solid var(--ink-deep); border-radius: 50%; }
.progress-orbit em { position: absolute; bottom: -29px; width: 150px; color: rgba(16, 35, 50, .7); font-size: 8px; font-style: normal; font-weight: 800; text-align: center; transform: rotate(-20deg); }

.inline-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .68);
  border-radius: 10px;
}

.inline-proof > span { display: grid; width: 19px; height: 19px; place-items: center; color: var(--white); background: var(--mint); border-radius: 50%; }
.inline-proof .icon { width: 10px; height: 10px; }
.inline-proof strong { font-size: 8px; }
.inline-proof small { color: #8b9aa3; font-size: 7px; }

.notification-stack {
  position: relative;
  align-self: center;
  min-height: 235px;
  margin-top: 30px;
}

.notif-card {
  position: absolute;
  right: 0;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(16, 35, 50, .07);
  border-radius: 13px;
  box-shadow: 0 16px 34px rgba(7, 26, 43, .11);
}

.notif-card:nth-child(1) { top: 5px; z-index: 3; transform: rotate(1.5deg); }
.notif-card:nth-child(2) { top: 75px; z-index: 2; right: 13px; left: 0; transform: rotate(-2.5deg); }
.notif-card:nth-child(3) { top: 145px; z-index: 1; right: 3px; left: 15px; transform: rotate(2deg); }
.notif-app { display: grid; width: 32px; height: 32px; place-items: center; color: var(--blue); background: var(--blue-pale); border-radius: 10px; }
.notif-app--gold { color: var(--gold); background: var(--gold-pale); }
.notif-app--mint { color: var(--mint); background: var(--mint-pale); }
.notif-app .icon { width: 14px; height: 14px; }
.notif-card > div { display: flex; flex-direction: column; line-height: 1.4; }
.notif-card small { color: #93a0a8; font-size: 7px; }
.notif-card strong { color: var(--ink-deep); font-size: 8px; }

.product-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.product-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 22%, rgba(63, 141, 204, .16), transparent 24%),
    radial-gradient(circle at 92% 70%, rgba(233, 162, 59, .09), transparent 25%),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: auto, auto, 52px 52px, 52px 52px;
  mask-image: linear-gradient(to bottom, #000 75%, transparent);
}

.product-section .container { position: relative; z-index: 1; }

.product-tabs {
  padding: 10px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 29px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .22);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 5px;
  background: rgba(0, 0, 0, .18);
  border-radius: 20px;
}

.tab-list button {
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255, 255, 255, .53);
  background: transparent;
  border: 0;
  border-radius: 15px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}

.tab-list button:hover { color: var(--white); }
.tab-list button[aria-selected="true"] { color: var(--ink-deep); background: var(--white); box-shadow: 0 10px 28px rgba(0, 0, 0, .16); }
.tab-list button[aria-selected="true"] .icon { color: var(--blue); }

.tab-panels {
  min-height: 515px;
}

.product-panel {
  display: grid;
  min-height: 515px;
  grid-template-columns: .77fr 1.23fr;
  align-items: center;
  gap: 55px;
  padding: 48px 38px 30px 48px;
}

.product-panel[hidden] { display: none; }
.product-panel.is-active { animation: panel-in .5s var(--ease-out) both; }

.panel-index {
  color: #85c5f2;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.panel-copy h3 {
  margin: 15px 0 18px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.05em;
  line-height: 1.12;
}

.panel-copy > p {
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
  line-height: 1.75;
}

.panel-copy ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.panel-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  color: rgba(255, 255, 255, .8);
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
}

.panel-copy li .icon { color: #75cfaa; stroke-width: 2.5; }

.panel-preview {
  position: relative;
  min-height: 395px;
  padding: 22px;
  overflow: hidden;
  color: var(--ink);
  background: #f5f7f8;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .26), inset 0 1px var(--white);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8eb;
}

.preview-toolbar span { color: var(--ink-deep); font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 800; }
.preview-toolbar i { padding: 6px 9px; color: #7a8c98; background: var(--white); border: 1px solid #e2e7ea; border-radius: 7px; font-size: 7px; font-style: normal; }

.preview-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 14px;
}

.preview-stat-row span {
  display: flex;
  min-height: 76px;
  padding: 11px;
  background: var(--white);
  border: 1px solid #e7ebed;
  border-radius: 10px;
  flex-direction: column;
}

.preview-stat-row small { color: #8d9ba4; font-size: 7px; }
.preview-stat-row strong { color: var(--ink-deep); font-family: "Manrope", sans-serif; font-size: 18px; }
.preview-stat-row em { margin-top: auto; color: var(--mint); font-size: 6px; font-style: normal; }

.preview-grid { display: grid; grid-template-columns: 1.4fr .7fr; gap: 9px; margin-top: 9px; }
.preview-bars { min-height: 216px; padding: 13px; background: var(--white); border-radius: 11px; }
.preview-bars > strong { font-size: 8px; }
.preview-bars > div { display: flex; height: 150px; align-items: end; gap: 10px; padding: 17px 5px 0; border-bottom: 1px solid #e7ebed; background: repeating-linear-gradient(to bottom, #edf1f3 0 1px, transparent 1px 42px); }
.preview-bars i { width: 17px; height: var(--h); background: var(--blue); border-radius: 5px 5px 2px 2px; }
.preview-bars i:nth-child(6) { background: var(--gold); }

.preview-ring { display: grid; min-height: 216px; place-items: center; background: var(--white); border-radius: 11px; }
.preview-ring > span { display: flex; width: 110px; height: 110px; align-items: center; justify-content: center; border: 12px solid var(--blue-pale); border-top-color: var(--blue); border-right-color: var(--blue); border-radius: 50%; transform: rotate(30deg); flex-direction: column; }
.preview-ring strong, .preview-ring small { transform: rotate(-30deg); }
.preview-ring strong { color: var(--ink-deep); font-family: "Manrope", sans-serif; font-size: 20px; }
.preview-ring small { color: #8d9aa3; font-size: 6px; }

.finance-total { display: flex; align-items: center; justify-content: space-between; margin: 15px 0; padding: 15px; color: var(--white); background: linear-gradient(135deg, var(--blue), #408ac4); border-radius: 12px; }
.finance-total > div { display: flex; flex-direction: column; }
.finance-total small { color: rgba(255, 255, 255, .65); font-size: 7px; }
.finance-total strong { font-family: "Manrope", sans-serif; font-size: 20px; }
.finance-total strong em { font-size: 7px; font-style: normal; font-weight: 600; }
.finance-total > span { padding: 5px 8px; color: #b7f3d7; background: rgba(255, 255, 255, .13); border-radius: 999px; font-size: 7px; font-weight: 800; }

.transaction-list { padding: 0 13px; background: var(--white); border-radius: 12px; }
.transaction-list > div { display: grid; grid-template-columns: 31px 1fr auto auto; align-items: center; gap: 9px; padding: 15px 0; border-top: 1px solid #edf0f2; }
.transaction-list > div:first-child { border-top: 0; }
.transaction-icon { display: grid; width: 29px; height: 29px; place-items: center; color: var(--mint); background: var(--mint-pale); border-radius: 9px; font-size: 11px; font-weight: 800; }
.transaction-icon--gold { color: var(--gold); background: var(--gold-pale); }
.transaction-list p { display: flex; margin: 0; flex-direction: column; }
.transaction-list p strong { color: var(--ink-deep); font-size: 8px; }
.transaction-list p small { color: #95a1a9; font-size: 6px; }
.transaction-list b { color: var(--mint); font-size: 9px; }
.transaction-list b.negative { color: var(--coral); }
.transaction-list em { padding: 3px 6px; color: #648274; background: var(--mint-pale); border-radius: 999px; font-size: 6px; font-style: normal; }

.schedule-grid { display: grid; height: 314px; grid-template-columns: 38px repeat(4, 1fr); gap: 5px; margin-top: 14px; }
.schedule-times { display: flex; padding-top: 36px; color: #9aa5ad; font-size: 6px; flex-direction: column; justify-content: space-around; }
.schedule-day { position: relative; padding: 5px; background: var(--white); border-radius: 9px; }
.schedule-day > strong { display: block; padding-bottom: 7px; color: #667984; border-bottom: 1px solid #edf0f2; font-size: 7px; text-align: center; }
.lesson { display: flex; min-height: 88px; margin-top: 7px; padding: 8px 6px; color: var(--blue); background: var(--blue-pale); border-left: 3px solid var(--blue); border-radius: 7px; font-size: 7px; font-weight: 800; flex-direction: column; }
.lesson small { margin-top: 4px; color: #7991a2; font-size: 5px; font-weight: 500; }
.lesson--gold { color: #9d6c20; background: var(--gold-pale); border-color: var(--gold); }
.lesson--mint { color: #357f63; background: var(--mint-pale); border-color: var(--mint); }
.lesson--short { min-height: 67px; }

.panel-preview--family { display: flex; align-items: center; justify-content: center; overflow: visible; background: radial-gradient(circle at 50% 35%, #e7f2fb, #f4f6f8 58%); }
.family-phone { position: relative; width: 220px; min-height: 380px; padding: 23px 12px 14px; background: #f0f2f6; border: 6px solid #0a1d2c; border-radius: 28px; box-shadow: 0 25px 52px rgba(7, 26, 43, .24); }
.family-notch { position: absolute; top: 7px; left: 50%; width: 59px; height: 14px; background: #0a1d2c; border-radius: 999px; transform: translateX(-50%); }
.family-head { display: flex; align-items: center; gap: 8px; margin: 10px 1px 12px; }
.family-head img { width: 27px; height: 27px; border-radius: 7px; }
.family-head > span { display: flex; flex-direction: column; }
.family-head small { color: #929fa8; font-size: 6px; }
.family-head strong { color: var(--ink-deep); font-size: 8px; }
.grade-card { padding: 13px; color: var(--white); background: linear-gradient(145deg, var(--blue), #1f527f); border-radius: 13px; }
.grade-card > small { display: block; color: rgba(255, 255, 255, .64); font-size: 6px; }
.grade-card > strong { font-family: "Manrope", sans-serif; font-size: 22px; }
.grade-card > strong em { font-size: 8px; font-style: normal; }
.grade-card > span { margin-left: 5px; color: #b1f1d5; font-size: 6px; }
.grade-card > div { display: flex; height: 49px; align-items: end; gap: 9px; margin-top: 8px; padding-top: 5px; border-top: 1px solid rgba(255, 255, 255, .12); }
.grade-card i { width: 34px; height: var(--h); background: rgba(255, 255, 255, .35); border-radius: 4px 4px 1px 1px; }
.grade-card i:last-child { background: var(--gold); }
.family-row { display: grid; grid-template-columns: 29px 1fr auto; align-items: center; gap: 8px; margin-top: 7px; padding: 10px; background: var(--white); border-radius: 10px; box-shadow: 0 5px 12px rgba(7, 26, 43, .05); }
.family-row > span { display: grid; width: 27px; height: 27px; place-items: center; color: var(--blue); background: var(--blue-pale); border-radius: 8px; }
.family-row > span.mint { color: var(--mint); background: var(--mint-pale); }
.family-row .icon { width: 12px; height: 12px; }
.family-row p { display: flex; margin: 0; flex-direction: column; }
.family-row strong { color: var(--ink-deep); font-size: 7px; }
.family-row small { color: #98a4ab; font-size: 5px; }
.family-row b { color: #96a3ab; font-weight: 400; }

.family-side-note { position: absolute; right: -27px; bottom: 54px; display: grid; width: 206px; grid-template-columns: 32px 1fr 19px; align-items: center; gap: 9px; padding: 12px; color: var(--ink); background: rgba(255, 255, 255, .95); border: 1px solid rgba(16, 35, 50, .08); border-radius: 13px; box-shadow: 0 17px 38px rgba(7, 26, 43, .16); }
.family-side-note > .icon { width: 29px; height: 29px; padding: 7px; color: var(--blue); background: var(--blue-pale); border-radius: 8px; }
.family-side-note span { display: flex; flex-direction: column; }
.family-side-note small { color: #95a2aa; font-size: 6px; }
.family-side-note strong { color: var(--ink-deep); font-size: 7px; }
.family-side-note i { display: grid; width: 18px; height: 18px; place-items: center; color: var(--white); background: var(--mint); border-radius: 50%; font-size: 7px; font-style: normal; }

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.feature-strip span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
}

.feature-strip .icon { color: #73acd5; }

.profiles-section { background: var(--paper-warm); }

.profile-path {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr 52px 1fr;
  align-items: center;
}

.profile-card {
  position: relative;
  min-height: 365px;
  padding: 29px 24px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(16, 35, 50, .08);
  border-radius: 25px;
  box-shadow: 0 13px 38px rgba(7, 26, 43, .06);
  transition: transform .3s var(--ease-out), box-shadow .3s ease, background .3s ease;
}

.profile-card:hover { z-index: 2; background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-8px); }
.profile-step { position: absolute; top: 25px; right: 24px; color: #a5afb5; font-family: "Manrope", sans-serif; font-size: 9px; font-weight: 800; }
.profile-icon { display: grid; width: 46px; height: 46px; margin-bottom: 38px; place-items: center; color: var(--blue); background: var(--blue-pale); border-radius: 14px; }
.profile-icon--gold { color: var(--gold); background: var(--gold-pale); }
.profile-icon--mint { color: var(--mint); background: var(--mint-pale); }
.profile-icon--coral { color: var(--coral); background: #fde8e5; }
.profile-icon .icon { width: 20px; height: 20px; }
.profile-card h3 { margin-bottom: 11px; color: var(--ink-deep); font-family: "Manrope", sans-serif; font-size: 21px; letter-spacing: -.03em; }
.profile-card p { min-height: 82px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.profile-card ul { display: flex; flex-wrap: wrap; gap: 5px; margin: 23px 0 0; padding: 0; list-style: none; }
.profile-card li { padding: 5px 8px; color: #617580; background: #f1f4f5; border-radius: 999px; font-size: 7px; font-weight: 800; }

.path-arrow { position: relative; display: flex; align-items: center; flex-direction: column; }
.path-arrow i { position: relative; width: 100%; height: 1px; background: #c4cdd2; }
.path-arrow i::after { position: absolute; top: -3px; right: 0; width: 7px; height: 7px; border-top: 1px solid #93a2ab; border-right: 1px solid #93a2ab; content: ""; transform: rotate(45deg); }
.path-arrow span { position: absolute; top: 11px; width: 86px; color: #9aa5ac; font-size: 6px; text-align: center; }

.confidence-section { background: var(--white); }

.confidence-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.confidence-copy h2 { margin-bottom: 25px; }
.confidence-copy > p { color: var(--muted); font-size: 16px; line-height: 1.8; }

.confidence-points { display: grid; gap: 14px; margin-top: 34px; }
.confidence-points > span { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 3px 12px; }
.confidence-points i { display: grid; width: 35px; height: 35px; grid-row: span 2; place-items: center; color: var(--white); background: var(--mint); border-radius: 50%; }
.confidence-points i .icon { width: 16px; height: 16px; stroke-width: 2.4; }
.confidence-points strong { color: var(--ink-deep); font-size: 12px; }
.confidence-points small { color: #84929b; font-size: 10px; }

.partner-board {
  padding: 29px;
  background: #f3f6f7;
  border: 1px solid rgba(16, 35, 50, .07);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.partner-board-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(16, 35, 50, .09); }
.partner-board-head > span { display: flex; align-items: center; gap: 7px; color: var(--ink-deep); font-family: "Manrope", sans-serif; font-size: 11px; font-weight: 800; }
.partner-board-head > span i { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 4px rgba(85, 184, 141, .13); }
.partner-board-head > small { color: #89969e; font-size: 8px; }
.partner-list { display: grid; gap: 8px; margin-top: 14px; }

.partner-card {
  display: grid;
  grid-template-columns: 52px 1fr 25px;
  align-items: center;
  gap: 13px;
  margin-top: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(16, 35, 50, .06);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(7, 26, 43, .045);
}

.partner-mark { display: grid; width: 48px; height: 48px; place-items: center; color: var(--blue); background: var(--blue-pale); border-radius: 13px; font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 800; }
.partner-mark .icon { width: 21px; height: 21px; }
.partner-card > div { display: flex; flex-direction: column; }
.partner-card strong { color: var(--ink-deep); font-family: "Manrope", sans-serif; font-size: 12px; }
.partner-card small { color: #647783; font-size: 10px; }
.partner-card > i { display: grid; width: 23px; height: 23px; place-items: center; color: var(--white); background: var(--mint); border-radius: 50%; }
.partner-card > i .icon { width: 12px; height: 12px; stroke-width: 2.5; }
.partner-consent { display: flex; align-items: center; gap: 7px; margin: 11px 4px 0; color: #647783; font-size: 10px; }
.partner-consent .icon { color: var(--blue); }
.partner-quote { display: grid; grid-template-columns: 25px 1fr; gap: 9px; margin-top: 22px; padding: 20px; color: var(--white); background: var(--ink-deep); border-radius: 17px; }
.partner-quote > span { color: var(--gold); font-family: Georgia, serif; font-size: 34px; line-height: .8; }
.partner-quote p { margin: 0; color: rgba(255, 255, 255, .75); font-size: 11px; line-height: 1.7; }

.security-section { padding-top: 0; background: var(--white); }

.security-shell {
  position: relative;
  display: grid;
  min-height: 400px;
  grid-template-columns: .75fr 1.15fr 1fr;
  align-items: center;
  gap: 45px;
  padding: 50px 55px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 50%, rgba(63, 141, 204, .23), transparent 35%),
    linear-gradient(135deg, #071a2b, #0d2d47);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.security-orbit { position: relative; display: grid; width: 210px; height: 210px; margin: auto; place-items: center; border: 1px solid rgba(126, 180, 220, .18); border-radius: 50%; }
.security-orbit::before, .security-orbit::after { position: absolute; border: 1px solid rgba(126, 180, 220, .12); border-radius: 50%; content: ""; }
.security-orbit::before { inset: 27px; }
.security-orbit::after { inset: 54px; }
.security-orbit > span { position: relative; z-index: 2; display: grid; width: 74px; height: 74px; place-items: center; color: #9bd0f5; background: rgba(63, 141, 204, .14); border: 1px solid rgba(126, 180, 220, .28); border-radius: 24px; box-shadow: 0 0 40px rgba(63, 141, 204, .18); }
.security-orbit > span .icon { width: 32px; height: 32px; }
.security-orbit > i { position: absolute; width: 8px; height: 8px; background: var(--gold); border: 2px solid var(--ink-deep); border-radius: 50%; animation: orbit 10s linear infinite; }
.security-orbit > i:nth-child(3) { background: var(--mint); animation-duration: 13s; animation-direction: reverse; }
.security-orbit > i:nth-child(4) { background: var(--blue-bright); animation-duration: 16s; }

.security-copy h2 { margin-bottom: 19px; color: var(--white); font-size: clamp(31px, 3.2vw, 44px); }
.security-copy h2 span { color: #87c6f1; }
.security-copy p { margin: 0; color: rgba(255, 255, 255, .57); font-size: 13px; line-height: 1.75; }

.security-grid { display: grid; gap: 9px; }
.security-grid article { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 10px; padding: 13px; background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .08); border-radius: 13px; }
.security-grid article > .icon { width: 31px; height: 31px; padding: 7px; color: #81bfe9; background: rgba(63, 141, 204, .12); border-radius: 9px; }
.security-grid article > div { display: flex; flex-direction: column; }
.security-grid strong { font-size: 10px; }
.security-grid small { color: rgba(255, 255, 255, .45); font-size: 8px; }

.founder-section { background: var(--paper); }

.founder-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 85px; }
.founder-copy h2 { margin-bottom: 24px; }
.founder-copy > p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.founder-signature { display: flex; align-items: center; gap: 12px; margin-top: 27px; }
.founder-signature > span { display: grid; width: 44px; height: 44px; place-items: center; color: var(--white); background: var(--ink-deep); border-radius: 14px; font-family: "Manrope", sans-serif; font-size: 11px; font-weight: 800; }
.founder-signature > div { display: flex; flex-direction: column; }
.founder-signature strong { color: var(--ink-deep); font-size: 11px; }
.founder-signature small { color: #87949c; font-size: 9px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 31px; color: var(--blue); border-bottom: 1px solid rgba(45, 105, 160, .25); font-size: 12px; font-weight: 800; }
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }

.video-frame { overflow: hidden; background: #061725; border: 7px solid var(--white); border-radius: 25px; box-shadow: var(--shadow-lg); }
.video-frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #061725; }
.video-placeholder { position: relative; display: flex; aspect-ratio: 16 / 9; align-items: center; justify-content: center; overflow: hidden; color: var(--white); background: radial-gradient(circle at 75% 30%, rgba(63, 141, 204, .35), transparent 29%), linear-gradient(135deg, #071a2b, #113c5d); }
.video-placeholder::after { position: absolute; top: 10%; right: 7%; width: 220px; height: 220px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255, 255, 255, .025), 0 0 0 70px rgba(255, 255, 255, .018); content: ""; }
.video-grid { background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); mask-image: radial-gradient(circle at center, #000, transparent 80%); }
.video-logo { position: absolute; top: 25px; left: 27px; z-index: 2; width: 96px; }
.video-message { position: relative; z-index: 2; display: flex; align-items: center; gap: 16px; }
.video-play { display: grid; width: 68px; height: 68px; place-items: center; color: var(--ink-deep); background: var(--white); border-radius: 50%; box-shadow: 0 15px 35px rgba(0, 0, 0, .25); }
.video-play .icon { width: 22px; height: 22px; margin-left: 4px; fill: currentColor; stroke: none; }
.video-message > div { display: flex; flex-direction: column; }
.video-message strong { font-family: "Manrope", sans-serif; font-size: 19px; }
.video-message small { color: rgba(255, 255, 255, .55); font-size: 10px; }
.video-caption { position: absolute; right: 26px; bottom: 23px; left: 27px; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding-top: 13px; border-top: 1px solid rgba(255, 255, 255, .12); }
.video-caption span { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.video-caption small { color: rgba(255, 255, 255, .48); font-size: 8px; }
.video-frame-bar { display: flex; min-height: 46px; align-items: center; justify-content: space-between; padding: 0 16px; color: rgba(255, 255, 255, .64); background: #061725; border-top: 1px solid rgba(255, 255, 255, .07); font-size: 8px; }
.video-frame-bar span { display: flex; align-items: center; gap: 6px; }
.video-frame-bar i { width: 6px; height: 6px; background: var(--mint); border-radius: 50%; }
.video-frame-bar small { color: rgba(255, 255, 255, .3); font-size: 7px; }

.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 100px; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro h2 { margin-bottom: 23px; }
.faq-intro > p { color: var(--muted); font-size: 14px; line-height: 1.8; }
.faq-intro .button { margin-top: 16px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; min-height: 86px; grid-template-columns: 1fr 26px; align-items: center; gap: 25px; color: var(--ink-deep); font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; width: 25px; height: 25px; border: 1px solid rgba(16, 35, 50, .14); border-radius: 50%; transition: background .2s ease, transform .3s ease; }
.faq-list summary i::before, .faq-list summary i::after { position: absolute; top: 50%; left: 50%; width: 9px; height: 1px; background: var(--ink); content: ""; transform: translate(-50%, -50%); }
.faq-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s ease; }
.faq-list details[open] summary i { background: var(--blue-pale); border-color: transparent; transform: rotate(180deg); }
.faq-list details[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details > p { max-width: 680px; margin: -4px 45px 27px 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

/* The public page intentionally keeps the product story short: one compact
   feature overview, one proof point, then the conversation form. */
.essentials-section {
  padding: 112px 0 104px;
  background: var(--white);
}

.minimal-heading {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.minimal-heading h2 {
  margin: 11px 0 13px;
  color: var(--ink-deep);
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.minimal-heading h2 span { color: var(--blue); }
.minimal-heading p { margin: 0; color: var(--muted); font-size: 16px; }

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.essential-card {
  display: flex;
  min-height: 150px;
  align-items: flex-start;
  gap: 17px;
  padding: 25px;
  background: #f7f8f7;
  border: 1px solid rgba(16, 35, 50, .075);
  border-radius: 20px;
}

.essential-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 13px;
}

.essential-icon .icon { width: 19px; height: 19px; }
.essential-icon--gold { color: #ad6d12; background: var(--gold-pale); }
.essential-icon--mint { color: #2e8765; background: var(--mint-pale); }
.essential-icon--coral { color: #b84f44; background: #fde9e6; }
.essential-icon--violet { color: #7559aa; background: #eee8f8; }
.essential-icon--ink { color: var(--white); background: var(--ink-deep); }
.essential-card h3 { margin: 2px 0 7px; color: var(--ink-deep); font-family: "Manrope", sans-serif; font-size: 16px; letter-spacing: -.025em; }
.essential-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.essentials-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 18px;
  padding: 20px 22px 20px 26px;
  background: #f0f5f8;
  border: 1px solid rgba(45, 105, 160, .1);
  border-radius: 20px;
}

.essentials-action p { margin: 0; color: #60727e; font-size: 13px; }
.essentials-action p strong { color: var(--ink-deep); }
.essentials-action .button { min-height: 48px; flex: 0 0 auto; background: var(--white); font-size: 12px; }

.compact-confidence {
  padding: 0 0 92px;
  background: var(--white);
}

.confidence-compact-shell {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 25px 30px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 15%, rgba(63, 141, 204, .28), transparent 31%),
    linear-gradient(135deg, #071a2b, #0c304a);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(7, 26, 43, .16);
  transition: transform .28s var(--ease-out), box-shadow .28s ease;
}

.confidence-compact-shell:hover { box-shadow: 0 31px 70px rgba(7, 26, 43, .2); transform: translateY(-3px); }

.confidence-partner-logo {
  display: grid;
  width: 82px;
  height: 82px;
  overflow: hidden;
  place-items: center;
  background: var(--white);
  border: 4px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.confidence-partner-logo img { width: 100%; height: 100%; object-fit: contain; }

.confidence-compact-copy h2 {
  margin: 5px 0 1px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 35px);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.confidence-compact-copy > p { margin: 0; color: rgba(255, 255, 255, .6); font-size: 10px; }
.confidence-partner-link { display: inline-flex; align-items: center; gap: 7px; color: #8ac9f2; font-size: 10px; font-weight: 800; white-space: nowrap; }
.confidence-partner-link .icon { transition: transform .2s ease; }
.confidence-compact-shell:hover .confidence-partner-link .icon { transform: translateX(3px); }

.video-modal {
  width: min(94vw, 1380px);
  max-width: none;
  max-height: 94vh;
  margin: auto;
  padding: 0;
  overflow: visible;
  color: var(--white);
  background: transparent;
  border: 0;
}

.video-modal[open] { animation: modal-in .38s var(--ease-out) both; }
.video-modal::backdrop { background: rgba(2, 12, 20, .86); cursor: pointer; backdrop-filter: blur(12px); animation: backdrop-in .3s ease both; }

.video-modal-panel {
  display: grid;
  max-height: 94vh;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: #061522;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  box-shadow: 0 45px 120px rgba(0, 0, 0, .55);
}

.video-modal-head,
.video-modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 19px;
}

.video-modal-head > div { display: flex; flex-direction: column; }
.video-modal-head span { color: #77bce9; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.video-modal-head h2 { margin: 1px 0 0; color: var(--white); font-family: "Manrope", sans-serif; font-size: 18px; letter-spacing: -.025em; }
.video-modal-head button { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; color: var(--white); background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.video-modal-head button:hover { background: rgba(255, 255, 255, .15); transform: rotate(4deg); }
.video-modal-head button .icon { width: 19px; height: 19px; }

.video-modal-stage { display: grid; min-height: 0; place-items: center; background: #000; }
.video-modal-stage video { width: 100%; max-height: calc(94vh - 139px); aspect-ratio: 16 / 9; object-fit: contain; background: #000; }
.video-modal-empty { display: flex; width: 100%; aspect-ratio: 16 / 9; align-items: center; justify-content: center; gap: 12px; color: rgba(255, 255, 255, .75); background: radial-gradient(circle at center, #153d5b, #061522 65%); }
.video-modal-empty .icon { width: 28px; height: 28px; color: #79bce9; }

.video-modal-foot { min-height: 58px; color: rgba(255, 255, 255, .52); font-size: 10px; }
.video-modal-foot a { display: inline-flex; align-items: center; gap: 7px; color: #87c6f1; font-weight: 800; }
.video-modal-foot a:hover .icon { transform: translateX(3px); }
.video-modal-foot .icon { transition: transform .2s ease; }

@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.975); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes backdrop-in { from { opacity: 0; } to { opacity: 1; } }

.contact-section { position: relative; padding: 120px 0; overflow: hidden; color: var(--white); background: var(--ink-deep); }
.contact-section::before { position: absolute; top: -40%; left: -15%; width: 65%; height: 100%; background: radial-gradient(ellipse, rgba(63, 141, 204, .22), transparent 65%); content: ""; }
.contact-grid { background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px); mask-image: linear-gradient(90deg, #000, transparent); }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 90px; }
.contact-layout--direct { grid-template-columns: minmax(0, 720px); justify-content: center; text-align: center; }
.contact-copy--direct { max-width: 720px; }
.contact-copy--direct .section-label { justify-content: center; }
.contact-copy h2 { margin-bottom: 25px; color: var(--white); }
.contact-copy h2 span { color: #87c6f1; }
.contact-copy > p { color: rgba(255, 255, 255, .58); font-size: 15px; line-height: 1.8; }
.contact-copy--direct > p { max-width: 580px; margin-inline: auto; }
.contact-promise { display: grid; gap: 15px; margin-top: 35px; }
.contact-promise > span { display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 2px 11px; }
.contact-promise i { display: grid; width: 29px; height: 29px; grid-row: span 2; place-items: center; color: #83c3f0; background: rgba(63, 141, 204, .13); border: 1px solid rgba(126, 180, 220, .17); border-radius: 9px; font-size: 8px; font-style: normal; font-weight: 800; }
.contact-promise strong { font-size: 10px; }
.contact-promise small { color: rgba(255, 255, 255, .68); font-size: 10px; }
.direct-contact { display: flex; align-items: flex-start; gap: 3px; margin-top: 35px; flex-direction: column; }
.direct-contact small { color: rgba(255, 255, 255, .68); font-size: 10px; }
.direct-contact a { color: #8cc9f2; font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 700; }
.contact-copy--direct .direct-contact { align-items: center; gap: 13px; margin-top: 29px; }
.direct-contact .whatsapp-contact {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  margin-top: 13px;
  padding: 11px 16px;
  color: var(--white);
  background: #176b4a;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  box-shadow: 0 13px 28px rgba(0, 0, 0, .18);
  transition: background .2s ease, transform .2s var(--ease-out), box-shadow .2s ease;
}
.direct-contact .whatsapp-contact:hover { background: #1d7d57; box-shadow: 0 17px 34px rgba(0, 0, 0, .23); transform: translateY(-2px); }
.direct-contact .whatsapp-contact .icon { width: 21px; height: 21px; stroke-width: 1.65; }
.contact-copy--direct .whatsapp-contact { min-width: min(100%, 320px); justify-content: center; font-size: 13px; }
.direct-contact .contact-email { color: rgba(255, 255, 255, .5); font-size: 10px; }
.direct-contact .contact-email a { font-size: inherit; }

.contact-card { padding: 34px; color: var(--ink); background: var(--white); border: 1px solid rgba(255, 255, 255, .25); border-radius: 28px; box-shadow: 0 35px 80px rgba(0, 0, 0, .28); }
.contact-success { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 23px; padding: 15px; color: #286e54; background: var(--mint-pale); border: 1px solid rgba(85, 184, 141, .22); border-radius: 13px; }
.contact-success > span { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; color: var(--white); background: var(--mint); border-radius: 50%; }
.contact-success .icon { width: 14px; height: 14px; stroke-width: 2.4; }
.contact-success strong { font-family: "Manrope", sans-serif; font-size: 12px; }
.contact-success p { margin: 3px 0 0; font-size: 9px; line-height: 1.6; }
.contact-alert { margin-bottom: 20px; padding: 13px; color: #a34940; background: #fff0ee; border: 1px solid #f4c9c3; border-radius: 11px; font-size: 10px; }
.form-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; }
.form-icon { display: grid; width: 46px; height: 46px; place-items: center; color: var(--blue); background: var(--blue-pale); border-radius: 14px; }
.form-icon .icon { width: 20px; height: 20px; }
.form-heading > div { display: flex; flex-direction: column; }
.form-heading small { color: #647783; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.form-heading h3 { margin: 0; color: var(--ink-deep); font-family: "Manrope", sans-serif; font-size: 22px; letter-spacing: -.03em; }
.contact-card form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 14px; }
.contact-card label { display: flex; color: #4e616e; font-size: 11px; font-weight: 700; flex-direction: column; }
.contact-card .field-label { display: inline-flex; min-height: 20px; align-items: center; gap: 4px; color: #4e616e; line-height: 1.35; }
.contact-card .field-label b { color: var(--coral); font-size: 13px; font-weight: 800; }
.contact-card input, .contact-card select, .contact-card textarea { width: 100%; margin-top: 7px; padding: 12px 13px; color: var(--ink-deep); background: #f7f8f8; border: 1px solid #dfe5e8; border-radius: 12px; font-size: 14px; font-weight: 500; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-card input, .contact-card select { min-height: 48px; }
.contact-card textarea { min-height: 82px; resize: vertical; }
.contact-card input:focus, .contact-card select:focus, .contact-card textarea:focus { background: var(--white); border-color: rgba(45, 105, 160, .65); box-shadow: 0 0 0 3px rgba(45, 105, 160, .1); }
.contact-card [aria-invalid="true"] { border-color: var(--coral); }
.field-error { margin-top: 4px; color: #b25147; font-size: 10px; font-weight: 600; }
.contact-card .button { margin-top: 3px; border: 0; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 0; color: #60737e; font-size: 10px; text-align: center; }
.form-note .icon { color: var(--blue); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { color: rgba(255, 255, 255, .62); background: #05131f; border-top: 1px solid rgba(255, 255, 255, .07); }
.footer-main { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; padding: 70px 0 55px; }
.footer-brand img { width: 138px; }
.footer-brand p { max-width: 250px; margin: 18px 0 0; color: rgba(255, 255, 255, .42); font-size: 11px; line-height: 1.7; }
.footer-main nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-main nav > div { display: flex; gap: 7px; flex-direction: column; }
.footer-main nav strong { margin-bottom: 7px; color: var(--white); font-family: "Manrope", sans-serif; font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
.footer-main nav a { font-size: 10px; transition: color .2s ease; }
.footer-main nav a:hover { color: #87c6f1; }
.footer-bottom { display: flex; min-height: 69px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .64); font-size: 10px; }
.footer-bottom a { color: rgba(255, 255, 255, .82); border-bottom: 1px solid rgba(255, 255, 255, .24); transition: color .2s ease, border-color .2s ease; }
.footer-bottom a:hover { color: var(--white); border-color: rgba(255, 255, 255, .7); }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.js .reveal--delay-1 { transition-delay: .09s; }
.js .reveal--delay-2 { transition-delay: .18s; }
.js .reveal--delay-3 { transition-delay: .27s; }
.js .reveal--delay-4 { transition-delay: .36s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%, 100% { opacity: 0; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes grow-bar { from { transform: scaleY(.05); } to { transform: scaleY(1); } }
@keyframes phone-float { 0%, 100% { transform: rotate(3.6deg) translateY(0); } 50% { transform: rotate(2.5deg) translateY(-10px); } }
@keyframes note-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes flow-dot { from { left: 0; } to { left: calc(100% - 5px); } }
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes orbit { from { transform: rotate(0) translateX(104px) rotate(0); } to { transform: rotate(360deg) translateX(104px) rotate(-360deg); } }

@media (max-width: 1180px) {
  :root { --container: 1060px; }
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 12px; }
  .nav-actions { gap: 12px; }
  .hero-layout { grid-template-columns: .82fr 1.18fr; gap: 20px; }
  .hero-visual { min-height: 590px; transform: scale(.92); transform-origin: left center; width: 108%; }
  .dashboard-window { right: 5px; }
  .section-heading--split { gap: 45px; }
  .profile-path { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .path-arrow { display: none; }
  .profile-card { min-height: 350px; }
  .confidence-layout, .contact-layout { gap: 60px; }
  .security-shell { grid-template-columns: .65fr 1.15fr 1fr; gap: 30px; padding: 46px 38px; }
  .security-orbit { width: 175px; height: 175px; }
  @keyframes orbit { from { transform: rotate(0) translateX(86px) rotate(0); } to { transform: rotate(360deg) translateX(86px) rotate(-360deg); } }
}

@media (max-width: 980px) {
  :root { --header-height: 72px; }
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: grid; width: 42px; height: 42px; margin-left: auto; place-items: center; color: var(--ink-deep); background: rgba(255, 255, 255, .76); border: 1px solid rgba(16, 35, 50, .1); border-radius: 12px; cursor: pointer; }
  .menu-toggle .icon { width: 21px; height: 21px; }
  .menu-toggle .menu-close { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-open { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-close { display: block; }
  .mobile-menu { position: fixed; top: var(--header-height); right: 0; left: 0; display: block; padding: 10px 0 22px; visibility: hidden; opacity: 0; background: rgba(248, 248, 244, .98); border-bottom: 1px solid var(--line); box-shadow: 0 25px 45px rgba(7, 26, 43, .12); transform: translateY(-12px); transition: opacity .25s ease, transform .25s var(--ease-out), visibility .25s; backdrop-filter: blur(18px); }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .mobile-menu nav { display: grid; gap: 1px; }
  .mobile-menu a { padding: 11px 3px; color: #405563; border-bottom: 1px solid rgba(16, 35, 50, .06); font-size: 13px; font-weight: 700; }
  .mobile-menu .nav-video-link { margin: 4px 0; padding-inline: 12px; color: #81520f; background: var(--gold-pale); border: 1px solid rgba(233, 162, 59, .24); border-radius: 11px; }
  .mobile-menu .button { margin-top: 10px; color: var(--white); }
  .hero { min-height: 1230px; padding-top: calc(var(--header-height) + 65px); }
  .hero-layout { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 700px; text-align: center; margin: auto; }
  .hero .eyebrow { justify-content: center; }
  .hero h1 { font-size: clamp(56px, 9vw, 78px); }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-assurances { justify-content: center; }
  .hero-visual { width: min(100%, 760px); min-height: 600px; margin: 15px auto 0; transform: none; }
  .dashboard-window { right: 4%; width: 90%; }
  .phone-mockup { right: 2%; }
  .floating-note--top { right: 2%; }
  .trust-ribbon-inner { grid-template-columns: 1fr 1.6fr; }
  .trust-mini { display: none; }
  .essentials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .confidence-compact-shell { grid-template-columns: 72px minmax(0, 1fr) auto; gap: 18px; }
  .confidence-partner-logo { width: 72px; height: 72px; }
  .section { padding: 95px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 22px; margin-bottom: 48px; }
  .section-heading--split > p { max-width: 670px; }
  .outcome-card, .outcome-card--wide { grid-column: span 6; grid-template-columns: 1fr; }
  .outcome-card--wide { min-height: 620px; }
  .outcome-card--family { min-height: 600px; }
  .mini-dashboard { max-width: 390px; justify-self: center; transform: translateY(15px) rotate(-2deg); }
  .notification-stack { width: min(100%, 400px); justify-self: center; }
  .product-panel { grid-template-columns: 1fr; gap: 30px; padding: 40px 28px 28px; }
  .panel-copy { max-width: 670px; }
  .tab-panels { min-height: 840px; }
  .product-panel { min-height: 840px; }
  .panel-preview { min-height: 390px; }
  .profile-path { grid-template-columns: 1fr 1fr; }
  .profile-card { min-height: 330px; }
  .confidence-layout { grid-template-columns: 1fr; }
  .confidence-copy { max-width: 680px; }
  .partner-board { width: min(100%, 720px); }
  .security-shell { grid-template-columns: .55fr 1.2fr; }
  .security-grid { grid-column: span 2; grid-template-columns: repeat(3, 1fr); }
  .founder-layout { grid-template-columns: 1fr; gap: 48px; }
  .founder-copy { max-width: 700px; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; max-width: 680px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: 700px; }
  .contact-card { width: min(100%, 720px); }
  .footer-main { gap: 50px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand, .brand img { width: 126px; }
  .hero { min-height: 1100px; padding-bottom: 55px; }
  .hero h1 { margin-top: 20px; font-size: clamp(44px, 13vw, 64px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-assurances { gap: 8px 15px; font-size: 10px; }
  .hero-visual { min-height: 465px; margin-top: 8px; }
  .dashboard-window { top: 30px; right: -11%; width: 122%; transform: scale(.72) perspective(1200px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)); transform-origin: top center; }
  .phone-mockup { right: -2px; bottom: -15px; width: 163px; height: 340px; border-radius: 28px; transform: rotate(2.8deg); }
  .phone-screen { padding: 7px 8px 40px; border-radius: 22px; }
  .phone-speaker { width: 49px; height: 14px; }
  .phone-brand { padding-top: 0; }
  .phone-welcome { margin-top: 9px; }
  .student-card { padding: 7px; }
  .student-avatar { width: 23px; height: 23px; }
  .student-actions { margin-top: 6px; }
  .phone-course { padding: 6px; }
  .phone-nav { height: 37px; }
  .floating-note { padding: 8px 9px; }
  .floating-note--top { top: 2px; right: 0; }
  .floating-note--bottom { bottom: 5px; left: 0; }
  .floating-note strong { font-size: 7px; }
  .trust-ribbon-inner { grid-template-columns: 1fr; gap: 18px; padding-block: 26px; }
  .trust-ribbon-inner > p { text-align: center; }
  .trust-flow { gap: 6px; }
  .trust-flow span { padding: 7px 8px; font-size: 8px; }
  .trust-flow > i { width: 15px; }
  .essentials-section { padding: 78px 0 72px; }
  .minimal-heading h2 { font-size: clamp(36px, 11vw, 48px); }
  .minimal-heading p { font-size: 14px; }
  .essentials-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 37px; }
  .essential-card { min-height: 0; padding: 20px; }
  .essentials-action { align-items: stretch; padding: 20px; flex-direction: column; }
  .essentials-action .button { width: 100%; }
  .compact-confidence { padding-bottom: 72px; }
  .confidence-compact-shell { grid-template-columns: 64px minmax(0, 1fr); gap: 14px; padding: 20px; border-radius: 22px; }
  .confidence-partner-logo { width: 64px; height: 64px; }
  .confidence-compact-copy h2 { font-size: 22px; }
  .confidence-partner-link { grid-column: 2; justify-self: start; }
  .video-modal { inset: 0; width: 100vw; height: 100dvh; max-height: none; margin: 0; }
  .video-modal-panel { height: 100%; max-height: none; border: 0; border-radius: 0; }
  .video-modal-head { min-height: 74px; padding: 13px 16px; }
  .video-modal-head h2 { font-size: 15px; }
  .video-modal-stage video { max-height: calc(100dvh - 132px); }
  .video-modal.uses-mobile-video .video-modal-stage { background: #061522; }
  .video-modal.uses-mobile-video .video-modal-stage video { width: auto; height: 100%; max-width: 100%; max-height: calc(100dvh - 132px); aspect-ratio: 9 / 16; object-fit: contain; }
  .video-modal-foot { min-height: 58px; padding: 12px 16px; }
  .video-modal-foot > span { display: none; }
  .section { padding: 78px 0; }
  .section-heading h2, .confidence-copy h2, .security-copy h2, .founder-copy h2, .faq-intro h2, .contact-copy h2 { font-size: clamp(35px, 10vw, 49px); }
  .section-heading--split > p, .section-heading--center > p { font-size: 15px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card, .outcome-card--wide { grid-column: auto; min-height: 400px; padding: 27px; }
  .outcome-card--wide { min-height: 610px; }
  .outcome-card--family { min-height: 590px; }
  .icon-box { margin-bottom: 33px; }
  .outcome-card h3 { font-size: 22px; }
  .progress-orbit { right: 50%; transform: translateX(50%) rotate(20deg); }
  .product-tabs { padding: 6px; border-radius: 22px; }
  .tab-list { grid-template-columns: repeat(2, 1fr); border-radius: 17px; }
  .tab-list button { min-height: 46px; }
  .product-panel { min-height: 800px; padding: 32px 15px 16px; }
  .tab-panels { min-height: 800px; }
  .panel-copy h3 { font-size: 29px; }
  .panel-preview { min-height: 355px; padding: 14px; }
  .preview-stat-row span:nth-child(3) { display: none; }
  .preview-stat-row { grid-template-columns: repeat(2, 1fr); }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-ring { display: none; }
  .preview-bars { min-height: 210px; }
  .transaction-list > div { grid-template-columns: 27px 1fr auto; }
  .transaction-list em { display: none; }
  .schedule-grid { grid-template-columns: 30px repeat(3, 1fr); }
  .schedule-day:last-child { display: none; }
  .family-side-note { right: -9px; bottom: 28px; width: 180px; }
  .feature-strip { justify-content: flex-start; }
  .profile-path { grid-template-columns: 1fr; }
  .profile-card { min-height: 285px; }
  .profile-card p { min-height: 0; }
  .confidence-layout { gap: 44px; }
  .partner-board { padding: 20px; }
  .partner-board-head { align-items: flex-start; gap: 6px; flex-direction: column; }
  .partner-card { grid-template-columns: 43px 1fr 22px; padding: 12px; }
  .partner-mark { width: 41px; height: 41px; }
  .security-shell { grid-template-columns: 1fr; gap: 35px; padding: 39px 25px; border-radius: 27px; text-align: center; }
  .security-orbit { width: 155px; height: 155px; }
  .security-grid { grid-column: auto; grid-template-columns: 1fr; text-align: left; }
  @keyframes orbit { from { transform: rotate(0) translateX(76px) rotate(0); } to { transform: rotate(360deg) translateX(76px) rotate(-360deg); } }
  .founder-layout { gap: 38px; }
  .video-message { align-items: center; gap: 10px; flex-direction: column; text-align: center; }
  .video-play { width: 54px; height: 54px; }
  .video-message strong { font-size: 14px; }
  .video-caption { right: 16px; bottom: 13px; left: 16px; }
  .video-frame-bar small { display: none; }
  .faq-list summary { min-height: 78px; font-size: 13px; }
  .contact-section { padding: 78px 0; }
  .contact-layout { gap: 48px; }
  .direct-contact .whatsapp-contact { width: 100%; justify-content: center; }
  .contact-card { padding: 25px 20px; border-radius: 23px; }
  .contact-card input, .contact-card select, .contact-card textarea { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding: 55px 0 40px; }
  .footer-main nav { gap: 18px; }
  .footer-bottom { align-items: flex-start; justify-content: center; gap: 5px; padding-block: 18px; flex-direction: column; }
}

@media (max-width: 430px) {
  .hero { min-height: 1060px; }
  .eyebrow { width: fit-content; max-width: 100%; font-size: 8px; line-height: 1.35; white-space: normal; }
  .hero h1 { font-size: 43px; }
  .hero-assurances li:last-child { display: none; }
  .hero-visual { min-height: 420px; }
  .dashboard-window { right: -23%; width: 145%; transform: scale(.62); transform-origin: top center; }
  .phone-mockup { width: 148px; height: 310px; }
  .phone-course:nth-of-type(2) { display: none; }
  .floating-note--top { display: none; }
  .floating-note--bottom { bottom: -2px; }
  .trust-flow span { font-size: 0; }
  .trust-flow span .icon { width: 15px; height: 15px; }
  .trust-flow > i { width: 26px; }
  .minimal-heading h2 { font-size: 37px; }
  .confidence-compact-copy h2 { font-size: 19px; }
  .outcome-card--wide, .outcome-card--family { min-height: 570px; }
  .mini-dashboard { height: 250px; }
  .notif-card { left: 0; }
  .tab-list button span { font-size: 10px; }
  .product-panel, .tab-panels { min-height: 820px; }
  .panel-preview--family { overflow: hidden; }
  .family-phone { transform: scale(.9); }
  .family-side-note { right: -22px; bottom: 15px; transform: scale(.85); }
  .partner-card strong { font-size: 10px; }
  .partner-card small { font-size: 7px; }
  .video-logo { top: 15px; left: 17px; width: 74px; }
  .video-caption small { display: none; }
  .footer-main nav { grid-template-columns: 1fr 1fr; }
  .footer-main nav > div:last-child { grid-column: span 2; }
}

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

/* The inline head script switches to `.js` immediately.  These rules keep
   navigation and every product panel reachable if scripts are blocked. */
.no-js .menu-toggle { display: none; }

@media (max-width: 980px) {
  .no-js .site-header { position: relative; height: auto; background: var(--paper); }
  .no-js .nav-shell { height: var(--header-height); }
  .no-js .mobile-menu { position: relative; top: auto; visibility: visible; opacity: 1; transform: none; }
  .no-js .hero { padding-top: 65px; }
}

.no-js .product-panel[hidden] {
  display: grid !important;
}
