/* ============================================================================
   AidenTeach — Schools page
   Complete page-scoped design system. Everything here lives under
   body.schools-page so nothing leaks into the shared chrome or other pages.

   Palette: paper white + deep navy ink, teal brand (#3aa7be), violet + amber
   accents. One dark "cinema" section (showcase).
   Animations: CSS owns ambient motion (aurora, marquee, pulses); GSAP owns
   entrances and scroll choreography (js/schools.js). No element is hidden by
   CSS for animation purposes — with JS off the page is fully readable.

   Scrolling stays native (no Lenis). Override global scroll-behavior so wheel
   and scrollbar input never feel inertia-smoothed on this long page.
   ========================================================================== */

html:has(body.schools-page) {
    scroll-behavior: auto;
}

body.schools-page {
    --sch-paper: #f7f9fc;
    --sch-white: #ffffff;
    --sch-ink: #0b1526;
    --sch-ink-soft: #3d4a5f;
    --sch-muted: #5d6a7e;
    --sch-line: rgba(11, 21, 38, 0.08);
    --sch-line-strong: rgba(11, 21, 38, 0.14);

    --sch-teal: #3aa7be;
    --sch-teal-bright: #55bbd0;
    --sch-teal-soft: #d2f0f6;
    --sch-violet: #8b5cf6;
    --sch-violet-soft: #ede9fe;
    --sch-amber: #f97316;
    --sch-amber-soft: #ffedd5;
    --sch-mint: #10b981;
    --sch-red: #ef4444;

    --sch-navy-900: #070f1e;
    --sch-navy-800: #0c1930;
    --sch-navy-line: rgba(255, 255, 255, 0.09);
    --sch-navy-text: #aab8cd;

    --sch-grad-brand: linear-gradient(120deg, #2d8a9e, #55bbd0 45%, #8b5cf6);
    --sch-grad-text: linear-gradient(105deg, #236f80, #3aa7be 45%, #7c3aed);

    --sch-r-sm: 12px;
    --sch-r-md: 18px;
    --sch-r-lg: 28px;
    --sch-r-xl: 40px;

    --sch-shadow-sm: 0 1px 2px rgba(11, 21, 38, 0.05), 0 4px 12px rgba(11, 21, 38, 0.05);
    --sch-shadow-md: 0 2px 6px rgba(11, 21, 38, 0.05), 0 14px 34px rgba(11, 21, 38, 0.09);
    --sch-shadow-lg: 0 8px 24px rgba(11, 21, 38, 0.09), 0 32px 72px rgba(11, 21, 38, 0.16);

    --sch-ease: cubic-bezier(0.22, 1, 0.36, 1);

    background: var(--sch-paper);
    color: var(--sch-ink);
}

body.schools-page ::selection {
    background: rgba(58, 167, 190, 0.25);
}

/* ------------------------------------------------------------ type & bits */

.sch-h2 {
    font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--sch-ink);
    margin: 18px 0 0;
}

.sch-h2 em {
    font-style: normal;
    background: var(--sch-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sch-section-head { max-width: 620px; }
.sch-section-head > p {
    margin: 18px 0 0;
    font-size: 1.06rem;
    line-height: 1.65;
    color: var(--sch-ink-soft);
}
.sch-section-head--center { margin-inline: auto; text-align: center; }
.sch-section-head--dark .sch-h2 { color: #fff; }
.sch-section-head--dark > p { color: var(--sch-navy-text); }

.sch-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px;
    border-radius: 999px;
    border: 1px solid var(--sch-line-strong);
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--sch-ink-soft);
    white-space: nowrap;
}
.sch-eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sch-teal);
    box-shadow: 0 0 0 0 rgba(58, 167, 190, 0.45);
    animation: sch-pulse 2.6s infinite;
    flex: none;
}
.sch-eyebrow--dark {
    border-color: var(--sch-navy-line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--sch-navy-text);
}

@keyframes sch-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(58, 167, 190, 0.45); }
    70%  { box-shadow: 0 0 0 9px rgba(58, 167, 190, 0); }
    100% { box-shadow: 0 0 0 0 rgba(58, 167, 190, 0); }
}

.sch-kicker {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sch-teal);
    margin-bottom: 12px;
}

/* ----------------------------------------------------------------- buttons */

.sch-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.45s var(--sch-ease), box-shadow 0.45s var(--sch-ease),
                background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    will-change: transform;
}
.sch-btn i { font-size: 0.82em; transition: transform 0.35s var(--sch-ease); }
.sch-btn:hover i.fa-arrow-right { transform: translateX(4px); }

.sch-btn--primary {
    background: var(--sch-ink);
    color: #fff;
    box-shadow: 0 10px 28px rgba(11, 21, 38, 0.28);
}
.sch-btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--sch-grad-brand);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.sch-btn--primary::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: -80%;
    width: 55%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s var(--sch-ease);
}
.sch-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(45, 138, 158, 0.4); }
.sch-btn--primary:hover::before { opacity: 1; }
.sch-btn--primary:hover::after { left: 130%; }
.sch-btn--primary span, .sch-btn--primary i { position: relative; z-index: 1; }

.sch-btn--ghost {
    border: 1px solid var(--sch-line-strong);
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--sch-ink);
}
.sch-btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(58, 167, 190, 0.5);
    box-shadow: var(--sch-shadow-md);
}
.sch-btn--ghost i { color: var(--sch-teal); }

.sch-btn--light {
    background: #fff;
    color: var(--sch-ink);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.sch-btn--light:hover { transform: translateY(-2px); }

.sch-btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}
.sch-btn--outline:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
}

body.schools-page a:focus-visible,
body.schools-page button:focus-visible,
body.schools-page [tabindex]:focus-visible {
    /* #1d6f80 clears 3:1 against the light surfaces; the brand teal does not. */
    outline: 2px solid #1d6f80;
    outline-offset: 3px;
    border-radius: 8px;
}
.sch-showcase a:focus-visible,
.sch-showcase button:focus-visible {
    outline-color: var(--sch-teal-bright);
}

/* -------------------------------------------------------------------- HERO */

.sch-hero {
    position: relative;
    padding: 150px 0 0;
    overflow: hidden;
    /* gabriel-v2 hero ambiance: soft washes + paper white */
    background:
        radial-gradient(ellipse 65% 55% at 15% 25%, rgba(16, 185, 129, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 78% 35%, rgba(56, 189, 248, 0.1) 0%, transparent 58%),
        radial-gradient(ellipse 55% 45% at 55% 70%, rgba(236, 72, 153, 0.045) 0%, transparent 55%),
        #ffffff;
}

/* Dot field — same technique as gabrielcasey.com hero */
.sch-hero::before {
    content: "";
    position: absolute;
    inset: -60px;
    z-index: 0;
    background-image: radial-gradient(circle at 1.25px 1.25px, rgba(11, 14, 12, 0.09) 1.25px, transparent 1.25px);
    background-size: 28px 24px;
    mask-image: radial-gradient(circle at 35% 35%, #000 40%, transparent 92%);
    -webkit-mask-image: radial-gradient(circle at 35% 35%, #000 40%, transparent 92%);
    pointer-events: none;
}

.sch-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.sch-hero__glow {
    position: absolute;
    right: -8%;
    top: 8%;
    width: min(720px, 70vw);
    height: min(720px, 70vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.16) 0%, rgba(16, 185, 129, 0.06) 42%, transparent 70%);
    filter: blur(8px);
}

.sch-hero__rings {
    position: absolute;
    right: 4%;
    top: 12%;
    width: min(640px, 62vw);
    height: min(640px, 62vw);
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
        0 0 0 48px rgba(15, 23, 42, 0.02),
        0 0 0 96px rgba(15, 23, 42, 0.015);
}

.sch-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(40px, 6vw, 90px);
    padding-bottom: 88px;
}

.sch-hero__eyebrow {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sch-muted);
}

