:root {
    --cyan: #1fbad0;
    --cyan-bright: #39d2e6;
    --cyan-deep: #1599ad;
    --navy: #000612;
    --navy-soft: #07111f;
    --ink: #101a29;
    --slate: #586579;
    --line: #dfe6ec;
    --mist: #f2f6f8;
    --white: #ffffff;
    --mint: #10b981;
    --coral: #ff647c;
    --violet: #8b5cf6;
    --amber: #f59e0b;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --shadow: 0 24px 70px rgba(0, 6, 18, 0.12);
    --shell: min(1180px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

svg {
    display: block;
}

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

h1,
h2,
h3 {
    letter-spacing: -0.045em;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--navy);
    background: var(--cyan);
    font-weight: 800;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 78px;
    color: var(--white);
    background: rgba(0, 6, 18, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
    background: rgba(0, 6, 18, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.nav-shell {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav > a:not(.nav-cta) {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--cyan);
    transition: right 0.2s ease;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
    color: var(--white);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
    right: 0;
}

.nav-cta {
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    color: var(--navy);
    background: linear-gradient(135deg, rgba(77, 222, 236, 0.96), rgba(31, 186, 208, 0.88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.56),
        inset 0 -1px 0 rgba(0, 62, 77, 0.08),
        0 10px 28px rgba(31, 186, 208, 0.2);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: linear-gradient(135deg, rgba(107, 237, 247, 0.98), rgba(35, 201, 222, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.68),
        0 14px 34px rgba(31, 186, 208, 0.3);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: 860px;
    padding: 150px 0 92px;
    color: var(--white);
    background:
        radial-gradient(circle at 70% 28%, rgba(31, 186, 208, 0.17), transparent 25%),
        linear-gradient(135deg, #000612 0%, #030d1a 55%, #00121d 100%);
    overflow: hidden;
}

.hero-grid,
.download-grid {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.road-line {
    position: absolute;
    width: 740px;
    height: 740px;
    border: 1px solid rgba(31, 186, 208, 0.15);
    border-radius: 50%;
}

.road-line::after {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px dashed rgba(31, 186, 208, 0.1);
    border-radius: inherit;
}

.road-line-one {
    top: -380px;
    left: -300px;
}

.road-line-two {
    right: -520px;
    bottom: -430px;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
    align-items: center;
    gap: 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.05);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(31, 186, 208, 0.13);
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 26px;
    font-size: clamp(54px, 6.3vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.hero h1 span {
    color: var(--cyan);
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.69);
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 30px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.button-primary {
    color: var(--navy);
    border-color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(135deg, rgba(76, 223, 237, 0.98), rgba(31, 186, 208, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        inset 0 -1px 0 rgba(0, 62, 77, 0.09),
        0 14px 36px rgba(31, 186, 208, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: linear-gradient(135deg, rgba(111, 239, 248, 0.99), rgba(38, 204, 224, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 18px 44px rgba(31, 186, 208, 0.32);
}

.button-ghost {
    color: var(--white);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 10px 28px rgba(0, 0, 0, 0.1);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.3);
}

.button-dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(4, 17, 34, 0.98), rgba(0, 6, 18, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        0 13px 30px rgba(0, 6, 18, 0.16);
}

.button-dark:hover,
.button-dark:focus-visible {
    background: linear-gradient(145deg, rgba(19, 39, 59, 0.98), rgba(4, 17, 34, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 17px 36px rgba(0, 6, 18, 0.22);
}

.button-block {
    width: 100%;
}

.button-ghost-dark {
    color: var(--ink);
    border-color: rgba(15, 31, 47, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(243, 248, 250, 0.58));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 24px rgba(15, 31, 47, 0.06);
}

.hero-trial {
    display: flex;
    align-items: stretch;
    width: min(100%, 470px);
    margin-top: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 18px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    overflow: hidden;
}

.hero-trial-offer {
    flex: 1;
    display: grid;
    gap: 4px;
    padding: 16px 18px;
}

.hero-trial-offer span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-trial-offer strong {
    color: var(--white);
    font-size: 18px;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.hero-trial-offer small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.hero-trial-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.hero-visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
}

.hero-glow {
    position: absolute;
    width: 510px;
    height: 510px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 186, 208, 0.34), rgba(31, 186, 208, 0.06) 45%, transparent 70%);
    filter: blur(12px);
}

.phone {
    position: relative;
    z-index: 2;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 45px;
    background: #080b10;
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.48);
    overflow: hidden;
}

.phone::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.045);
}

.phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px;
}

.phone-speaker {
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 4;
    width: 88px;
    height: 24px;
    border-radius: 999px;
    background: #000;
    transform: translateX(-50%);
}

.phone-hero {
    width: 296px;
    height: 645px;
    transform: rotate(2.5deg);
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%,
    100% { transform: rotate(2.5deg) translateY(0); }
    50% { transform: rotate(1.5deg) translateY(-12px); }
}

.float-card {
    position: absolute;
    z-index: 5;
    min-width: 210px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.float-card-next {
    top: 118px;
    right: -15px;
}

.float-card-paid {
    bottom: 105px;
    left: -15px;
}

.float-card > span:last-child {
    display: grid;
}

.float-card small {
    color: var(--slate);
    font-size: 10px;
}

.float-card strong {
    font-size: 12px;
}

.float-icon,
.success-ring {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.float-icon {
    color: var(--navy);
    background: rgba(31, 186, 208, 0.15);
}

.float-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-ring {
    color: #087c59;
    background: rgba(16, 185, 129, 0.14);
}

.success-ring svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
}

.proof-strip {
    position: relative;
    z-index: 3;
    color: var(--white);
    background: var(--cyan-deep);
}

.proof-list {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.proof-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.section {
    padding: 112px 0;
}

.intro-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(31, 186, 208, 0.07), transparent 25%),
        var(--mist);
}

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

.section-heading.compact {
    max-width: 680px;
}

.kicker {
    margin-bottom: 16px;
    color: var(--cyan-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.kicker.light {
    color: var(--cyan-bright);
}

.section-heading h2,
.pupil-copy h2,
.faq-intro h2,
.download-content h2 {
    margin-bottom: 22px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.section-heading > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: var(--slate);
    font-size: 17px;
}

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

.bento-card {
    position: relative;
    min-height: 330px;
    padding: 31px;
    border: 1px solid rgba(16, 26, 41, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 6, 18, 0.045);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(31, 186, 208, 0.26);
    box-shadow: 0 20px 50px rgba(0, 6, 18, 0.09);
}

.bento-card h3 {
    max-width: 460px;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.2;
}

.bento-card > p:not(.card-label),
.bento-copy > p:not(.card-label) {
    color: var(--slate);
    font-size: 14px;
}

.card-label {
    margin: 20px 0 9px;
    color: var(--slate);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.icon-box {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 0;
    background: transparent;
}

.icon-box::before,
.journey-icon::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 27px;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
    transition: width 0.25s ease, opacity 0.25s ease;
}

.icon-box::after,
.journey-icon::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.icon-box svg,
.journey-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-box.cyan { color: #087f91; }
.icon-box.mint { color: #087b59; }
.icon-box.coral { color: #cc3f59; }
.icon-box.violet { color: #6840c5; }
.icon-box.amber { color: #a76600; }

.bento-schedule {
    min-height: 520px;
    grid-column: span 8;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 34px;
    background: var(--white);
}

.bento-payments,
.bento-progress {
    grid-column: span 4;
}

.bento-message,
.bento-routes,
.bento-themes {
    grid-column: span 4;
}

.micro-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.micro-list li {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--cyan-deep);
    background: rgba(31, 186, 208, 0.09);
    font-size: 10px;
    font-weight: 800;
}

.mini-calendar {
    align-self: end;
    min-width: 410px;
    margin: 42px -55px -55px 0;
    padding: 19px;
    border: 8px solid #111823;
    border-radius: 25px 25px 0 0;
    color: #dce7f2;
    background: #0c121b;
    box-shadow: 0 25px 60px rgba(0, 6, 18, 0.28);
}

.calendar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    font-size: 11px;
}

.calendar-top span {
    color: #8c99aa;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 10px 0;
    border-block: 1px solid #202b39;
    color: #7d8998;
    text-align: center;
    font-size: 8px;
}

.calendar-days span {
    display: grid;
    gap: 3px;
}

.calendar-days small {
    color: #dae1e8;
    font-size: 11px;
}

.calendar-body {
    position: relative;
    height: 270px;
    display: grid;
    grid-template-columns: 36px repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
    background-image:
        linear-gradient(#1a2533 1px, transparent 1px),
        linear-gradient(90deg, #1a2533 1px, transparent 1px);
    background-size: 100% calc(100% / 6), calc((100% - 36px) / 5) 100%;
    background-position: 0 0, 36px 0;
}

.time-label {
    grid-column: 1;
    grid-row: var(--row);
    padding-top: 5px;
    color: #687689;
    font-size: 7px;
}

.lesson-block {
    z-index: 2;
    grid-column: var(--column);
    grid-row: var(--row) / span var(--span);
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 3px;
    padding: 8px 6px;
    border-radius: 7px;
    color: #07111f;
    font-size: 7px;
    overflow: hidden;
}

.lesson-block small {
    width: max-content;
    padding: 2px 4px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 6, 18, 0.38);
    font-size: 5px;
    font-weight: 800;
}

.lesson-block strong {
    font-size: 8px;
}

.cyan-block { background: #2dccdf; }
.orange-block { background: #f9a20a; }
.mint-block { background: #24c997; }

.balance-widget {
    position: absolute;
    left: 31px;
    right: 31px;
    bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px;
    border: 1px solid #e5eaef;
    border-radius: 16px;
    background: #f8fafb;
}

.balance-widget > span:first-child {
    display: grid;
}

.balance-widget small {
    color: var(--slate);
    font-size: 10px;
}

.balance-widget strong {
    font-size: 22px;
}

.balance-up {
    padding: 7px 10px;
    border-radius: 999px;
    color: #087b59;
    background: rgba(16, 185, 129, 0.12);
    font-size: 10px;
    font-weight: 800;
}

.progress-widget {
    position: absolute;
    left: 31px;
    right: 31px;
    bottom: 27px;
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 16px;
}

.progress-ring {
    position: relative;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--coral) 72%, #e9eef2 0);
}

.progress-ring::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
}

.progress-ring span {
    position: relative;
    z-index: 1;
    font-size: 19px;
    font-weight: 800;
}

.progress-ring small {
    font-size: 10px;
}

.progress-widget > div:last-child {
    display: grid;
    gap: 7px;
}

.progress-widget > div:last-child strong {
    font-size: 12px;
}

.progress-widget > div:last-child > span {
    height: 6px;
    border-radius: 999px;
    background: #e8edf1;
}

.progress-widget i {
    display: block;
    width: var(--width);
    height: 100%;
    border-radius: inherit;
    background: var(--coral);
}

.progress-widget > div:last-child small {
    color: var(--slate);
    font-size: 9px;
}

.message-bubbles {
    position: absolute;
    left: 31px;
    right: 31px;
    bottom: 25px;
    display: grid;
    gap: 8px;
}

.message-bubbles span {
    max-width: 87%;
    padding: 10px 12px;
    border-radius: 12px 12px 12px 3px;
    color: #435066;
    background: #eef2f5;
    font-size: 10px;
}

.message-bubbles span:last-child {
    justify-self: end;
    border-radius: 12px 12px 3px 12px;
    color: #064c55;
    background: rgba(31, 186, 208, 0.17);
}

.route-map {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 115px;
    background:
        linear-gradient(34deg, transparent 47%, rgba(16, 26, 41, 0.035) 48%, rgba(16, 26, 41, 0.035) 51%, transparent 52%),
        #f3f5f4;
}

.route-map svg {
    width: 100%;
    height: 100%;
}

.map-road {
    fill: none;
    stroke: #c7ced3;
    stroke-width: 10;
    stroke-linecap: round;
}

.map-route {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 5 5;
}

.route-map circle {
    fill: var(--navy);
    stroke: var(--white);
    stroke-width: 3;
}

.theme-swatches {
    position: absolute;
    left: 31px;
    right: 31px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-swatches span {
    width: 34px;
    height: 34px;
    border: 4px solid var(--white);
    border-radius: 50%;
    background: var(--swatch);
    box-shadow: 0 0 0 1px #d9e0e5;
}

.theme-swatches span:first-child {
    width: 42px;
    height: 42px;
    box-shadow: 0 0 0 2px var(--cyan);
}

/* Feature showcase */
.feature-showcase {
    display: grid;
    grid-template-columns: minmax(430px, 0.94fr) minmax(480px, 1.06fr);
    align-items: stretch;
    gap: 42px;
}

.feature-preview {
    position: relative;
    min-height: 790px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(circle at 50% 28%, rgba(31, 186, 208, 0.24), transparent 32%),
        linear-gradient(145deg, #000612, #071524);
    box-shadow: 0 30px 80px rgba(0, 6, 18, 0.2);
    overflow: hidden;
}

.preview-grid {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.preview-topline {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 27px 29px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.46);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.preview-topline span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
}

.preview-topline i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(31, 186, 208, 0.12);
}

.preview-phone {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: -105px;
    width: 318px;
    height: 694px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 47px;
    background: #080b10;
    box-shadow: 0 38px 85px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%) rotate(1.4deg);
    overflow: hidden;
}

.preview-phone::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.04);
}

.preview-phone > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 38px;
}

.preview-phone .phone-speaker {
    top: 18px;
}

.preview-summary {
    position: absolute;
    z-index: 5;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.preview-summary small {
    color: var(--slate);
    font-size: 9px;
}

.preview-summary strong {
    font-size: 12px;
}

.preview-summary-lessons {
    top: 145px;
    left: 23px;
    min-width: 137px;
    display: grid;
}

.preview-summary-lessons > span {
    margin-top: 6px;
    color: #078361;
    font-size: 8px;
    font-weight: 800;
}

.preview-summary-gaps {
    right: 21px;
    bottom: 128px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-summary-gaps > div {
    display: grid;
}

.preview-check {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #078361;
    background: rgba(16, 185, 129, 0.13);
}

.preview-check svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
}

.feature-list {
    border-top: 1px solid rgba(16, 26, 41, 0.13);
}

.feature-row {
    position: relative;
    min-height: 131px;
    display: grid;
    grid-template-columns: 30px 47px 1fr;
    align-items: center;
    gap: 17px;
    padding: 20px 8px;
    border-bottom: 1px solid rgba(16, 26, 41, 0.13);
    transition: padding-left 0.25s ease, background 0.25s ease;
}

.feature-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    border-radius: 99px;
    background: var(--cyan);
    transform: translateY(-50%);
    transition: height 0.25s ease;
}

.feature-row:hover {
    padding-left: 15px;
    background: linear-gradient(90deg, rgba(31, 186, 208, 0.07), transparent 72%);
}

.feature-row:hover::before {
    height: 54px;
}

.feature-row:hover .icon-box::before {
    width: 39px;
    opacity: 0.72;
}

.feature-number {
    align-self: start;
    margin-top: 15px;
    color: #a9b4be;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.feature-row .icon-box {
    width: 46px;
    height: 46px;
}

.feature-row h3 {
    margin: 0 0 6px;
    font-size: 19px;
    line-height: 1.24;
    letter-spacing: -0.035em;
}

.feature-row p {
    max-width: 510px;
    margin: 0;
    color: var(--slate);
    font-size: 12px;
    line-height: 1.65;
}

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

.journey-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.journey-step {
    position: relative;
    min-height: 335px;
    padding: 32px 28px;
    background: var(--white);
}

.journey-step:not(:last-child) {
    border-right: 1px solid var(--line);
}

.journey-step::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 100%;
    bottom: 0;
    height: 4px;
    background: var(--cyan);
    transition: right 0.3s ease;
}

.journey-step:hover::after {
    right: 28px;
}

.step-index {
    position: absolute;
    right: 25px;
    top: 22px;
    color: #d8e0e5;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.07em;
}

.journey-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 54px 0 26px;
    border-radius: 0;
    color: var(--cyan-deep);
    background: transparent;
}

.journey-icon::before {
    width: 32px;
}

.journey-step:hover .journey-icon::before {
    width: 46px;
    opacity: 0.72;
}

.journey-step h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.journey-step p {
    margin: 0;
    color: var(--slate);
    font-size: 13px;
}

/* Outcome-led homepage */
.outcome-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(31, 186, 208, 0.07), transparent 25%),
        var(--mist);
}

.outcome-showcase {
    display: grid;
    grid-template-columns: minmax(430px, 0.92fr) minmax(500px, 1.08fr);
    align-items: stretch;
    gap: 48px;
}

.outcome-media {
    position: relative;
    min-height: 760px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(circle at 50% 20%, rgba(31, 186, 208, 0.25), transparent 31%),
        linear-gradient(145deg, #000612, #071524);
    box-shadow: 0 30px 80px rgba(0, 6, 18, 0.2);
    overflow: hidden;
}

.outcome-grid {
    position: absolute;
    inset: 0;
    opacity: 0.11;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.outcome-media-label {
    position: absolute;
    z-index: 4;
    top: 26px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.outcome-media-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.outcome-device {
    position: absolute;
    z-index: 2;
    width: 238px;
    border: 7px solid #111923;
    border-radius: 40px;
    background: #080a0d;
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.44);
    overflow: hidden;
}

.outcome-device img {
    width: 100%;
    height: auto;
}

.outcome-device-primary {
    left: 42px;
    bottom: -48px;
    transform: rotate(-2deg);
}

.outcome-device-secondary {
    top: 104px;
    right: 28px;
    width: 214px;
    transform: rotate(3deg);
}

.outcome-media-note {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 25px;
    display: grid;
    gap: 2px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(2, 12, 25, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.outcome-media-note small {
    color: rgba(255, 255, 255, 0.46);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.outcome-media-note strong {
    color: var(--white);
    font-size: 12px;
}

.outcome-list {
    border-top: 1px solid rgba(16, 26, 41, 0.14);
}

.outcome-row {
    min-height: 190px;
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 18px;
    align-items: start;
    padding: 25px 8px;
    border-bottom: 1px solid rgba(16, 26, 41, 0.14);
}

.outcome-number {
    padding-top: 7px;
    color: #a9b4be;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.outcome-label {
    margin-bottom: 5px;
    color: var(--cyan-deep);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.outcome-row h3 {
    margin-bottom: 7px;
    font-size: 22px;
    line-height: 1.2;
}

.outcome-row > div > p:not(.outcome-label) {
    max-width: 560px;
    margin-bottom: 10px;
    color: var(--slate);
    font-size: 12px;
}

.outcome-row a,
.audience-lane > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cyan-deep);
    font-size: 10px;
    font-weight: 800;
}

.outcome-row a span,
.audience-lane > a span {
    transition: transform 0.2s ease;
}

.outcome-row a:hover span,
.outcome-row a:focus-visible span,
.audience-lane > a:hover span,
.audience-lane > a:focus-visible span {
    transform: translateX(4px);
}

.outcome-cta {
    width: min(100%, 980px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 42px auto 0;
    padding: 24px 0;
    border-top: 1px solid rgba(16, 26, 41, 0.14);
    border-bottom: 1px solid rgba(16, 26, 41, 0.14);
}

.outcome-cta p {
    display: grid;
    gap: 2px;
    margin: 0;
}

.outcome-cta strong {
    font-size: 14px;
}

.outcome-cta span {
    color: var(--slate);
    font-size: 11px;
}

.outcome-cta .button {
    flex: 0 0 auto;
}

.audience-section {
    position: relative;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 0%, rgba(31, 186, 208, 0.18), transparent 34%),
        linear-gradient(145deg, #000612, #071524);
    overflow: hidden;
}

.audience-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.audience-section .shell {
    position: relative;
    z-index: 1;
}

.audience-section .section-heading > p:last-child {
    color: rgba(255, 255, 255, 0.56);
}

.audience-split {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 48px;
    max-width: 1040px;
    margin: 0 auto;
}

.audience-lane {
    padding: 18px 12px 8px;
}

.audience-index {
    margin-bottom: 22px;
    color: var(--cyan-bright);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.audience-lane h3 {
    max-width: 420px;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 32px;
    line-height: 1.12;
}

.audience-lane > p:not(.audience-index) {
    max-width: 450px;
    margin-bottom: 23px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
}

.audience-lane ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.audience-lane li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 700;
}

.audience-lane li::before {
    content: "";
    position: absolute;
    top: 0.73em;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--cyan);
}

.audience-lane > a {
    color: var(--cyan-bright);
}

.audience-divider {
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.audience-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.45);
    background: #06111f;
    font-size: 9px;
    font-weight: 800;
    transform: translate(-50%, -50%);
}

.road-ready-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(31, 186, 208, 0.09), transparent 27%),
        linear-gradient(180deg, #ffffff, #f4f8fa);
}

.road-ready-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 60px;
}

.road-ready-heading h2 {
    font-size: clamp(46px, 5.5vw, 70px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.road-ready-heading > div:last-child {
    padding-bottom: 7px;
}

.road-ready-heading > div:last-child > p {
    max-width: 540px;
    margin-bottom: 17px;
    color: var(--slate);
    font-size: 16px;
}

.road-ready-heading a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cyan-deep);
    font-size: 10px;
    font-weight: 800;
}

.road-ready-heading a span {
    transition: transform 0.2s ease;
}

.road-ready-heading a:hover span,
.road-ready-heading a:focus-visible span {
    transform: translateX(4px);
}

.road-ready-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(16, 26, 41, 0.14);
    border-bottom: 1px solid rgba(16, 26, 41, 0.14);
}

.road-ready-item {
    min-height: 315px;
    padding: 28px 25px 25px;
}

.road-ready-item:not(:last-child) {
    border-right: 1px solid rgba(16, 26, 41, 0.14);
}

.road-ready-number {
    display: block;
    margin-bottom: 62px;
    color: #c2ccd3;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.road-ready-label {
    margin-bottom: 7px;
    color: var(--cyan-deep);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.road-ready-item h3 {
    margin-bottom: 11px;
    font-size: 21px;
    line-height: 1.17;
}

.road-ready-item > p:last-of-type {
    margin: 0;
    color: var(--slate);
    font-size: 11px;
}

.road-ready-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.road-ready-badges span {
    padding: 6px 9px;
    border: 1px solid rgba(16, 26, 41, 0.12);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.58);
    font-size: 8px;
    font-weight: 800;
}

.road-ready-note {
    margin: 16px 0 0;
    color: #8b98a2;
    font-size: 8px;
    text-align: right;
}

.pupil-section {
    position: relative;
    padding-block: 125px;
    color: var(--white);
    background:
        radial-gradient(circle at 15% 50%, rgba(31, 186, 208, 0.17), transparent 30%),
        linear-gradient(135deg, #000612, #071321);
    overflow: hidden;
}

.pupil-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 110px;
}

.pupil-visual {
    position: relative;
    min-height: 660px;
    display: grid;
    place-items: center;
}

.pupil-orbit {
    position: absolute;
    border: 1px solid rgba(31, 186, 208, 0.13);
    border-radius: 50%;
}

.orbit-one {
    width: 510px;
    height: 510px;
}

.orbit-two {
    width: 670px;
    height: 670px;
    border-style: dashed;
}

.phone-pupil {
    width: 296px;
    height: 645px;
    transform: rotate(-2deg);
}

.achievement-pop {
    position: absolute;
    right: 4px;
    bottom: 98px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.achievement-pop > span {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.15);
}

.achievement-pop > div {
    display: grid;
}

.achievement-pop small {
    color: var(--slate);
    font-size: 9px;
}

.achievement-pop strong {
    font-size: 12px;
}

.pupil-copy {
    position: relative;
    z-index: 2;
}

.pupil-copy h2 {
    max-width: 600px;
}

.lead-light {
    max-width: 620px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
}

.check-list {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-list li > span {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #067a8b;
    background: rgba(31, 186, 208, 0.15);
}

.check-list svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
}

.check-list li > div {
    display: grid;
    gap: 4px;
}

.check-list strong {
    font-size: 14px;
}

.check-list small {
    color: var(--slate);
    font-size: 12px;
}

.light-list {
    gap: 24px;
}

.light-list li > span {
    color: var(--cyan-bright);
    background: rgba(31, 186, 208, 0.12);
}

.light-list strong {
    color: var(--white);
    font-size: 15px;
}

.light-list small {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.52);
}

.included-pill {
    width: max-content;
    max-width: 100%;
    margin-top: 35px;
    padding: 11px 15px;
    border: 1px solid rgba(31, 186, 208, 0.24);
    border-radius: 999px;
    color: var(--cyan-bright);
    background: rgba(31, 186, 208, 0.08);
    font-size: 11px;
    font-weight: 800;
}

.pricing-section {
    background: #f6f9fa;
}

.pricing-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: min(100%, 980px);
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    min-height: 455px;
    display: flex;
    flex-direction: column;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(31, 186, 208, 0.09), transparent 32%),
        var(--white);
    overflow: hidden;
}

.featured-price {
    color: var(--white);
    background:
        radial-gradient(circle at 88% 0%, rgba(31, 186, 208, 0.2), transparent 33%),
        linear-gradient(145deg, #000612, #071524);
    border-color: var(--navy);
    box-shadow: var(--shadow);
}

.pricing-card-top {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 43px;
}

.price-badge {
    width: max-content;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--cyan-deep);
    background: rgba(31, 186, 208, 0.1);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-price .price-badge {
    color: var(--cyan-bright);
    background: rgba(31, 186, 208, 0.12);
}

.price-frequency {
    color: #8a97a5;
    font-size: 10px;
    font-weight: 700;
}

.featured-price .price-frequency {
    color: rgba(255, 255, 255, 0.42);
}

.plan-name {
    margin-bottom: 10px;
    color: var(--slate);
    font-size: 13px;
    font-weight: 800;
}

.featured-price .plan-name {
    color: rgba(255, 255, 255, 0.52);
}

.price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 21px;
    line-height: 1;
}

.price > span {
    margin-top: 9px;
    font-size: 18px;
    font-weight: 800;
}

.price strong {
    font-size: 58px;
    letter-spacing: -0.07em;
}

.price small {
    align-self: flex-end;
    margin: 0 0 7px 7px;
    color: var(--slate);
    font-size: 11px;
}

.featured-price .price small {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card > p:not(.plan-name) {
    min-height: 47px;
    max-width: 390px;
    margin-bottom: 24px;
    color: var(--slate);
    font-size: 13px;
}

.featured-price > p:not(.plan-name) {
    color: rgba(255, 255, 255, 0.58);
}

.plan-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 17px;
    margin-bottom: 28px;
}

.plan-detail span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
}

.plan-detail svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--cyan-deep);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.featured-price .plan-detail span {
    color: rgba(255, 255, 255, 0.74);
}

.featured-price .plan-detail svg {
    stroke: var(--cyan-bright);
}

.pricing-card > .button {
    margin-top: auto;
}

.pricing-includes {
    width: min(100%, 980px);
    min-height: 0;
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    margin: 20px auto 0;
    padding: 28px 32px;
    border: 1px solid rgba(31, 186, 208, 0.2);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.pricing-includes .card-label {
    margin-top: 0;
    margin-bottom: 7px;
}

.pricing-includes h3 {
    font-size: 23px;
    line-height: 1.1;
}

.pricing-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-feature-grid li {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    border-left: 1px solid var(--line);
}

.pricing-feature-grid span {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--cyan-deep);
    background: rgba(31, 186, 208, 0.1);
}

.pricing-feature-grid svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pricing-feature-grid strong {
    font-size: 10px;
    line-height: 1.45;
}

.trial-banner {
    width: min(100%, 980px);
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(340px, 1.2fr) auto;
    align-items: center;
    gap: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 26px;
    color: var(--white);
    background:
        radial-gradient(circle at 74% 0%, rgba(31, 186, 208, 0.2), transparent 34%),
        linear-gradient(145deg, #000612, #071524);
    box-shadow: 0 24px 58px rgba(0, 6, 18, 0.16);
    overflow: hidden;
}

.trial-banner-copy {
    position: relative;
    z-index: 1;
}

.trial-overline {
    margin-bottom: 8px;
    color: var(--cyan-bright);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trial-banner-copy h3 {
    max-width: 300px;
    margin-bottom: 9px;
    color: var(--white);
    font-size: 24px;
    line-height: 1.1;
}

.trial-banner-copy > p:last-child {
    max-width: 320px;
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
}

.trial-offers {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.trial-offer {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.trial-offer-pdi {
    border-color: rgba(31, 186, 208, 0.35);
    background: linear-gradient(145deg, rgba(31, 186, 208, 0.17), rgba(31, 186, 208, 0.065));
}

.trial-offer > span {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trial-offer strong {
    color: var(--white);
    font-size: 21px;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.trial-offer-pdi strong {
    color: var(--cyan-bright);
}

.trial-offer small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
}

.trial-cta {
    position: relative;
    z-index: 1;
    min-width: 125px;
    white-space: nowrap;
}

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

.faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 110px;
}

.faq-intro {
    position: sticky;
    top: 115px;
}

.faq-intro h2 {
    margin-bottom: 25px;
}

.faq-intro > p:last-child {
    color: var(--slate);
    font-size: 14px;
}

.faq-intro a {
    color: var(--cyan-deep);
    font-weight: 700;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 0;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 13px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s ease;
}

.faq-list summary span::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary span {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.faq-list details[open] summary span::before,
.faq-list details[open] summary span::after {
    background: var(--white);
}

.faq-list details[open] summary span::after {
    transform: rotate(0);
}

.faq-list details p {
    max-width: 650px;
    margin: -4px 55px 26px 0;
    color: var(--slate);
    font-size: 13px;
}

.download-section {
    position: relative;
    padding: 110px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 0, rgba(31, 186, 208, 0.23), transparent 35%),
        var(--navy);
    overflow: hidden;
}

.download-grid {
    mask-image: radial-gradient(circle at center, black, transparent 73%);
}

.download-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.download-content > img {
    width: 74px;
    height: 74px;
    margin: 0 auto 26px;
}

.download-content h2 {
    margin-bottom: 20px;
}

.download-content > p:not(.kicker) {
    max-width: 600px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
}

.store-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.store-buttons a {
    transition: transform 0.2s ease, filter 0.2s ease;
}

.store-buttons a:hover,
.store-buttons a:focus-visible {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.store-buttons img {
    width: auto;
    height: 50px;
}

.store-buttons a:last-child img {
    height: 74px;
    margin: -12px 0;
}

.download-content > small {
    color: rgba(255, 255, 255, 0.34);
    font-size: 10px;
}

.site-footer {
    padding: 76px 0 26px;
    color: var(--white);
    background: #00040b;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 58px;
}

.brand-light {
    color: var(--white);
}

.footer-brand p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column button {
    width: max-content;
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.66);
    background: none;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column button:hover,
.footer-column button:focus-visible {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.29);
    font-size: 9px;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    max-width: 760px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 19px 21px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 70px rgba(0, 6, 18, 0.22);
    backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner > div:first-child {
    display: grid;
    gap: 4px;
}

.cookie-banner strong {
    font-size: 13px;
}

.cookie-banner p {
    margin: 0;
    color: var(--slate);
    font-size: 10px;
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.cookie-actions .button {
    min-height: 39px;
    padding: 9px 14px;
    font-size: 11px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.65s ease var(--delay, 0ms),
        transform 0.65s ease var(--delay, 0ms);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Features page */
.features-hero {
    position: relative;
    min-height: 790px;
    display: grid;
    align-items: center;
    padding: 138px 0 90px;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 28%, rgba(31, 186, 208, 0.2), transparent 30%),
        linear-gradient(145deg, #000612, #071524);
    overflow: hidden;
}

.features-hero-grid,
.feature-final-grid,
.school-feature-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.features-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 76px;
}

.features-hero-copy h1 {
    max-width: 690px;
    margin-bottom: 25px;
    font-size: clamp(56px, 6.4vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.075em;
}

.features-hero-copy > p:not(.kicker) {
    max-width: 620px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 18px;
}

.features-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 800;
}

.features-hero-proof span {
    position: relative;
}

.features-hero-proof span:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--cyan);
}

.features-hero-visual {
    position: relative;
    min-height: 585px;
}

.school-hero-visual {
    display: grid;
    place-items: center;
}

.school-hero-visual .school-workflow {
    position: relative;
    z-index: 2;
    width: min(100%, 540px);
    color: var(--white);
}

.features-hero-orbit {
    position: absolute;
    border: 1px solid rgba(31, 186, 208, 0.14);
    border-radius: 50%;
}

.features-hero-orbit.orbit-a {
    width: 520px;
    height: 520px;
    top: 20px;
    left: 10px;
}

.features-hero-orbit.orbit-b {
    width: 390px;
    height: 390px;
    top: 85px;
    left: 75px;
}

.feature-hero-phone,
.story-phone {
    position: absolute;
    margin: 0;
    border: 7px solid #111923;
    border-radius: 40px;
    background: #080a0d;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.44);
    overflow: hidden;
}

.feature-hero-phone img,
.story-phone img {
    width: 100%;
    height: auto;
}

.feature-hero-phone-main {
    z-index: 2;
    width: 255px;
    left: 74px;
    bottom: -26px;
    transform: rotate(-3deg);
}

.feature-hero-phone-side {
    z-index: 1;
    width: 218px;
    right: 22px;
    top: 47px;
    opacity: 0.88;
    transform: rotate(5deg);
}

.features-hero-note {
    position: absolute;
    z-index: 4;
    right: 12px;
    bottom: 28px;
    display: grid;
    gap: 2px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(2, 12, 25, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.features-hero-note small {
    color: var(--cyan-bright);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.features-hero-note strong {
    color: var(--white);
    font-size: 11px;
}

.feature-page-nav {
    position: sticky;
    z-index: 850;
    top: 78px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.feature-page-nav .shell {
    display: flex;
    justify-content: center;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
}

.feature-page-nav .shell::-webkit-scrollbar {
    display: none;
}

.feature-page-nav a {
    flex: 0 0 auto;
    padding: 16px 0 14px;
    border-bottom: 2px solid transparent;
    color: var(--slate);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.feature-page-nav a:hover,
.feature-page-nav a:focus-visible {
    border-bottom-color: var(--cyan);
    color: var(--ink);
}

.feature-overview {
    background: var(--white);
}

.feature-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-principle {
    min-height: 245px;
    padding: 35px 34px;
}

.feature-principle:not(:last-child) {
    border-right: 1px solid var(--line);
}

.feature-principle > span {
    display: block;
    margin-bottom: 54px;
    color: #c7d0d7;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.feature-principle h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.feature-principle p {
    margin: 0;
    color: var(--slate);
    font-size: 12px;
}

.feature-story {
    position: relative;
    padding: 125px 0;
    background: var(--white);
    overflow: hidden;
    scroll-margin-top: 128px;
}

.feature-story-mist {
    background:
        radial-gradient(circle at 85% 20%, rgba(31, 186, 208, 0.07), transparent 25%),
        var(--mist);
}

.feature-story-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 76% 24%, rgba(31, 186, 208, 0.2), transparent 30%),
        linear-gradient(145deg, #000612, #071524);
}

.feature-story-grid {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(90deg, transparent, black 45%, transparent);
}

.feature-story-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(430px, 0.94fr) minmax(500px, 1.06fr);
    align-items: center;
    gap: 88px;
}

.feature-story-layout-reverse .feature-story-copy {
    order: 2;
}

.feature-story-layout-reverse .feature-story-media {
    order: 1;
}

.feature-story-copy h2,
.school-feature-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.feature-story-lead {
    max-width: 580px;
    margin-bottom: 31px;
    color: var(--slate);
    font-size: 16px;
}

.feature-story-dark .feature-story-lead,
.feature-story-dark .feature-detail-list li span {
    color: rgba(255, 255, 255, 0.55);
}

.feature-story-dark .feature-detail-list,
.feature-story-dark .feature-detail-list li {
    border-color: rgba(255, 255, 255, 0.12);
}

.feature-detail-list {
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.feature-detail-list li {
    display: grid;
    grid-template-columns: minmax(160px, 0.72fr) minmax(220px, 1.28fr);
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.feature-detail-list li strong {
    font-size: 11px;
}

.feature-detail-list li span {
    color: var(--slate);
    font-size: 10px;
    line-height: 1.55;
}

.feature-story-media {
    position: relative;
    min-height: 700px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 48% 18%, rgba(31, 186, 208, 0.22), transparent 30%),
        linear-gradient(145deg, #000612, #071524);
    box-shadow: 0 30px 75px rgba(0, 6, 18, 0.18);
    overflow: hidden;
}

.feature-story-dark .feature-story-media {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 50% 20%, rgba(31, 186, 208, 0.24), transparent 30%),
        rgba(255, 255, 255, 0.035);
}

.story-phone {
    width: 238px;
}

.story-phone-main {
    z-index: 2;
    left: 48px;
    bottom: -52px;
    transform: rotate(-2deg);
}

.story-phone-secondary {
    z-index: 1;
    width: 215px;
    top: 56px;
    right: 31px;
    opacity: 0.92;
    transform: rotate(3deg);
}

.story-phone-light {
    background: var(--white);
}

.story-caption {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 25px;
    display: grid;
    gap: 2px;
    max-width: 225px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: var(--white);
    background: rgba(2, 12, 25, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.story-caption small,
.story-metric small {
    color: var(--cyan-bright);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.story-caption strong,
.story-metric strong {
    color: var(--white);
    font-size: 11px;
}

.feature-story-media-single .story-phone-main {
    left: 50%;
    bottom: -56px;
    width: 262px;
    transform: translateX(-50%);
}

.story-metric {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 2px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(2, 12, 25, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.story-metric-top {
    top: 120px;
    left: 30px;
}

.story-metric-bottom {
    right: 26px;
    bottom: 105px;
}

.school-feature-section {
    position: relative;
    padding: 125px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 30%, rgba(31, 186, 208, 0.19), transparent 31%),
        linear-gradient(145deg, #000612, #071524);
    overflow: hidden;
    scroll-margin-top: 128px;
}

.school-feature-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(430px, 0.95fr) minmax(470px, 1.05fr);
    align-items: center;
    gap: 90px;
}

.school-feature-copy > p:not(.kicker) {
    max-width: 610px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 16px;
}

.school-feature-copy .feature-detail-list,
.school-feature-copy .feature-detail-list li {
    border-color: rgba(255, 255, 255, 0.12);
}

.school-feature-copy .feature-detail-list li span {
    color: rgba(255, 255, 255, 0.54);
}

.school-feature-copy .button {
    margin-top: 30px;
}

.school-workflow {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

.school-workflow-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.school-workflow-head span {
    color: var(--cyan-bright);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.school-workflow-head strong {
    font-size: 14px;
}

.school-workflow ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

.school-workflow li {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 17px;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.school-step-number {
    color: rgba(255, 255, 255, 0.28);
    font-size: 11px;
    font-weight: 800;
}

.school-workflow li > div {
    display: grid;
    gap: 3px;
}

.school-workflow li > div strong {
    font-size: 13px;
}

.school-workflow li > div small {
    color: rgba(255, 255, 255, 0.46);
    font-size: 9px;
}

.school-step-status {
    padding: 5px 8px;
    border: 1px solid rgba(31, 186, 208, 0.25);
    border-radius: 999px;
    color: var(--cyan-bright);
    background: rgba(31, 186, 208, 0.08);
    font-size: 8px;
    font-weight: 800;
}

.school-workflow-foot {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 19px 28px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 8px;
    font-weight: 700;
}

.school-workflow-foot span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.school-workflow-foot i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.11);
}

.feature-more {
    background: var(--mist);
}

.feature-more-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.feature-more-list span {
    min-height: 98px;
    display: flex;
    align-items: center;
    padding: 20px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 800;
}

.feature-final-cta {
    position: relative;
    padding: 125px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 0%, rgba(31, 186, 208, 0.22), transparent 34%),
        linear-gradient(145deg, #000612, #071524);
    overflow: hidden;
}

.feature-final-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    text-align: center;
}

.feature-final-content h2 {
    margin-bottom: 20px;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1;
}

.feature-final-content > p:not(.kicker) {
    max-width: 620px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 16px;
}

.feature-final-content .hero-actions {
    justify-content: center;
}

.feature-final-content > small {
    color: rgba(255, 255, 255, 0.43);
    font-size: 9px;
    font-weight: 800;
}

/* Authentication callback pages */
.auth-page {
    position: relative;
    min-height: calc(100vh - 58px);
    display: grid;
    place-items: center;
    padding: 125px 20px 72px;
    background:
        radial-gradient(circle at 50% 18%, rgba(31, 186, 208, 0.18), transparent 28%),
        linear-gradient(145deg, #000612, #071524);
    overflow: hidden;
}

.auth-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 66px 66px;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.auth-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 186, 208, 0.17), transparent 67%);
    transform: translate(-50%, -50%);
}

.auth-card {
    position: relative;
    z-index: 2;
    width: min(100%, 470px);
    padding: 37px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
}

.auth-card-confirm {
    text-align: center;
}

.auth-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 21px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--navy);
    background: transparent;
}

.auth-icon.success {
    color: #087b59;
    background: rgba(16, 185, 129, 0.14);
}

.auth-icon.error {
    color: #c6374d;
    background: rgba(255, 100, 124, 0.14);
}

.auth-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.auth-kicker {
    margin-bottom: 8px;
    color: var(--cyan-deep);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-align: center;
    text-transform: uppercase;
}

.auth-kicker.error-text {
    color: #c6374d;
}

.auth-card h1 {
    margin-bottom: 11px;
    font-size: 29px;
    line-height: 1.15;
    text-align: center;
}

.auth-intro {
    margin-bottom: 25px;
    color: var(--slate);
    font-size: 13px;
    text-align: center;
}

.auth-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 14px;
    border: 1px solid;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.auth-notice[hidden] {
    display: none;
}

.auth-notice.info {
    color: #087487;
    border-color: rgba(31, 186, 208, 0.24);
    background: rgba(31, 186, 208, 0.08);
}

.auth-notice.error {
    color: #a72d41;
    border-color: rgba(255, 100, 124, 0.28);
    background: rgba(255, 100, 124, 0.08);
}

.auth-spinner {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    border: 2px solid rgba(31, 186, 208, 0.28);
    border-top-color: var(--cyan-deep);
    border-radius: 50%;
    animation: auth-spin 0.8s linear infinite;
}

.auth-spinner.large {
    width: 27px;
    height: 27px;
    border-width: 3px;
}

@keyframes auth-spin {
    to { transform: rotate(360deg); }
}

.auth-form[hidden],
.auth-success[hidden],
#confirmingState[hidden],
#confirmedState[hidden],
#confirmationErrorState[hidden] {
    display: none;
}

.auth-form {
    display: grid;
    gap: 17px;
}

.auth-field {
    display: grid;
    gap: 7px;
}

.auth-field label {
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
}

.password-field {
    position: relative;
}

.password-field input {
    width: 100%;
    height: 50px;
    padding: 0 62px 0 14px;
    border: 1px solid #dce3e8;
    border-radius: 12px;
    color: var(--ink);
    background: #f8fafb;
    font-size: 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.password-field input:focus {
    outline: none;
    border-color: var(--cyan);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(31, 186, 208, 0.11);
}

.password-field button {
    position: absolute;
    top: 50%;
    right: 11px;
    padding: 6px;
    border: 0;
    color: var(--cyan-deep);
    background: none;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transform: translateY(-50%);
}

.password-guidance {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: #8c98a7;
    font-size: 9px;
    font-weight: 700;
}

.password-guidance span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.password-guidance i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd3da;
}

.password-guidance span.valid {
    color: #078361;
}

.password-guidance span.valid i {
    background: var(--mint);
}

.auth-submit {
    margin-top: 4px;
}

.auth-submit:disabled {
    opacity: 0.65;
    cursor: wait;
}

.auth-success {
    text-align: center;
}

.auth-success-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    color: #087b59;
    background: rgba(16, 185, 129, 0.14);
}

.auth-success-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.auth-success h2 {
    margin-bottom: 8px;
    font-size: 22px;
}

.auth-success p {
    margin-bottom: 20px;
    color: var(--slate);
    font-size: 12px;
}

.auth-text-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--cyan-deep);
    font-size: 10px;
    font-weight: 800;
}

.auth-help {
    margin: 22px 0 0;
    color: #8b97a6;
    font-size: 10px;
    text-align: center;
}

.auth-help a {
    color: var(--cyan-deep);
    font-weight: 800;
}

.auth-actions {
    display: grid;
    gap: 9px;
}

.auth-footer {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.38);
    background: #00040b;
    font-size: 9px;
}

.auth-footer a {
    transition: color 0.2s ease;
}

.auth-footer button {
    padding: 0;
    border: 0;
    color: inherit;
    background: none;
    font-size: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
}

.auth-footer a:hover,
.auth-footer a:focus-visible,
.auth-footer button:hover,
.auth-footer button:focus-visible {
    color: var(--cyan);
}

.auth-nav-cta {
    display: inline-flex;
}

/* Interior static pages */
.page-hero {
    position: relative;
    padding: 155px 0 76px;
    color: var(--white);
    background:
        radial-gradient(circle at 70% 0, rgba(31, 186, 208, 0.18), transparent 35%),
        var(--navy);
    overflow: hidden;
}

.page-hero .shell {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(44px, 6vw, 70px);
    line-height: 1;
}

.page-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
}

.marketing-page-hero {
    padding-bottom: 95px;
}

.marketing-page-hero h1 {
    max-width: 920px;
}

.page-hero .marketing-page-lead {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.7;
}

.marketing-page-hero .hero-actions {
    margin-top: 30px;
}

.legal-content {
    padding: 80px 0 110px;
}

.legal-shell {
    max-width: 820px;
}

.legal-content h2 {
    margin: 47px 0 14px;
    font-size: 27px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin: 29px 0 10px;
    font-size: 18px;
}

.legal-content p,
.legal-content li {
    color: var(--slate);
    font-size: 14px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 22px;
}

.legal-content a {
    color: var(--cyan-deep);
    font-weight: 700;
}

.info-card {
    margin: 28px 0;
    padding: 24px;
    border: 1px solid rgba(31, 186, 208, 0.22);
    border-radius: var(--radius-sm);
    background: rgba(31, 186, 208, 0.07);
}

.info-card h2,
.info-card h3 {
    margin-top: 0;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.not-found {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 120px 20px 70px;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 40%, rgba(31, 186, 208, 0.18), transparent 30%),
        var(--navy);
    text-align: center;
}

.not-found span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.not-found h1 {
    margin: 10px 0 20px;
    font-size: clamp(70px, 16vw, 170px);
    line-height: 0.9;
}

.not-found p {
    max-width: 480px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.58);
}

.guide-narrow {
    max-width: 820px;
}

.guides-hero,
.guide-article-header {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 28%, rgba(31, 186, 208, 0.2), transparent 29%),
        linear-gradient(145deg, #000612 0%, #07111f 100%);
}

.guides-hero {
    padding: 150px 0 96px;
}

.guide-grid-lines {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.guide-hero-content {
    position: relative;
    z-index: 1;
}

.guide-hero-content h1 {
    max-width: 850px;
    margin: 10px 0 24px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.03;
}

.guide-hero-content > p:last-child {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
}

.guide-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--slate);
    font-size: 12px;
    font-weight: 700;
}

.guide-breadcrumbs a {
    transition: color 0.2s ease;
}

.guide-breadcrumbs a:hover,
.guide-breadcrumbs a:focus-visible {
    color: var(--cyan);
}

.guide-breadcrumbs-light {
    color: rgba(255, 255, 255, 0.56);
}

.guide-hub-section {
    padding: 96px 0 112px;
    background: var(--mist);
}

.guide-hub-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 46px;
}

.guide-hub-intro h2 {
    margin: 6px 0 0;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.08;
}

.guide-hub-intro > p {
    margin: 0;
    color: var(--slate);
    font-size: 15px;
}

.guide-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
}

.guide-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(16, 26, 41, 0.08);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 16px 45px rgba(0, 6, 18, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
    border-color: rgba(31, 186, 208, 0.38);
    box-shadow: 0 24px 60px rgba(0, 6, 18, 0.1);
    transform: translateY(-4px);
}

.guide-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--cyan-deep);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.guide-card-meta span:last-child {
    color: var(--slate);
}

.guide-card h2 {
    margin: 22px 0 13px;
    font-size: 23px;
    line-height: 1.2;
}

.guide-card h2 a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.guide-card {
    position: relative;
}

.guide-card p {
    margin-bottom: 26px;
    color: var(--slate);
    font-size: 14px;
}

.guide-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    color: var(--slate);
    font-size: 11px;
}