.sch-hero__title {
    font-size: clamp(2.55rem, 1.35rem + 4.2vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.02;
    margin: 18px 0 0;
    color: var(--sch-ink);
}
.sch-hero__title em {
    font-style: normal;
    background: var(--sch-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sch-hero__tagline {
    margin: 18px 0 0;
    max-width: 28ch;
    font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--sch-ink);
}
.sch-hero__tagline em {
    font-style: normal;
    background: linear-gradient(92deg, #f97316, #ec4899 55%, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* word-mask spans produced by JS */
.sch-word-mask { display: inline-block; overflow: hidden; vertical-align: bottom; }
.sch-word-mask > span { display: inline-block; will-change: transform; }

.sch-hero__lede {
    margin: 14px 0 0;
    max-width: 46ch;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--sch-ink-soft);
}

.sch-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.sch-hero__proof {
    display: flex;
    gap: clamp(28px, 4vw, 56px);
    margin: 52px 0 0;
    padding-top: 28px;
    border-top: 1px solid var(--sch-line);
}
.sch-hero__proof dt {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--sch-ink);
}
.sch-hero__proof dd {
    margin: 4px 0 0;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--sch-muted);
}

/* hero visual ------------------------------------------------------------- */

.sch-hero__visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.sch-hero__visual-glow {
    position: absolute;
    width: min(480px, 85%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, rgba(16, 185, 129, 0.08) 45%, transparent 72%);
    filter: blur(20px);
    z-index: 0;
}

.sch-hero__robot {
    position: relative;
    z-index: 1;
    width: min(440px, 92%);
    height: auto;
    filter: drop-shadow(0 32px 60px rgba(15, 23, 42, 0.18));
}

.sch-idcard {
    position: relative;
    width: min(360px, 88%);
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--sch-line);
    box-shadow: var(--sch-shadow-lg);
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}
.sch-idcard__band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(115deg, #0c1930, #17324f 55%, #1d5f74);
    color: #fff;
}
.sch-idcard__band strong { display: block; font-size: 0.98rem; letter-spacing: -0.01em; }
.sch-idcard__band small {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}
.sch-idcard__logo {
    flex: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px dashed rgba(255, 255, 255, 0.35);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}
.sch-idcard__body {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
}
.sch-idcard__photo {
    flex: none;
    width: 72px; height: 88px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(160deg, #eef4f9, #dbe7f0);
    border: 1px solid var(--sch-line);
    color: #9fb2c4;
    font-size: 1.7rem;
}
.sch-idcard__meta { min-width: 0; display: grid; gap: 3px; }
.sch-idcard__meta strong { font-size: 1.08rem; letter-spacing: -0.02em; }
.sch-idcard__meta span { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; color: var(--sch-muted); }
.sch-idcard__role {
    justify-self: start;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--sch-teal-soft);
    color: #1d6f80;
    font-size: 0.62rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
}
.sch-idcard__qr {
    flex: none;
    margin-left: auto;
    width: 62px; height: 62px;
    padding: 7px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    border-radius: 10px;
    border: 1px solid var(--sch-line-strong);
    background: #fff;
}
.sch-idcard__qr i { background: var(--sch-ink); border-radius: 2px; }
.sch-idcard__qr i:nth-child(2), .sch-idcard__qr i:nth-child(6) { background: transparent; }
.sch-idcard__foot {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid var(--sch-line);
    background: #fafcfe;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--sch-muted);
}
.sch-idcard__sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.5) 50%, transparent 62%);
    transform: translateX(-120%);
    animation: sch-sheen 6.5s var(--sch-ease) infinite;
    pointer-events: none;
}
@keyframes sch-sheen {
    0%, 55% { transform: translateX(-120%); }
    75%, 100% { transform: translateX(120%); }
}

.sch-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--sch-line);
    box-shadow: var(--sch-shadow-md);
    will-change: transform;
}
.sch-chip strong { display: block; font-size: 0.85rem; letter-spacing: -0.01em; }
.sch-chip small { display: block; font-size: 0.7rem; color: var(--sch-muted); margin-top: 1px; }
.sch-chip__icon {
    flex: none;
    width: 36px; height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 0.92rem;
    color: #fff;
}
.sch-chip__icon--teal   { background: linear-gradient(135deg, #3aa7be, #2d8a9e); }
.sch-chip__icon--violet { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.sch-chip__icon--amber  { background: linear-gradient(135deg, #fb923c, #f97316); }

.sch-chip--verify  { top: 6%; right: 2%; }
.sch-chip--attend  { bottom: 10%; left: -4%; }
.sch-chip--ai      { bottom: -4%; right: 8%; }

/* ------------------------------------------------------------------ IMPACT */
/* Ported from gabriel-v2 Proven Scale: dark canvas, dot field, 2×2 metrics,
   edge-clipped phone floater. Scoped under .sch-impact / .sch-floater. */

.sch-desktop-only { display: block; }
.sch-mobile-only { display: none; }

.sch-impact {
    position: relative;
    overflow: hidden;
    padding-block: clamp(80px, 10vw, 140px);
    background: #0b0e0c;
    color: #f4f6f5;
}

.sch-impact__grid-bg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}
.sch-impact__grid-bg .sch-dot {
    width: 4px;
    height: 4px;
    margin: 16px;
    border-radius: 50%;
    background: #10b981;
    transform: scale(0);
}

.sch-impact__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}

.sch-impact__header { margin: 0; max-width: none; }

.sch-impact__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff705a;
}
.sch-impact__eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    flex-shrink: 0;
    background: currentColor;
    border-radius: 2px;
}

.sch-impact__title {
    margin: 0 0 14px;
    max-width: 18ch;
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #fff;
}

.sch-impact__desc {
    margin: 0;
    max-width: 46ch;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(244, 246, 245, 0.65);
}

.sch-impact__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 64px);
}

.sch-impact__metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 24px;
}
.sch-impact__metric:nth-child(even) {
    border-left-color: rgba(16, 185, 129, 0.4);
}

.sch-impact__num {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
}

.sch-impact__label {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244, 246, 245, 0.6);
    max-width: 28ch;
    line-height: 1.4;
}

/* Floating phone (gabriel-v2 floater chassis) */
.sch-floater {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    width: min(220px, 22vw);
    user-select: none;
}
.sch-floater--tr {
    top: 6%;
    right: max(-40px, -3vw);
}
.sch-floater__orb {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 145%;
    aspect-ratio: 1;
    translate: -50% -50%;
    border-radius: 50%;
    z-index: 0;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.4) 0%, rgba(56, 189, 248, 0.1) 42%, transparent 68%);
}
.sch-floater__phone {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 9 / 19.2;
    border-radius: 2.15rem;
    background: linear-gradient(160deg, #3a3d44 0%, #1a1c20 42%, #0c0d10 100%);
    padding: 0.55rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(0, 0, 0, 0.45),
        0 28px 50px -18px rgba(15, 19, 24, 0.55);
    animation: sch-floater-bob-left 7s ease-in-out infinite;
    transform-origin: center center;
}
.sch-floater__phone::before,
.sch-floater__phone::after {
    content: "";
    position: absolute;
    z-index: 3;
    background: #0a0b0e;
    border-radius: 2px;
}
.sch-floater__phone::before {
    left: -2px;
    top: 18%;
    width: 3px;
    height: 14%;
    box-shadow: 0 22px 0 #0a0b0e;
}
.sch-floater__phone::after {
    right: -2px;
    top: 24%;
    width: 3px;
    height: 10%;
}
.sch-floater__screen-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1.65rem;
    overflow: hidden;
    background: #020617;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.sch-floater__island {
    position: absolute;
    z-index: 4;
    top: 0.55rem;
    left: 50%;
    translate: -50% 0;
    width: 32%;
    height: 1.05rem;
    border-radius: 999px;
    background: #050507;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.sch-floater__island::after {
    content: "";
    position: absolute;
    right: 0.35rem;
    top: 50%;
    translate: 0 -50%;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1e293b, #020617 70%);
}
.sch-floater__home {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 0.45rem;
    translate: -50% 0;
    width: 34%;
    height: 0.28rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}
.sch-floater--delay .sch-floater__phone { animation-delay: -2.4s; }

@keyframes sch-floater-bob-left {
    0%, 100% { transform: rotate(-7deg) translateY(0); }
    50% { transform: rotate(-7deg) translateY(-12px); }
}

/* Parent-app screen inside the floater */
.sch-phone-ui {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: 2.2rem 0.7rem 1.4rem;
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(58, 167, 190, 0.28), transparent 55%),
        linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #e2e8f0;
    font-size: 0.58rem;
}
.sch-phone-ui__top {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sch-phone-ui__top span {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.55);
}
.sch-phone-ui__top strong {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}
.sch-phone-ui__search {
    padding: 0.55rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(226, 232, 240, 0.55);
}
.sch-phone-ui__card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 0.65rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.sch-phone-ui__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(58, 167, 190, 0.25);
    color: #7dd3e8;
}
.sch-phone-ui__card strong { display: block; color: #fff; font-size: 0.62rem; }
.sch-phone-ui__card small { color: rgba(226, 232, 240, 0.55); font-size: 0.5rem; }
.sch-phone-ui__badge {
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.18);
    color: #6ee7b7;
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.sch-phone-ui__alerts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.sch-phone-ui__alerts li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 0.55rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(226, 232, 240, 0.78);
}
.sch-phone-ui__alerts i { color: var(--sch-teal-bright); font-size: 0.55rem; }
.sch-phone-ui__cta {
    margin-top: auto;
    border: 0;
    border-radius: 12px;
    padding: 0.7rem 0.75rem;
    background: linear-gradient(120deg, #2d8a9e, #3aa7be);
    color: #fff;
    font-weight: 800;
    font-size: 0.62rem;
    letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------- SHOWCASE */
/* gabriel-v2 about-me switcher — AidenTeach teal palette + bot floater. */

.about-me.sch-showcase {
    --am-bg: #070f1e;
    --am-text: #ffffff;
    --am-muted: #aab8cd;
    --am-accent: #55bbd0;
    --am-accent-rgb: 85, 187, 208;
    --am-accent-soft: rgba(var(--am-accent-rgb), 0.18);
    --about-pointer-x: 70%;
    --about-pointer-y: 32%;
    --gutter: clamp(20px, 4vw, 48px);
    --font-mono: "Manrope", "Inter", system-ui, sans-serif;
    --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    --container: 1200px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--am-bg);
    color: var(--am-text);
    padding: clamp(72px, 8vw, 110px) var(--gutter) clamp(52px, 5.5vw, 80px);
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-me.sch-showcase[data-about-active="attendance"] {
    --am-accent: #34d399;
    --am-accent-rgb: 52, 211, 153;
}

.about-me.sch-showcase[data-about-active="teaching"] {
    --am-accent: #a78bfa;
    --am-accent-rgb: 167, 139, 250;
}

.about-me.sch-showcase[data-about-active="academics"] {
    --am-accent: #fbbf24;
    --am-accent-rgb: 251, 191, 36;
}

.about-me.sch-showcase[data-about-active="finance"] {
    --am-accent: #2dd4bf;
    --am-accent-rgb: 45, 212, 191;
}

.about-me.sch-showcase[data-about-active="campus"] {
    --am-accent: #38bdf8;
    --am-accent-rgb: 56, 189, 248;
}

.about-me.sch-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 70% at 100% 40%, rgba(58, 167, 190, 0.14), transparent 58%),
        radial-gradient(ellipse 40% 50% at 0% 80%, rgba(var(--am-accent-rgb), 0.09), transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255, 255, 255, 0.03), transparent 50%);
}

.about-me.sch-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.about-me .sec-head {
    position: relative;
    z-index: 1;
}

.about-me .sec-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.about-me .sec-head__eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--am-accent);
    box-shadow: 0 0 12px rgba(var(--am-accent-rgb), 0.45);
}

.about-me .sec-head__title {
    margin: 0;
    max-width: 18ch;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #fff;
}

.about-me .sec-head__desc {
    margin: 14px 0 0;
    max-width: 52ch;
    font-size: clamp(0.98rem, 1.1vw, 1.06rem);
    line-height: 1.6;
    color: var(--am-muted);
}

.about-me__sec-head {
    max-width: var(--container);
    margin: 0 auto clamp(38px, 4.5vw, 52px);
}

.about-me__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.28fr);
    gap: clamp(36px, 4vw, 64px);
    align-items: start;
}

.about-me__services-wrap {
    position: relative;
    padding-left: 0;
}

.about-me__pick {
    margin: 0 0 18px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--am-accent);
}