.guide-card-footer a {
    position: relative;
    z-index: 1;
    color: var(--cyan-deep);
    font-weight: 800;
}

.guide-empty {
    grid-column: 1 / -1;
    padding: 48px;
    border-radius: var(--radius-md);
    color: var(--slate);
    background: var(--white);
    text-align: center;
}

.guide-cta {
    padding: 72px 0;
    color: var(--white);
    background: linear-gradient(120deg, #07111f, #000612);
}

.guide-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.guide-cta h2 {
    margin: 5px 0 9px;
    font-size: clamp(28px, 4vw, 43px);
}

.guide-cta p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta .button {
    flex: 0 0 auto;
}

.guide-article-header {
    padding: 142px 0 82px;
}

.guide-article-header h1 {
    margin: 10px 0 20px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
}

.guide-article-summary {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.guide-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    font-weight: 700;
}

.guide-cover {
    max-width: 980px;
    margin-top: 56px;
}

.guide-cover img {
    width: 100%;
    max-height: 540px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.guide-article-body {
    padding-top: 74px;
    padding-bottom: 90px;
}

.guide-article-body h2 {
    margin: 52px 0 16px;
    font-size: 30px;
    line-height: 1.18;
}

.guide-article-body h2:first-child {
    margin-top: 0;
}

.guide-article-body h3 {
    margin: 34px 0 12px;
    font-size: 21px;
    line-height: 1.25;
}

.guide-article-body h4 {
    margin: 28px 0 10px;
    font-size: 17px;
}

.guide-article-body p,
.guide-article-body li {
    color: #435066;
    font-size: 16px;
    line-height: 1.8;
}

.guide-article-body ul,
.guide-article-body ol {
    padding-left: 26px;
    margin: 0 0 24px;
}

.guide-article-body li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.guide-article-body strong {
    color: var(--ink);
}

.guide-article-body a {
    color: var(--cyan-deep);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(21, 153, 173, 0.35);
    text-underline-offset: 3px;
}

.guide-article-body blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--cyan);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--mist);
}