.about-me__pick::after {
    content: "";
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    margin-left: 0.45em;
    vertical-align: -0.15em;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3 8h8M8 4l4 4-4 4'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3 8h8M8 4l4 4-4 4'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-me__services-wrap:hover .about-me__pick::after {
    transform: translateX(4px);
}

.about-me__services {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.about-me__service {
    appearance: none;
    width: 100%;
    margin: 0;
    padding: 8px 12px 8px 10px;
    border: 1px solid transparent;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 16px;
    transition:
        opacity 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

.about-me__service::before {
    content: attr(data-about-index);
    flex: 0 0 auto;
    min-width: 2.4ch;
    align-self: center;
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    transition: color 0.3s ease;
}

.about-me__service:not(.is-active) { opacity: 0.58; }

.about-me__service[data-about-index="03"] {
    margin-bottom: 12px;
}

.about-me__service[data-about-index="03"]::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -8px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.about-me__service:hover,
.about-me__service:focus-visible,
.about-me__service.is-active { opacity: 1; }

.about-me__service:hover,
.about-me__service:focus-visible {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.about-me__service.is-active {
    padding: 12px 14px 12px 12px;
    background:
        linear-gradient(105deg, rgba(var(--am-accent-rgb), 0.13), rgba(var(--am-accent-rgb), 0.045) 68%, transparent);
    border-color: rgba(var(--am-accent-rgb), 0.34);
    box-shadow:
        inset 3px 0 0 var(--am-accent),
        inset 0 0 0 1px rgba(var(--am-accent-rgb), 0.06),
        0 18px 42px -30px rgba(var(--am-accent-rgb), 0.65);
    transform: none;
}

.about-me__service.is-active::before { color: var(--am-accent); }

.about-me__service:focus-visible {
    outline: 2px solid var(--am-accent);
    outline-offset: 3px;
}

.about-me__service.is-active .about-me__service-icon {
    color: var(--am-accent);
    background: rgba(var(--am-accent-rgb), 0.09);
    border-color: rgba(var(--am-accent-rgb), 0.36);
    box-shadow: 0 0 24px rgba(var(--am-accent-rgb), 0.18);
}

.about-me__service-cue {
    margin-left: auto;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--am-muted);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.about-me__service:hover .about-me__service-cue,
.about-me__service:focus-visible .about-me__service-cue,
.about-me__service.is-active .about-me__service-cue {
    opacity: 1;
    transform: translateX(0);
}

.about-me__service.is-active .about-me__service-cue { color: var(--am-accent); }
.about-me__service.is-active .about-me__service-cue-label { display: none; }

.about-me__service-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.about-me__service-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-me__service:hover .about-me__service-icon {
    color: var(--am-accent);
    background: rgba(var(--am-accent-rgb), 0.08);
    border-color: rgba(var(--am-accent-rgb), 0.35);
    box-shadow: 0 0 24px rgba(var(--am-accent-rgb), 0.2);
    transform: translateY(-2px);
}

.about-me__service-text {
    min-width: 0;
    padding-top: 2px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-me__service-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--am-text);
}

.about-me__service-sub {
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--am-muted);
    max-width: 28ch;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.about-me__service.is-active .about-me__service-sub,
.about-me__service:hover .about-me__service-sub,
.about-me__service:focus-visible .about-me__service-sub {
    max-height: 2.6em;
    opacity: 1;
    margin-top: 5px;
}

.about-me__copy {
    position: sticky;
    top: 96px;
    min-width: 0;
    min-height: 0;
    overflow: visible;
    padding: 0;
}

.about-me__copy::before {
    content: "";
    position: absolute;
    inset: -80px -100px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.24;
    background:
        radial-gradient(
            circle 360px at var(--about-pointer-x) var(--about-pointer-y),
            rgba(var(--am-accent-rgb), 0.12),
            transparent 72%
        );
    filter: blur(14px);
    transition: opacity 0.35s ease;
}

.about-me__panels,
.about-me__stats {
    position: relative;
    z-index: 1;
}

.about-me__panels { display: grid; }

/* No-JS: all panels stack and remain readable. */
.about-me__panel {
    grid-area: auto;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    margin-bottom: 28px;
}

.about-me__panel:last-child { margin-bottom: 0; }

html.sch-js .about-me__panel {
    grid-area: 1 / 1;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    margin-bottom: 0;
}

html.sch-js .about-me__panel.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    animation: am-panel-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-me__eyebrow {
    margin: 0 0 14px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--am-accent);
}

.about-me__title {
    margin: 0 0 clamp(18px, 2vw, 22px);
    font-family: var(--font-display);
    max-width: 13ch;
    font-size: clamp(2.4rem, 4.2vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--am-text);
}

.about-me__bio {
    margin: 0;
    max-width: 54ch;
    font-size: clamp(0.96rem, 1.08vw, 1.03rem);
    line-height: 1.58;
    color: var(--am-muted);
}

.about-me__feature-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    margin: 18px 0 0;
    padding: 0;
}

.about-me__feature-chips li {
    padding: 7px 11px;
    border: 1px solid rgba(var(--am-accent-rgb), 0.2);
    border-radius: 999px;
    background: rgba(var(--am-accent-rgb), 0.065);
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-mono);
    font-size: 0.61rem;
    font-weight: 500;
    letter-spacing: 0.045em;
    line-height: 1.2;
    transition:
        color 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-me__feature-chips li:hover {
    transform: translateY(-2px);
    color: #fff;
    border-color: rgba(var(--am-accent-rgb), 0.42);
    background: rgba(var(--am-accent-rgb), 0.12);
}

@keyframes am-panel-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-me__stats {
    list-style: none;
    margin: clamp(24px, 2.7vw, 30px) 0 0;
    padding: clamp(18px, 2vw, 22px) 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-me__stat {
    min-width: 0;
    position: relative;
    padding-left: clamp(0px, 1vw, 8px);
}

.about-me__stat + .about-me__stat {
    padding-left: clamp(16px, 2vw, 28px);
}

.about-me__stat + .about-me__stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.about-me__stat-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    min-width: 0;
    max-width: 100%;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.2vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--am-text);
}

.about-me__stat.is-text-stat .about-me__stat-value {
    font-size: clamp(1.35rem, 2.1vw, 1.85rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.about-me__stat.is-text-stat .stat__num {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.about-me__stat.is-text-stat .about-me__stat-label { max-width: 22ch; }

.about-me__stat-suffix {
    color: var(--am-accent);
    font-weight: 800;
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-me__stat-suffix.is-hidden {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.about-me__stat-label {
    display: block;
    margin-top: 10px;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--am-muted);
    max-width: 14ch;
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-me__stats .stat__num {
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-me__stats.is-swapping .about-me__stat-label { opacity: 0.35; }
.about-me__stats.is-swapping .stat__num { opacity: 0.55; }

/* Bot floater (replaces gabriel phone) */
.sch-showcase > .sch-floater--bl {
    left: max(-20px, -2vw);
    bottom: 6%;
    top: auto;
    right: auto;
    width: min(260px, 28vw);
    z-index: 2;
}

.sch-floater__orb--teal {
    background: radial-gradient(circle, rgba(85, 187, 208, 0.45) 0%, rgba(58, 167, 190, 0.12) 42%, transparent 68%);
}

.sch-floater__img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 42px rgba(7, 15, 30, 0.55));
    transform-origin: center center;
    animation: sch-floater-bob-left 7s ease-in-out infinite;
    mix-blend-mode: lighten;
}

.sch-floater--tilt-left .sch-floater__img {
    animation-name: sch-floater-bob-left;
}

@media (min-width: 1025px) {
    .about-me__inner {
        min-height: 0;
        align-items: start;
    }

    .about-me__copy {
        box-sizing: border-box;
        display: grid;
        grid-template-rows: auto auto;
        align-content: start;
        height: auto;
        min-height: 460px;
    }

    html.sch-js .about-me__panel { display: none; }
    html.sch-js .about-me__panel.is-active { display: block; }

    .about-me__stats { align-self: start; }

    .sch-showcase > .sch-floater--bl {
        top: 58%;
        bottom: auto;
    }
}

@media (max-width: 900px) {
    .about-me__inner {
        grid-template-columns: 1fr;
        gap: clamp(28px, 5vw, 40px);
    }

    .about-me__pick { margin-bottom: 14px; }

    .about-me__services {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-me__service {
        width: 100%;
        min-width: 0;
        min-height: 64px;
        padding: 14px 16px;
        gap: 12px;
    }

    .about-me__service::before {
        font-size: clamp(1.35rem, 6vw, 1.7rem);
        min-width: 2.2ch;
    }

    .about-me__service.is-active .about-me__service-cue {
        opacity: 1;
        transform: none;
    }

    .about-me__service-cue-label { display: none; }

    .about-me__title {
        font-size: clamp(1.85rem, 8vw, 2.6rem);
    }

    .about-me__copy {
        position: relative;
        top: auto;
        min-height: 0;
        height: auto;
    }

    .about-me__service-sub {
        max-height: none;
        opacity: 1;
        margin-top: 4px;
        overflow: visible;
    }

    .about-me__service[data-about-index="03"] {
        margin-bottom: 0;
    }

    .about-me__service[data-about-index="03"]::after {
        display: none;
    }

    .about-me__stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-me__stat + .about-me__stat {
        padding-left: 0;
        padding-top: 18px;
        margin-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-me__stat + .about-me__stat::before { display: none; }
    .about-me__stat-label { max-width: none; }
    .about-me__stat-value { font-size: clamp(2rem, 8vw, 2.6rem); }
}

/* --------------------------------------------------------------------- WHY */
/* Exact gabriel-v2 why-choice visual system (fonts, sizes, gradients, motion). */

.why-choice {
    --ink: #0b0e0c;
    --green: #10b981;
    --green-deep: #059669;
    --coral: #ff705a;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --gutter: clamp(20px, 4vw, 48px);
    --font-mono: "Manrope", "Inter", system-ui, sans-serif;
    --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

.why-choice .sec-head {
    margin-bottom: clamp(28px, 4vw, 48px);
    max-width: 52rem;
}
.why-choice .sec-head--flush { margin-bottom: 0; }
.why-choice .sec-head__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
}
.why-choice .sec-head__eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    flex-shrink: 0;
    background: currentColor;
    border-radius: 2px;
}
.why-choice .sec-head__title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    max-width: 22ch;
    color: var(--ink);
}
.why-choice .sec-head__desc {
    margin: 0;
    max-width: 52ch;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #4b5563;
}


.why-choice {
  --why-x: 72%;
  --why-y: 22%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    radial-gradient(circle 520px at var(--why-x) var(--why-y), rgba(99, 102, 241, 0.075), transparent 72%),
    radial-gradient(circle 440px at 14% 88%, rgba(16, 185, 129, 0.065), transparent 70%),
    linear-gradient(180deg, #fff 0%, #fbfcfc 100%);
}

.why-choice::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.022) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.why-choice__routes {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.82;
}

.why-choice__routes svg {
  width: 100%;
  height: 100%;
}

.why-choice__route {
  fill: none;
  stroke: rgba(99, 102, 241, 0.16);
  stroke-width: 1.1;
  stroke-dasharray: 9 18;
  vector-effect: non-scaling-stroke;
  animation: why-route-drift 22s linear infinite;
}

.why-choice__route--two {
  stroke: rgba(16, 185, 129, 0.15);
  animation-duration: 28s;
  animation-direction: reverse;
}

.why-choice__route--three {
  stroke: rgba(249, 115, 22, 0.11);
  animation-duration: 34s;
}

.why-choice__route-nodes circle {
  fill: #fff;
  stroke: rgba(16, 185, 129, 0.5);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  animation: why-node-pulse 3.4s ease-in-out infinite;
}

.why-choice__route-nodes circle:nth-child(2n) {
  stroke: rgba(99, 102, 241, 0.54);
  animation-delay: -1.3s;
}

.why-choice__route-nodes circle:nth-child(3n) {
  animation-delay: -2.4s;
}

.why-choice__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 75.5rem;
  margin: 0 auto clamp(30px, 5vw, 64px);
  padding-inline: var(--gutter);
}

.why-choice__header .sec-head {
  flex: 1;
  min-width: 0;
}

.why-choice__reach {
  display: flex;
  max-width: 570px;
  align-items: center;
  gap: 11px;
  margin: 20px 0 0;
  color: #334155;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.why-choice__reach span {
  white-space: nowrap;
}

.why-choice__reach i {
  position: relative;
  display: block;
  width: clamp(28px, 4.5vw, 72px);
  height: 1px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.14);
}

.why-choice__reach i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: translateX(-100%);
  animation: why-reach-pulse 3.8s var(--ease) infinite;
}

.why-choice__reach i:nth-of-type(2)::after {
  animation-delay: 0.7s;
}

.why-choice__controls {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.why-choice__arrow {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  outline: none;
  color: #fff;
  background: var(--ink);
  background-clip: padding-box;
  transition:
    transform 0.25s var(--ease),
    color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.why-choice__arrow:focus {
  outline: none;
  box-shadow: none;
}

.why-choice__arrow:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.why-choice__arrow svg {
  width: 20px;
  height: 20px;
}

.why-choice__arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  color: var(--ink);
  background: var(--green);
}

.why-choice__arrow:disabled {
  color: #adb5b0;
  background: #eef1ef;
  cursor: not-allowed;
}

.why-choice__viewport-wrap {
  position: relative;
  z-index: 1;
}

.why-choice__viewport-wrap::before,
.why-choice__viewport-wrap::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: 112px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.why-choice__viewport-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff, #fff 30%, rgba(255, 255, 255, 0));
}

.why-choice__viewport-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #fff, #fff 30%, rgba(255, 255, 255, 0));
}

.why-choice__viewport-wrap.whyChooseZBSection_fadeStart__VDobl::before,
.why-choice__viewport-wrap.whyChooseZBSection_fadeEnd__qNswl::after {
  opacity: 1;
}

.why-choice__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 8px 22px;
  scroll-behavior: smooth;
  scroll-padding-left: max(3rem, calc((100vw - 75.5rem) / 2 + 3rem));
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.why-choice__viewport::-webkit-scrollbar {
  display: none;
}

.why-choice__track {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: max-content;
  padding-inline:
    max(3rem, calc((100vw - 75.5rem) / 2 + 3rem));
}

.why-choice__card {
  position: relative;
  flex: 0 0 350px;
  width: 350px;
  height: 483px;
  overflow: hidden;
  border-radius: 20px;
  clip-path: inset(0 round 20px);
  color: #171e25;
  scroll-snap-align: start;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.why-choice__card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(11, 14, 12, 0.16);
}

.why-choice__card-bg,
.why-choice__shade,
.why-choice__data-wash,
.why-choice__mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.why-choice__card-bg {
  z-index: -3;
  object-fit: cover;
}

.why-choice__card--photo {
  color: #fff;
  background: #3b2d22;
}

.why-choice__card--photo .why-choice__card-bg {
  object-position: 50% 30%;
  object-fit: contain;
  transform: scale(1.05);
  padding-top: 12%;
}

.why-choice__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 14, 12, 0.12) 0%, rgba(11, 14, 12, 0.08) 28%, rgba(11, 14, 12, 0.83) 100%),
    linear-gradient(90deg, rgba(94, 55, 25, 0.42), transparent 70%);
}

.why-choice__card--lavender {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), transparent 48%),
    linear-gradient(160deg, #fafaff 0%, #e5e2fb 58%, #cbc8f5 100%);
}

.why-choice__orb {
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.54;
}

.why-choice__orb--one {
  top: -115px;
  right: -82px;
  background: rgba(16, 185, 129, 0.2);
}

.why-choice__orb--two {
  right: -95px;
  bottom: -85px;
  background: rgba(99, 102, 241, 0.28);
}

.why-choice__card--security {
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(236, 72, 153, 0.32), transparent 22%),
    radial-gradient(circle at 68% 28%, rgba(59, 130, 246, 0.34), transparent 32%),
    #080b0a;
}

.why-choice__card--security::before,
.why-choice__card--security::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 390px;
  height: 88px;
  right: -130px;
  top: 72px;
  border-radius: 18px;
  background: linear-gradient(90deg, #8b5cf6, #ec4899 42%, #f97316 72%, #38bdf8);
  filter: blur(1px);
  opacity: 0.66;
  transform: rotate(-19deg);
}

.why-choice__card--security::after {
  top: 126px;
  right: -170px;
  opacity: 0.22;
  filter: blur(10px);
}

.why-choice__security-light {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    repeating-linear-gradient(105deg, transparent 0 32px, rgba(255, 255, 255, 0.035) 33px 34px),
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5));
}

.why-choice__card--data {
  background: #e9f4f2;
}