.guide-article-body blockquote p:last-child {
    margin-bottom: 0;
}

.guide-article-body code {
    padding: 2px 6px;
    border-radius: 6px;
    color: var(--ink);
    background: var(--mist);
    font-size: 0.92em;
}

.guide-article-body pre {
    overflow-x: auto;
    padding: 20px;
    border-radius: var(--radius-sm);
    color: var(--white);
    background: var(--navy-soft);
}

.guide-article-body pre code {
    padding: 0;
    color: inherit;
    background: none;
}

.guide-article-body img {
    width: 100%;
    margin: 32px 0;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 45px rgba(0, 6, 18, 0.1);
}

.guide-app-note {
    margin-top: 58px;
    padding: 24px 26px;
    border: 1px solid rgba(31, 186, 208, 0.25);
    border-radius: var(--radius-sm);
    background: rgba(31, 186, 208, 0.07);
}

.guide-app-note > strong {
    display: block;
    margin-bottom: 5px;
}

.guide-app-note p {
    margin: 0;
    font-size: 14px;
}

.guide-article-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.guide-article-actions a {
    text-decoration: none;
}

.guide-related {
    padding: 82px 0 100px;
    background: var(--mist);
}

.guide-related > .shell > h2 {
    margin: 5px 0 34px;
    font-size: clamp(30px, 4vw, 46px);
}