.why-choice__card-bg--device {
  width: 118%;
  height: 72%;
  top: -15px;
  left: 16%;
  object-fit: contain;
  object-position: 100% 0;
  opacity: 0.3;
  filter: saturate(0.65) contrast(0.88);
}

.why-choice__data-wash {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(233, 244, 242, 0.05) 0%, rgba(233, 244, 242, 0.6) 42%, #e9f4f2 68%),
    linear-gradient(90deg, #e9f4f2 0%, transparent 66%);
}

.why-choice__card--mint {
  background:
    radial-gradient(circle at 25% 10%, rgba(255, 255, 255, 0.96), transparent 38%),
    linear-gradient(145deg, #e6f7f4 0%, #f5f7e9 55%, #f5ead8 100%);
}

.why-choice__card--global {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(45, 212, 191, 0.28), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(99, 102, 241, 0.28), transparent 34%),
    linear-gradient(145deg, #0b1320 0%, #111c2f 58%, #0b1020 100%);
}

.why-choice__global-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 76% 24%, #000, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 76% 24%, #000, transparent 68%);
}

.why-choice__global-orbit {
  position: absolute;
  z-index: -1;
  top: 42px;
  right: -48px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(94, 234, 212, 0.24);
  border-radius: 50%;
  animation: why-orbit 18s linear infinite;
}

.why-choice__global-orbit::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5eead4;
  box-shadow: 0 0 0 7px rgba(94, 234, 212, 0.12);
}

.why-choice__global-orbit--two {
  top: 78px;
  right: -10px;
  width: 152px;
  height: 152px;
  border-color: rgba(129, 140, 248, 0.3);
  animation-duration: 13s;
  animation-direction: reverse;
}

.why-choice__global-orbit--two::after {
  top: auto;
  bottom: 15px;
  left: 42px;
  width: 6px;
  height: 6px;
  background: #a5b4fc;
  box-shadow: 0 0 0 6px rgba(165, 180, 252, 0.1);
}

.why-choice__card--payments {
  background:
    radial-gradient(circle at 85% 12%, rgba(249, 115, 22, 0.2), transparent 30%),
    radial-gradient(circle at 10% 94%, rgba(236, 72, 153, 0.12), transparent 34%),
    linear-gradient(145deg, #fffaf6 0%, #f8eee8 54%, #f2e6ef 100%);
}

.why-choice__payment-card {
  position: absolute;
  z-index: -1;
  top: 58px;
  right: -34px;
  display: flex;
  width: 210px;
  height: 126px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(117, 54, 20, 0.16);
  transform: rotate(-8deg);
  animation: why-payment-float 6s ease-in-out infinite;
}

.why-choice__payment-card--back {
  top: 32px;
  right: -72px;
  background: linear-gradient(135deg, #0f172a, #334155);
  opacity: 0.66;
  transform: rotate(8deg);
  animation-delay: -2.1s;
}

.why-choice__payment-card--front {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ec4899 62%, #7c3aed);
}

.why-choice__payment-card--front i {
  width: 31px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
  box-shadow: inset 0 0 0 1px rgba(120, 53, 15, 0.18);
}

.why-choice__payment-card--front b {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.why-choice__mesh {
  z-index: -1;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(5, 150, 105, 0.36) 1px, transparent 1.2px),
    linear-gradient(135deg, transparent 55%, rgba(255, 255, 255, 0.7));
  background-size: 22px 22px, 100% 100%;
  mask-image: radial-gradient(circle at 90% 15%, #000, transparent 58%);
  -webkit-mask-image: radial-gradient(circle at 90% 15%, #000, transparent 58%);
}

.why-choice__content {
  position: relative;
  height: 100%;
}

.why-choice__icon {
  position: absolute;
  top: 28px;
  left: 49px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.why-choice__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-choice__bottom {
  position: absolute;
  top: 218px;
  right: 49px;
  bottom: 38px;
  left: 49px;
  display: flex;
  flex-direction: column;
}

.why-choice__bottom--compact {
  top: 184px;
}

.why-choice__subtitle {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.why-choice__stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.why-choice__stat--words {
  font-size: 2.35rem;
  line-height: 1.02;
}

.why-choice__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background: currentColor;
  opacity: 0.35;
}

.why-choice__description {
  font-size: 0.9rem;
  line-height: 1.46;
}

.why-choice__dots {
  display: none;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
}

.why-choice__dot {
  width: 32px;
  height: 32px;
  border: 11px solid #fff;
  border-radius: 50%;
  background: #d8dcda;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.why-choice__dot.is-active {
  transform: scale(1.15);
  background: var(--green-deep);
}

@keyframes why-route-drift {
  to { stroke-dashoffset: -216; }
}

@keyframes why-node-pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.42; }
  50% { transform: scale(1.25); opacity: 1; }
}

@keyframes why-reach-pulse {
  0%, 22% { transform: translateX(-100%); opacity: 0; }
  48% { opacity: 1; }
  76%, 100% { transform: translateX(100%); opacity: 0; }
}

@keyframes why-orbit {
  to { transform: rotate(360deg); }
}

@keyframes why-payment-float {
  0%, 100% { translate: 0 0; }
  50% { translate: -4px -8px; }
}

@media (prefers-reduced-motion: reduce) {
  .why-choice__route,
  .why-choice__route-nodes circle,
  .why-choice__reach i::after,
  .why-choice__global-orbit,
  .why-choice__payment-card {
    animation: none;
  }
}


@media (max-width: 900px) {
  .why-choice__header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding-inline: var(--gutter);
    text-align: center;
  }
  .why-choice__header .sec-head__eyebrow { justify-content: center; }
  .why-choice__header .sec-head__desc { margin-inline: auto; }
  .why-choice__header .sec-head__title { font-size: 1.75rem; }
  .why-choice__reach { justify-content: center; margin-inline: auto; }
  .why-choice__controls { display: none; }
  .why-choice__viewport-wrap::before,
  .why-choice__viewport-wrap::after { width: min(48px, 12vw); }
  .why-choice__viewport {
    scroll-padding-left: max(var(--gutter), calc(50% - min(42vw, 150px)));
  }
  .why-choice__track {
    gap: 14px;
    padding-inline: max(var(--gutter), calc(50% - min(42vw, 150px)));
  }
  .why-choice__card {
    flex: 0 0 min(300px, 84vw);
    flex-basis: min(300px, 84vw);
    width: min(300px, 84vw);
    height: min(440px, 128vw);
    scroll-snap-align: center;
  }
  .why-choice__card:hover { transform: none; }
  .why-choice__icon { left: clamp(20px, 6vw, 36px); }
  .why-choice__bottom {
    right: clamp(20px, 6vw, 36px);
    left: clamp(20px, 6vw, 36px);
  }
  .why-choice__dots { display: flex; }
}


/* ------------------------------------------------------------ CAPABILITIES */
/* Visual language from gabriel-v2 training bento: soft pastel glows, glass
   tiles, violet chips. Copy stays AidenTeach for Schools. */

.sch-caps {
    --cap-bg: #f6f7fb;
    --cap-text: #0f172a;
    --cap-muted: #475569;
    --cap-faint: #64748b;
    --cap-accent: #7c3aed;
    --cap-hot: #ec4899;
    --cap-line: rgba(15, 23, 42, 0.08);
    --cap-card: rgba(255, 255, 255, 0.86);
    --cap-ease: cubic-bezier(0.22, 1, 0.36, 1);

    position: relative;
    isolation: isolate;
    overflow: clip;
    padding: clamp(56px, 7vw, 96px) 0;
    background: var(--cap-bg);
    color: var(--cap-text);
}

.sch-caps__glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 42% 40% at 0% 0%, rgba(236, 72, 153, 0.14), transparent 55%),
        radial-gradient(ellipse 48% 45% at 100% 10%, rgba(124, 58, 237, 0.16), transparent 58%),
        radial-gradient(ellipse 35% 30% at 70% 100%, rgba(58, 167, 190, 0.1), transparent 50%);
}

.sch-caps__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(22px, 2.8vw, 32px);
}

.sch-caps__intro {
    display: grid;
    gap: 14px;
    text-align: center;
    justify-items: center;
    max-width: 720px;
    margin-inline: auto;
}

.sch-caps__eyebrow {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--cap-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sch-caps__title {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.05;
    color: var(--cap-text);
}
.sch-caps__title em {
    font-style: normal;
    background: linear-gradient(105deg, #236f80, #3aa7be 40%, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sch-caps__desc {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--cap-muted);
    max-width: 48ch;
}

.sch-phases {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.sch-phases li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--cap-line);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--cap-muted);
}
.sch-phases li b {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--cap-accent);
}
.sch-phases li.is-active {
    background: rgba(58, 167, 190, 0.14);
    border-color: rgba(58, 167, 190, 0.35);
    color: #0f4f5c;
}
.sch-phases li.is-active b { color: #0f766e; }

.sch-bento {
    display: grid;
    grid-template-columns: 1.25fr 1.5fr 1.25fr;
    grid-template-rows: minmax(240px, 1fr) minmax(240px, 1fr);
    gap: 12px;
    align-items: stretch;
}

.sch-bento__card {
    min-width: 0;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: clamp(18px, 2vw, 26px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    background: var(--cap-card);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 18px 40px -28px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.22s var(--cap-ease), box-shadow 0.22s var(--cap-ease);
}
.sch-bento__card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 48px -26px rgba(124, 58, 237, 0.28);
}

.sch-bento__card--core {
    background:
        linear-gradient(155deg, rgba(58, 167, 190, 0.14), rgba(124, 58, 237, 0.1) 42%, rgba(255, 255, 255, 0.94) 72%);
    border-color: rgba(58, 167, 190, 0.22);
}
.sch-bento__card--mods {
    justify-content: center;
    background:
        linear-gradient(145deg, rgba(236, 72, 153, 0.16), rgba(124, 58, 237, 0.12) 40%, rgba(255, 255, 255, 0.96) 75%);
    border-color: rgba(236, 72, 153, 0.2);
}
.sch-bento__card--flow {
    background:
        linear-gradient(180deg, rgba(124, 58, 237, 0.1), rgba(255, 255, 255, 0.94) 38%);
}
.sch-bento__card--secure {
    background:
        linear-gradient(145deg, rgba(16, 185, 129, 0.14), rgba(255, 255, 255, 0.96));
}
.sch-bento__card--ai {
    background:
        linear-gradient(145deg, rgba(58, 167, 190, 0.14), rgba(255, 255, 255, 0.96));
}
.sch-bento__robot {
    width: 72px;
    height: auto;
    margin: 2px 0;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.2));
}

.sch-bento__kicker {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cap-accent);
}

.sch-bento__title {
    margin: 0;
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    font-weight: 750;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--cap-text);
}

.sch-bento__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--cap-muted);
}

.sch-bento__chips {
    list-style: none;
    margin: auto 0 0;
    padding: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.sch-bento__chips li {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.08);
    color: #5b21b6;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.sch-bento__stat {
    display: flex;
    align-items: baseline;
    gap: 1px;
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.95;
    color: var(--cap-text);
}
.sch-bento__stat-suffix {
    background: linear-gradient(92deg, #ec4899, #7c3aed 50%, #3aa7be);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sch-bento__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.25em 0.5em;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.16);
    color: #047857;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

/* spotlight overlay driven by --mx/--my (JS) — suite + other cards */
[data-spotlight]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(58, 167, 190, 0.1), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
[data-spotlight]:hover::after { opacity: 1; }
[data-spotlight] { position: relative; overflow: hidden; }

.sch-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 8px 0 4px;
}
.sch-flow__step {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--cap-line);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cap-text);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.sch-flow__step--done {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.28);
    color: #5b21b6;
}
.sch-flow__arrow { position: relative; width: 22px; height: 2px; background: rgba(15, 23, 42, 0.12); overflow: hidden; border-radius: 2px; }
.sch-flow__arrow i {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ec4899, #7c3aed, #3aa7be);
    transform: translateX(-100%);
    animation: sch-flow 2.4s ease-in-out infinite;
}
.sch-flow__arrow:nth-of-type(2) i { animation-delay: 1.2s; }
@keyframes sch-flow {
    0% { transform: translateX(-100%); }
    55%, 100% { transform: translateX(100%); }
}

.sch-journey {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}
.sch-journey li { display: flex; gap: 12px; align-items: flex-start; }
.sch-journey li span {
    flex: none;
    width: 34px; height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.14);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--cap-accent);
}
.sch-journey strong { display: block; font-size: 0.9rem; letter-spacing: -0.01em; color: var(--cap-text); }
.sch-journey small { display: block; margin-top: 4px; font-size: 0.78rem; line-height: 1.5; color: var(--cap-faint); }

/* ------------------------------------------------------------------- SUITE */
/* gabriel-style paper grid + multi-wash gradients; AidenTeach teal/violet/amber. */

.sch-suite {
    --suite-accent: #3aa7be;
    --suite-accent-rgb: 58, 167, 190;
    --suite-glow: rgba(58, 167, 190, 0.22);
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding: clamp(80px, 10vw, 140px) 0;
    background:
        radial-gradient(ellipse 55% 48% at 92% 8%, rgba(16, 185, 129, 0.1), transparent 55%),
        radial-gradient(ellipse 45% 42% at 4% 78%, rgba(255, 112, 90, 0.1), transparent 52%),
        radial-gradient(ellipse 40% 36% at 55% 100%, rgba(139, 92, 246, 0.08), transparent 55%),
        radial-gradient(ellipse 35% 30% at 70% 40%, rgba(58, 167, 190, 0.07), transparent 50%),
        linear-gradient(180deg, #f7fafb 0%, #f3f6f8 48%, #eef4f7 100%);
    color: var(--sch-ink);
    transition: --suite-accent 0.35s ease;
}

.sch-suite[data-suite-active="academic"] {
    --suite-accent: #3aa7be;
    --suite-accent-rgb: 58, 167, 190;
    --suite-glow: rgba(58, 167, 190, 0.28);
}

.sch-suite[data-suite-active="portals"] {
    --suite-accent: #8b5cf6;
    --suite-accent-rgb: 139, 92, 246;
    --suite-glow: rgba(139, 92, 246, 0.26);
}

.sch-suite[data-suite-active="campus"] {
    --suite-accent: #f59e0b;
    --suite-accent-rgb: 245, 158, 11;
    --suite-glow: rgba(245, 158, 11, 0.24);
}

.sch-suite__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 92% 72% at 50% 28%, #000 28%, transparent 78%);
    mask-image: radial-gradient(ellipse 92% 72% at 50% 28%, #000 28%, transparent 78%);
}

.sch-suite__inner {
    position: relative;
    z-index: 1;
}

.sch-suite__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin: clamp(32px, 4vw, 48px) auto 0;
    padding: 5px;
    width: max-content;
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 250, 0.88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 10px 28px -18px rgba(11, 21, 38, 0.18);
}