.guide-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.guide-related-card {
    padding: 26px;
    border: 1px solid rgba(16, 26, 41, 0.08);
    border-radius: var(--radius-md);
    background: var(--white);
}

.guide-related-card > span {
    color: var(--cyan-deep);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.guide-related-card h3 {
    margin: 15px 0 11px;
    font-size: 20px;
    line-height: 1.24;
}

.guide-related-card p {
    margin: 0;
    color: var(--slate);
    font-size: 13px;
}

.guide-error {
    min-height: 75vh;
    display: grid;
    align-items: center;
    padding: 150px 0 90px;
    background: var(--mist);
}

.guide-error h1 {
    margin: 8px 0 18px;
    font-size: clamp(38px, 6vw, 66px);
}

.guide-error p {
    max-width: 620px;
    margin-bottom: 28px;
    color: var(--slate);
}

@media (max-width: 1080px) {
    .hero-layout {
        grid-template-columns: 1fr 400px;
        gap: 30px;
    }

    .float-card-next {
        right: -25px;
    }

    .float-card-paid {
        left: -25px;
    }

    .bento-schedule {
        grid-column: span 12;
    }

    .bento-payments,
    .bento-progress {
        grid-column: span 6;
    }

    .bento-message,
    .bento-routes,
    .bento-themes {
        grid-column: span 4;
    }

    .feature-showcase {
        grid-template-columns: minmax(390px, 0.88fr) minmax(430px, 1.12fr);
        gap: 28px;
    }

    .feature-row {
        grid-template-columns: 24px 44px 1fr;
        gap: 13px;
    }

    .outcome-showcase {
        grid-template-columns: minmax(390px, 0.9fr) minmax(440px, 1.1fr);
        gap: 30px;
    }

    .outcome-device-primary {
        left: 28px;
    }

    .outcome-device-secondary {
        right: 18px;
        width: 196px;
    }

    .outcome-row {
        min-height: 195px;
    }

    .audience-split {
        gap: 36px;
    }

    .features-hero-layout {
        gap: 35px;
    }

    .feature-hero-phone-main {
        left: 42px;
    }

    .feature-hero-phone-side {
        right: 4px;
        width: 202px;
    }

    .feature-story-layout,
    .school-feature-layout {
        grid-template-columns: minmax(400px, 0.94fr) minmax(430px, 1.06fr);
        gap: 48px;
    }

    .story-phone-main {
        left: 30px;
    }

    .story-phone-secondary {
        right: 18px;
        width: 198px;
    }

    .pupil-layout {
        gap: 55px;
    }

    .pricing-layout {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card {
        padding: 34px;
    }

    .faq-layout {
        gap: 60px;
    }
}

@media (max-width: 860px) {
    :root {
        --shell: min(calc(100% - 30px), 700px);
    }

    .guides-hero {
        padding: 128px 0 74px;
    }

    .guide-article-header {
        padding: 124px 0 66px;
    }

    .guide-hub-intro {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 20px;
    }

    .guide-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .guide-related-grid {
        grid-template-columns: 1fr;
    }

    .pricing-layout,
    .pricing-includes,
    .trial-banner {
        width: min(100%, 620px);
    }

    .trial-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trial-banner-copy h3,
    .trial-banner-copy > p:last-child {
        margin-inline: auto;
    }

    .trial-cta {
        width: 100%;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
    }

    .pricing-includes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .pricing-feature-grid li:nth-child(odd) {
        border-left: 0;
    }

    .site-header {
        height: 70px;
    }

    body.menu-open .site-header {
        height: 100vh;
        height: 100dvh;
        background: var(--navy);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-shell {
        align-items: flex-start;
        padding-top: 13px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 3;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        padding: clamp(28px, 7vh, 64px) 30px max(30px, env(safe-area-inset-bottom));
        background:
            radial-gradient(circle at 50% 0, rgba(31, 186, 208, 0.13), transparent 38%),
            var(--navy);
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav > a:not(.nav-cta) {
        width: min(100%, 420px);
        padding: 15px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.82);
        font-size: 19px;
        text-align: left;
    }

    .site-nav > a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        width: min(100%, 420px);
        margin-top: 26px;
        padding: 14px 22px;
        font-size: 15px;
    }

    .hero {
        min-height: auto;
        padding: 128px 0 70px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-lead {
        max-width: 610px;
    }

    .hero-visual {
        min-height: 610px;
    }

    .float-card-next {
        right: 6%;
    }

    .float-card-paid {
        left: 6%;
    }

    .proof-list {
        min-height: 68px;
        flex-wrap: wrap;
        gap: 8px 15px;
        padding-block: 12px;
        text-align: center;
    }

    .proof-divider:nth-of-type(4) {
        display: none;
    }

    .section {
        padding: 85px 0;
    }

    .outcome-showcase {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .outcome-media,
    .outcome-list {
        width: min(100%, 640px);
        margin-inline: auto;
    }

    .outcome-media {
        min-height: 690px;
    }

    .outcome-device-primary {
        left: 12%;
    }

    .outcome-device-secondary {
        right: 10%;
        width: 214px;
    }

    .outcome-row {
        min-height: 0;
        padding-block: 28px;
    }

    .outcome-cta {
        width: min(100%, 640px);
    }

    .audience-split {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 640px;
    }

    .audience-lane {
        padding-inline: 0;
    }

    .audience-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.18), transparent);
    }

    .road-ready-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 42px;
    }

    .road-ready-heading > div:last-child {
        padding-bottom: 0;
    }

    .road-ready-list {
        grid-template-columns: 1fr 1fr;
    }

    .road-ready-item {
        min-height: 280px;
    }

    .road-ready-item:nth-child(2) {
        border-right: 0;
    }

    .road-ready-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(16, 26, 41, 0.14);
    }

    .features-hero {
        min-height: auto;
        padding: 132px 0 80px;
    }

    .features-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .features-hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .features-hero-proof {
        justify-content: center;
    }

    .features-hero-visual {
        width: min(100%, 620px);
        min-height: 600px;
        margin-inline: auto;
    }

    .feature-hero-phone-main {
        left: 22%;
    }

    .feature-hero-phone-side {
        right: 14%;
        width: 218px;
    }

    .feature-page-nav {
        top: 70px;
    }

    .feature-page-nav .shell {
        justify-content: flex-start;
    }

    .feature-principle {
        padding-inline: 24px;
    }

    .feature-story,
    .school-feature-section {
        padding: 90px 0;
    }

    .feature-story-layout,
    .school-feature-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .feature-story-layout-reverse .feature-story-copy,
    .feature-story-layout-reverse .feature-story-media {
        order: initial;
    }

    .feature-story-copy,
    .school-feature-copy,
    .feature-story-media,
    .school-workflow {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .feature-story-media {
        min-height: 680px;
    }

    .story-phone-main {
        left: 12%;
    }

    .story-phone-secondary {
        right: 10%;
        width: 215px;
    }

    .feature-more-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-bento {
        grid-template-columns: 1fr 1fr;
    }

    .bento-schedule,
    .bento-payments,
    .bento-progress,
    .bento-message,
    .bento-routes,
    .bento-themes {
        grid-column: auto;
    }

    .bento-schedule {
        grid-column: 1 / -1;
    }

    .bento-themes {
        grid-column: 1 / -1;
        min-height: 250px;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .feature-preview {
        min-height: 680px;
    }

    .feature-list {
        max-width: 680px;
        width: 100%;
        margin-inline: auto;
    }

    .feature-row {
        min-height: 122px;
        grid-template-columns: 30px 47px 1fr;
        gap: 17px;
    }

    .journey-grid {
        grid-template-columns: 1fr 1fr;
    }

    .journey-step:nth-child(2) {
        border-right: 0;
    }

    .journey-step:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .pupil-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pupil-copy {
        display: grid;
        justify-items: center;
    }

    .light-list {
        max-width: 600px;
        text-align: left;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
        max-width: 600px;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2;
    }
}

@media (max-width: 620px) {
    :root {
        --shell: calc(100% - 28px);
    }

    .guide-hero-content > p:last-child,
    .guide-article-summary {
        font-size: 16px;
    }

    .guide-hub-section,
    .guide-related {
        padding: 64px 0 72px;
    }

    .guide-card-grid {
        grid-template-columns: 1fr;
    }

    .guide-card {
        min-height: 0;
        padding: 23px;
    }

    .guide-card-meta,
    .guide-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .guide-article-body {
        padding-top: 54px;
        padding-bottom: 66px;
    }

    .guide-article-body h2 {
        font-size: 26px;
    }

    .guide-article-body p,
    .guide-article-body li {
        font-size: 15px;
    }

    .guide-article-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .guide-breadcrumbs span[aria-current="page"] {
        max-width: 230px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .brand {
        font-size: 16px;
    }

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

    .auth-page {
        min-height: calc(100vh - 52px);
        padding: 100px 14px 45px;
    }

    .auth-card {
        padding: 27px 21px;
        border-radius: 21px;
    }

    .auth-card h1 {
        font-size: 25px;
    }

    .auth-icon {
        width: 56px;
        height: 56px;
        border-radius: 50%;
    }

    .auth-nav-cta {
        padding: 9px 13px;
        font-size: 11px;
    }

    .auth-footer {
        min-height: 52px;
        gap: 13px;
    }

    .hero {
        padding-top: 112px;
    }

    .hero h1 {
        font-size: clamp(47px, 15vw, 64px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trial {
        width: 100%;
        margin-inline: auto;
        text-align: left;
    }

    .hero-trial-offer strong {
        font-size: 16px;
    }

    .hero-visual {
        min-height: 540px;
    }

    .phone-hero,
    .phone-pupil {
        width: 240px;
        height: 524px;
        border-radius: 38px;
    }

    .phone img {
        border-radius: 29px;
    }

    .phone-speaker {
        top: 15px;
        width: 72px;
        height: 20px;
    }

    .float-card {
        min-width: 176px;
        padding: 10px 12px;
    }

    .float-card-next {
        top: 83px;
        right: -5px;
    }

    .float-card-paid {
        bottom: 72px;
        left: -5px;
    }

    .proof-divider {
        display: none;
    }

    .proof-list {
        flex-direction: column;
        gap: 4px;
        padding-block: 15px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .pupil-copy h2,
    .faq-intro h2,
    .download-content h2 {
        font-size: 38px;
    }

    .section-heading > p:last-child {
        font-size: 15px;
    }

    .outcome-media {
        min-height: 550px;
        border-radius: 24px;
    }

    .outcome-media-label {
        top: 20px;
        left: 20px;
    }

    .outcome-device-primary {
        left: 18px;
        bottom: -30px;
        width: 205px;
    }

    .outcome-device-secondary {
        top: 92px;
        right: 14px;
        width: 174px;
    }

    .outcome-media-note {
        right: 13px;
        bottom: 14px;
        padding: 10px 12px;
    }

    .outcome-row {
        grid-template-columns: 26px 1fr;
        gap: 10px;
        padding: 24px 2px;
    }

    .outcome-row h3 {
        font-size: 19px;
    }

    .outcome-cta {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 30px;
    }

    .outcome-cta .button {
        width: 100%;
    }

    .audience-lane h3 {
        font-size: 27px;
    }

    .audience-lane {
        padding-block: 8px;
    }

    .road-ready-heading h2 {
        font-size: 40px;
    }

    .road-ready-heading > div:last-child > p {
        font-size: 14px;
    }

    .road-ready-list {
        grid-template-columns: 1fr;
    }

    .road-ready-item {
        min-height: 0;
        padding: 25px 2px;
        border-right: 0;
    }

    .road-ready-item:not(:last-child),
    .road-ready-item:nth-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid rgba(16, 26, 41, 0.14);
    }

    .road-ready-number {
        margin-bottom: 24px;
        font-size: 21px;
    }

    .road-ready-note {
        text-align: left;
    }

    .features-hero {
        padding: 112px 0 65px;
    }

    .features-hero-copy h1 {
        font-size: clamp(48px, 14vw, 66px);
    }

    .features-hero-copy > p:not(.kicker) {
        font-size: 16px;
    }

    .features-hero-proof {
        gap: 7px 16px;
        font-size: 9px;
    }

    .features-hero-proof span:not(:first-child)::before {
        left: -9px;
    }

    .features-hero-visual {
        min-height: 510px;
    }

    .features-hero-orbit.orbit-a {
        width: 420px;
        height: 420px;
        left: 50%;
        transform: translateX(-50%);
    }

    .features-hero-orbit.orbit-b {
        width: 310px;
        height: 310px;
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-hero-phone-main {
        left: 13%;
        width: 215px;
    }

    .feature-hero-phone-side {
        top: 54px;
        right: 5%;
        width: 179px;
    }

    .features-hero-note {
        right: 4px;
        bottom: 10px;
        padding: 10px 12px;
    }

    .feature-page-nav .shell {
        gap: 22px;
    }

    .feature-principles {
        grid-template-columns: 1fr;
    }

    .feature-principle {
        min-height: 0;
        padding: 25px 4px;
    }

    .feature-principle:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .feature-principle > span {
        margin-bottom: 22px;
        font-size: 22px;
    }

    .feature-story,
    .school-feature-section {
        padding: 75px 0;
        scroll-margin-top: 114px;
    }

    .feature-story-copy h2,
    .school-feature-copy h2 {
        font-size: 39px;
    }

    .feature-detail-list li {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 15px 0;
    }

    .feature-story-media {
        min-height: 540px;
        border-radius: 24px;
    }

    .story-phone {
        width: 203px;
    }

    .story-phone-main {
        left: 18px;
        bottom: -38px;
    }

    .story-phone-secondary {
        top: 68px;
        right: 13px;
        width: 174px;
    }

    .story-caption {
        right: 12px;
        bottom: 13px;
        padding: 10px 12px;
    }

    .feature-story-media-single .story-phone-main {
        width: 225px;
    }

    .story-metric-top {
        top: 95px;
        left: 12px;
    }

    .story-metric-bottom {
        right: 12px;
        bottom: 72px;
    }

    .school-workflow-head,
    .school-workflow li,
    .school-workflow-foot {
        padding-inline: 18px;
    }

    .school-workflow li {
        grid-template-columns: 25px 1fr;
    }

    .school-step-status {
        display: none;
    }

    .school-workflow-foot {
        flex-direction: column;
    }

    .feature-more-list {
        grid-template-columns: 1fr 1fr;
    }

    .feature-more-list span {
        min-height: 84px;
        padding: 16px 14px;
        font-size: 10px;
    }

    .feature-final-cta {
        padding: 90px 0;
    }

    .feature-final-content h2 {
        font-size: 45px;
    }

    .feature-bento {
        grid-template-columns: 1fr;
    }

    .bento-card,
    .bento-schedule,
    .bento-payments,
    .bento-progress,
    .bento-message,
    .bento-routes,
    .bento-themes {
        grid-column: 1;
        min-height: 325px;
        padding: 24px;
    }

    .bento-schedule {
        min-height: 670px;
        display: block;
    }

    .feature-preview {
        min-height: 570px;
        border-radius: 25px;
    }

    .preview-topline {
        padding: 22px 20px;
    }

    .preview-topline span:last-child {
        display: none;
    }

    .preview-phone {
        bottom: -96px;
        width: 240px;
        height: 524px;
        border-radius: 38px;
    }

    .preview-phone > img {
        border-radius: 29px;
    }

    .preview-phone .phone-speaker {
        top: 15px;
        width: 72px;
        height: 20px;
    }

    .preview-summary-lessons {
        top: 105px;
        left: 12px;
        min-width: 119px;
    }

    .preview-summary-gaps {
        right: 11px;
        bottom: 76px;
    }

    .feature-row {
        min-height: 0;
        grid-template-columns: 40px 1fr;
        gap: 14px;
        padding: 22px 2px;
    }

    .feature-row .feature-number {
        display: none;
    }

    .feature-row .icon-box {
        width: 40px;
        height: 40px;
    }

    .feature-row h3 {
        font-size: 17px;
    }

    .mini-calendar {
        position: absolute;
        left: 24px;
        right: -30px;
        bottom: -10px;
        min-width: 0;
        margin: 0;
    }

    .balance-widget,
    .progress-widget,
    .message-bubbles,
    .theme-swatches {
        left: 24px;
        right: 24px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-step {
        min-height: 285px;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line);
    }

    .journey-step:last-child {
        border-bottom: 0;
    }

    .pupil-section {
        padding-block: 90px;
    }

    .pupil-layout {
        gap: 55px;
    }

    .pupil-visual {
        min-height: 535px;
    }

    .orbit-one {
        width: 390px;
        height: 390px;
    }

    .orbit-two {
        width: 520px;
        height: 520px;
    }

    .achievement-pop {
        right: -8px;
        bottom: 66px;
    }

    .included-pill {
        border-radius: 15px;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
    }

    .pricing-card,
    .pricing-includes {
        min-height: 0;
        padding: 27px;
    }

    .pricing-card {
        min-height: 430px;
    }

    .pricing-card > p:not(.plan-name) {
        min-height: 0;
    }

    .pricing-card-top {
        margin-bottom: 35px;
    }

    .pricing-feature-grid {
        grid-template-columns: 1fr;
    }

    .pricing-feature-grid li {
        min-height: 0;
        padding: 13px 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .pricing-feature-grid li:first-child {
        border-top: 0;
    }

    .trial-banner {
        padding: 22px;
        border-radius: 21px;
    }

    .trial-offers {
        grid-template-columns: 1fr;
    }

    .trial-offer {
        min-height: 105px;
        align-items: center;
    }

    .faq-list summary {
        font-size: 14px;
    }

    .store-buttons {
        flex-direction: column;
        gap: 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .page-hero {
        padding: 125px 0 60px;
    }

    .legal-content {
        padding: 55px 0 80px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