.sch-suite__tab {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    padding: 11px 26px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sch-muted);
    cursor: pointer;
    transition:
        color 0.28s ease,
        background-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.sch-suite__tab:hover {
    color: var(--sch-ink);
    background: rgba(11, 21, 38, 0.04);
}

.sch-suite__tab:focus { outline: none; box-shadow: none; }

.sch-suite__tab:focus-visible {
    outline: 2px solid rgba(var(--suite-accent-rgb), 0.75);
    outline-offset: 2px;
}

.sch-suite__tab.is-active {
    color: #fff;
    background: linear-gradient(135deg, #0b1526 0%, #152338 55%, #1a2b44 100%);
    box-shadow:
        0 0 0 1px rgba(var(--suite-accent-rgb), 0.35),
        0 10px 24px -10px rgba(11, 21, 38, 0.45),
        0 0 28px -6px var(--suite-glow);
}

.sch-suite__tab.is-active:hover { color: #fff; }

/* No-JS first: all three module grids render; .sch-js collapses to tabs. */
.sch-mods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
    margin-top: clamp(36px, 5vw, 52px);
}

.sch-mods[hidden] { display: none; }
html.sch-js .sch-mods:not(.is-active) { display: none; }

.sch-mod {
    --mod-accent: #3aa7be;
    --mod-accent-rgb: 58, 167, 190;
    position: relative;
    padding: 26px 24px;
    border-radius: var(--sch-r-md);
    background: #fff;
    border: 1px solid var(--sch-line);
    overflow: hidden;
    transition: transform 0.4s var(--sch-ease), box-shadow 0.4s var(--sch-ease), border-color 0.3s ease;
}

.sch-mod:hover {
    transform: translateY(-4px);
    box-shadow: var(--sch-shadow-md);
    border-color: rgba(var(--mod-accent-rgb), 0.35);
}

.sch-mod__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--mod-accent-rgb), 0.16), rgba(var(--mod-accent-rgb), 0.08));
    border: 1px solid rgba(var(--mod-accent-rgb), 0.28);
    color: var(--mod-accent);
    font-size: 1rem;
    margin-bottom: 16px;
    transition: transform 0.35s var(--sch-ease);
}

.sch-mod:hover .sch-mod__icon { transform: scale(1.08) rotate(-4deg); }

.sch-mod h3 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--sch-ink);
}

.sch-mod p {
    margin: 8px 0 0;
    font-size: 0.85rem;
    line-height: 1.58;
    color: var(--sch-ink-soft);
}

/* Multi-color icon accents across the grid */
.sch-mods > .sch-mod:nth-child(6n + 1) { --mod-accent: #3aa7be; --mod-accent-rgb: 58, 167, 190; }
.sch-mods > .sch-mod:nth-child(6n + 2) { --mod-accent: #8b5cf6; --mod-accent-rgb: 139, 92, 246; }
.sch-mods > .sch-mod:nth-child(6n + 3) { --mod-accent: #10b981; --mod-accent-rgb: 16, 185, 129; }
.sch-mods > .sch-mod:nth-child(6n + 4) { --mod-accent: #f59e0b; --mod-accent-rgb: 245, 158, 11; }
.sch-mods > .sch-mod:nth-child(6n + 5) { --mod-accent: #ff705a; --mod-accent-rgb: 255, 112, 90; }
.sch-mods > .sch-mod:nth-child(6n + 6) { --mod-accent: #38bdf8; --mod-accent-rgb: 56, 189, 248; }

.sch-mod--featured {
    grid-column: span 2;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background:
        radial-gradient(420px 200px at 0% 0%, rgba(var(--suite-accent-rgb), 0.12), transparent 65%),
        #fff;
    border-color: rgba(var(--suite-accent-rgb), 0.35);
    --mod-accent: var(--suite-accent);
    --mod-accent-rgb: var(--suite-accent-rgb);
}

.sch-mod--featured .sch-mod__icon { margin-bottom: 0; width: 52px; height: 52px; }
.sch-mod--featured h3 { font-size: 1.2rem; }
.sch-mod--featured p { font-size: 0.9rem; }

/* -------------------------------------------------------------- responsive */

@media (max-width: 1100px) {
    .sch-hero { padding-top: 140px; }
    .sch-hero__inner { grid-template-columns: 1fr; padding-bottom: 72px; }
    .sch-hero__visual { min-height: 420px; margin-top: 10px; }
    .sch-chip--attend { left: 0; }
    .sch-chip--ai { right: 0; }
    .sch-impact__inner { grid-template-columns: 1fr; gap: 48px; }
    .sch-impact__header { text-align: center; }
    .sch-impact__eyebrow { justify-content: center; }
    .sch-impact__title { margin-inline: auto; }
    .sch-impact__desc { margin-inline: auto; }
    .sch-floater { width: min(180px, 24vw); opacity: 0.92; }
    .sch-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }
}

@media (max-width: 800px) {
    .sch-floater { display: none; }
    .sch-showcase > .sch-floater--bl { display: none; }
}

@media (max-width: 760px) {
    .sch-hero__proof { flex-wrap: wrap; gap: 22px; }
    .sch-mod--featured { grid-column: span 1; flex-direction: column; }
    .sch-suite__tabs { width: 100%; }
    .sch-suite__tab { flex: 1; padding-inline: 10px; }
    .sch-desktop-only { display: none !important; }
    .sch-mobile-only { display: block !important; }
    .sch-bento {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
}

@media (max-width: 640px) {
    .sch-impact__metrics { grid-template-columns: 1fr; gap: 32px; }
    .sch-impact__metric { border-left-color: rgba(16, 185, 129, 0.4); }
}

@media (max-width: 520px) {
    .sch-hero { padding-top: 118px; }
    .sch-hero__actions .sch-btn { width: 100%; justify-content: center; }
    .sch-chip { padding: 10px 12px; }
    .sch-chip strong { font-size: 0.78rem; }
    .sch-chip small { font-size: 0.64rem; }
}

/* ---------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
    .sch-floater__phone,
    .sch-floater__img { animation: none !important; }

    body.schools-page *,
    body.schools-page *::before,
    body.schools-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .sch-idcard__sheen { display: none; }

    .about-me__panel.is-active { animation: none !important; }
    .about-me__service:hover,
    .about-me__service:focus-visible { transform: none !important; }
    .about-me__feature-chips li,
    .about-me__copy::before { transition: none !important; }
}

/* --------------------------------------------------------------- printing */
/* Gradient-clipped text is transparent ink on paper, and the dark sections
   print as white boxes with invisible white text under default no-background
   print settings. Flatten all of it to plain ink. */

@media print {
    .sch-h2 em,
    .sch-hero__title em,
    .sch-caps__title em,
    .sch-impact__num,
    .sch-bento__stat,
    .sch-phases li b {
        background: none !important;
        -webkit-text-fill-color: initial !important;
        color: #0b1526 !important;
    }
    .about-me.sch-showcase {
        background: #fff !important;
        box-shadow: none !important;
        color: #0b1526 !important;
    }
    .about-me .sec-head__title,
    .about-me__title,
    .about-me__service-title,
    .about-me__stat-value {
        color: #0b1526 !important;
    }
    .sch-section-head--dark .sch-h2,
    .sch-section-head--dark > p,
    .sch-brief h3,
    .sch-brief p,
    .sch-panel__bar strong {
        color: #0b1526 !important;
    }
    .sch-hero__bg,
    .sch-showcase > .sch-floater {
        display: none !important;
    }
}
