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

/*
 * Product brand — aligned with Filament school panel + tenant defaults
 * primary #3B82F6 / secondary #1E40AF / success Emerald / warning Amber (bus yellow)
 */
:root {
    --brand: #3B82F6;
    --brand-dark: #1E40AF;
    --brand-deep: #1D4ED8;
    --brand-bright: #60A5FA;
    --brand-soft: #DBEAFE;

    --sky: var(--brand-deep);
    --sky-bright: var(--brand);
    --sky-soft: var(--brand-soft);

    --meadow: #059669;
    --meadow-bright: #10B981;
    --meadow-soft: #D1FAE5;

    --sun: #F59E0B;
    --sun-bright: #FBBF24;
    --sun-soft: #FEF3C7;

    --ink: #0F172A;
    --ink-soft: #334155;
    --muted: #64748B;
    --line: #E2E8F0;
    --fog: #F8FAFC;
    --white: #FFFFFF;
    --container: 1120px;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(37, 99, 235, 0.1);
    --shadow-brand: 0 14px 32px rgba(59, 130, 246, 0.28);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.site-nav {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 40;
    padding: 1rem 0;
    transition: background .25s, box-shadow .25s, padding .25s;
}

.site-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
    padding: .7rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(145deg, var(--brand), var(--brand-dark));
    box-shadow: var(--shadow-brand);
}

.brand strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .15rem;
}

.nav-links a {
    text-decoration: none;
    padding: .55rem .85rem;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.nav-links a:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white !important;
    text-decoration: none;
    font-weight: 800;
    font-size: .9rem;
    box-shadow: var(--shadow-brand);
}

.nav-cta:hover {
    filter: brightness(1.05);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.7);
    place-items: center;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 6.5rem 0 0;
    background:
        radial-gradient(ellipse 70% 55% at 82% 8%, rgba(59, 130, 246, 0.28), transparent 60%),
        radial-gradient(ellipse 45% 40% at 8% 72%, rgba(16, 185, 129, 0.14), transparent 55%),
        radial-gradient(ellipse 40% 35% at 55% 90%, rgba(245, 158, 11, 0.16), transparent 50%),
        linear-gradient(180deg, #BFDBFE 0%, #DBEAFE 26%, #EFF6FF 55%, #F0FDF4 78%, #FFFBEB 100%);
}

.hero-sky {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .55;
    will-change: transform, opacity;
}

.hero-orb--a {
    width: clamp(180px, 28vw, 360px);
    height: clamp(180px, 28vw, 360px);
    top: 8%;
    left: 6%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.58), rgba(251, 191, 36, 0));
    animation: orb-drift 14s ease-in-out infinite;
}

.hero-orb--b {
    width: clamp(220px, 34vw, 420px);
    height: clamp(220px, 34vw, 420px);
    top: 12%;
    right: -4%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), rgba(59, 130, 246, 0));
    animation: orb-drift 18s ease-in-out infinite reverse;
}

.hero-orb--c {
    width: clamp(160px, 24vw, 300px);
    height: clamp(160px, 24vw, 300px);
    bottom: 18%;
    left: 18%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.38), rgba(16, 185, 129, 0));
    animation: orb-pulse 10s ease-in-out infinite;
}

.hero-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    animation: spark-float 7s ease-in-out infinite;
}

.hero-spark--1 { top: 22%; right: 18%; animation-delay: 0s; }
.hero-spark--2 { top: 40%; left: 22%; width: 6px; height: 6px; animation-delay: 1.4s; }
.hero-spark--3 { top: 28%; left: 48%; width: 5px; height: 5px; animation-delay: 2.6s; }

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
    padding-bottom: 0;
}

.hero-copy {
    max-width: 38rem;
    padding-bottom: 1rem;
}

.hero-copy > * {
    opacity: 0;
    animation: hero-rise 0.85s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-copy .hero-brand { animation-delay: 0.05s; }
.hero-copy h1 { animation-delay: 0.18s; }
.hero-copy > p:not(.hero-brand) { animation-delay: 0.32s; }
.hero-copy .cta-row { animation-delay: 0.46s; }

.hero-brand {
    font-size: clamp(2.6rem, 7vw, 4.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: .85rem;
    background: linear-gradient(120deg, var(--brand-dark) 0%, var(--brand) 45%, var(--meadow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy h1 {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: .85rem;
    color: var(--ink-soft);
    max-width: 20ch;
}

.hero-copy p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 36ch;
    margin-bottom: 1.6rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 48px;
    padding: .8rem 1.3rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: rgba(255,255,255,.82);
    color: var(--brand-dark);
    border: 1px solid rgba(59, 130, 246, 0.22);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(30, 64, 175, 0.18);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(59, 130, 246, 0.35);
}

.btn-whatsapp {
    border-color: rgba(5, 150, 105, 0.25);
    color: var(--meadow);
    background: var(--meadow-soft);
}

.btn-whatsapp:hover {
    box-shadow: 0 12px 28px rgba(5, 150, 105, 0.18);
}

.hero-soft-link {
    display: inline-flex;
    margin-top: .95rem;
    font-size: .92rem;
    font-weight: 800;
    color: var(--brand-dark);
    text-decoration: none;
    opacity: 0;
    animation: hero-rise 0.85s cubic-bezier(.2,.7,.2,1) forwards;
    animation-delay: 0.58s;
}

.hero-soft-link:hover { text-decoration: underline; color: var(--brand); }

.hero-visual {
    position: relative;
    min-height: clamp(280px, 42vw, 460px);
    display: grid;
    align-items: end;
    justify-items: center;
}

.hero-bus-stage {
    position: relative;
    width: min(100%, 560px);
    animation: bus-enter 1.15s cubic-bezier(.2,.7,.2,1) both;
    animation-delay: 0.25s;
}

.hero-bus-glow {
    position: absolute;
    inset: auto 12% 8% 12%;
    height: 28%;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(59, 130, 246, 0.42), rgba(251, 191, 36, 0.18), transparent);
    filter: blur(8px);
    animation: glow-breathe 4.5s ease-in-out infinite;
    animation-delay: 1.1s;
}

.hero-bus-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    animation: float-soft 5.5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.hero-bus-ground {
    position: absolute;
    inset-inline: 18%;
    bottom: 6%;
    height: 18px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    filter: blur(8px);
    animation: ground-pulse 5.5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-soft { background: var(--fog); }

.section-head {
    max-width: 40rem;
    margin-bottom: 2.5rem;
}

.section-head.center {
    text-align: center;
    margin-inline: auto;
}

.eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: .7rem;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: .7rem;
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

.scene {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.scene-list {
    list-style: none;
    display: grid;
    gap: 1.15rem;
}

.scene-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .9rem;
    align-items: start;
}

.scene-list strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: .15rem;
}

.scene-list span {
    color: var(--muted);
    font-size: .95rem;
}

.mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-weight: 900;
    flex-shrink: 0;
}

.device {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow);
}

.device-bar {
    padding: 1.15rem 1.35rem;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand), var(--meadow));
    color: white;
}

.device-bar strong { display: block; font-size: 1rem; }
.device-bar small { opacity: .85; font-size: .8rem; }

.device-body { padding: 1.1rem; display: grid; gap: .7rem; }

.device-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .85rem;
    border-radius: 16px;
    background: var(--fog);
    border: 1px solid rgba(215, 227, 238, 0.8);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-in .device-row {
    opacity: 1;
    transform: none;
}

.reveal.is-in .device-row:nth-child(1) { transition-delay: .1s; }
.reveal.is-in .device-row:nth-child(2) { transition-delay: .22s; }
.reveal.is-in .device-row:nth-child(3) { transition-delay: .34s; }

.pill-live {
    background: rgba(20, 184, 166, 0.15);
    color: var(--meadow);
    position: relative;
}

.pill-live::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-inline-end: .35rem;
    border-radius: 50%;
    background: var(--meadow-bright);
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.55);
    animation: live-dot 1.8s ease infinite;
    vertical-align: middle;
}

.device-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: white;
    background: linear-gradient(135deg, #38BDF8, #0284C7);
}

.device-row:nth-child(2) .device-avatar { background: linear-gradient(135deg, #FBBF24, #D97706); }
.device-row:nth-child(3) .device-avatar { background: linear-gradient(135deg, #2DD4BF, #0F766E); }

.device-meta { flex: 1; min-width: 0; }
.device-meta strong { display: block; font-size: .9rem; }
.device-meta small { color: var(--muted); font-size: .75rem; }

.pill {
    font-size: .72rem;
    font-weight: 800;
    padding: .28rem .7rem;
    border-radius: 999px;
    white-space: nowrap;
}

.pill-wait { background: rgba(245, 158, 11, 0.16); color: #B45309; }
.pill-info { background: var(--brand-soft); color: var(--brand-dark); }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.audience {
    padding: 1.6rem 1.35rem;
    border-bottom: 3px solid transparent;
}

.audience:nth-child(1) { border-color: var(--sky-bright); }
.audience:nth-child(2) { border-color: var(--meadow-bright); }
.audience:nth-child(3) { border-color: var(--sun); }

.audience h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin: .55rem 0 .45rem;
}

.audience p { color: var(--muted); font-size: .95rem; }

.capacity-stack {
    display: grid;
    gap: 2.5rem;
}

.capacity {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
    padding-block: .5rem;
}

.capacity:nth-child(even) .capacity-copy { order: 2; }

.capacity-kicker {
    font-size: .8rem;
    font-weight: 800;
    color: var(--meadow);
    margin-bottom: .45rem;
}

.capacity h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 900;
    margin-bottom: .55rem;
}

.capacity p { color: var(--muted); }

.capacity-visual {
    min-height: 180px;
    border-radius: 24px;
    padding: 1.5rem;
    display: grid;
    align-content: center;
    gap: .7rem;
    color: white;
}

.cv-gps {
    background:
        linear-gradient(145deg, rgba(30, 64, 175, 0.96), rgba(37, 99, 235, 0.92)),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 40%);
}

.cv-board {
    background:
        linear-gradient(145deg, rgba(5, 150, 105, 0.96), rgba(16, 185, 129, 0.9)),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,.14), transparent 40%);
}

.cv-life {
    background:
        linear-gradient(145deg, rgba(217, 119, 6, 0.95), rgba(245, 158, 11, 0.9)),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,.16), transparent 40%);
}

.capacity-visual strong { font-size: 1.25rem; font-weight: 900; }
.capacity-visual span { opacity: .9; font-size: .95rem; max-width: 28ch; }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    counter-reset: step;
}

.step {
    position: relative;
    padding-top: .25rem;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-weight: 900;
    color: var(--brand-dark);
    background: white;
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.12);
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: .35rem;
}

.step p {
    color: var(--muted);
    font-size: .92rem;
}

.trust {
    background:
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(96, 165, 250, 0.28), transparent 55%),
        radial-gradient(ellipse 50% 70% at 90% 40%, rgba(16, 185, 129, 0.18), transparent 50%),
        linear-gradient(135deg, #1E3A8A 0%, #1E40AF 45%, #0F766E 100%);
    color: white;
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust strong {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: .4rem;
    background: linear-gradient(90deg, #FBBF24, #93C5FD, #6EE7B7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust span {
    color: rgba(226, 232, 240, 0.82);
    font-weight: 600;
    font-size: .92rem;
}

.portals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.portals-single {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
}

.portal {
    display: grid;
    gap: .75rem;
    padding: 1.7rem 1.5rem 1.5rem;
    border-radius: 24px;
    text-decoration: none;
    min-height: 280px;
    transition: transform .2s, box-shadow .2s;
    border: 1px solid transparent;
    align-content: start;
}

.portal:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.portal-school {
    background: linear-gradient(165deg, #DBEAFE 0%, #EFF6FF 45%, #FFFBEB 100%);
    border-color: rgba(59, 130, 246, 0.28);
}

.portal-super {
    background: linear-gradient(165deg, #D1FAE5 0%, #ECFDF5 45%, #F0FDF4 100%);
    border-color: rgba(16, 185, 129, 0.28);
}

.portal-who {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: .35rem .75rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    background: rgba(255,255,255,.8);
    color: var(--brand-dark);
    border: 1px solid rgba(59, 130, 246, 0.22);
}

.portal-super .portal-who {
    color: var(--meadow);
    border-color: rgba(5, 150, 105, 0.22);
}

.portal h3 {
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.25;
}

.portal > p {
    color: var(--muted);
    font-size: .95rem;
}

.portal-points {
    list-style: none;
    display: grid;
    gap: .45rem;
    margin: .15rem 0 .35rem;
}

.portal-points li {
    position: relative;
    padding-inline-start: 1.15rem;
    color: var(--ink-soft);
    font-size: .9rem;
    font-weight: 600;
}

.portal-points li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: .55em;
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: var(--sky-bright);
}

.portal-super .portal-points li::before { background: var(--meadow-bright); }

.portal-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 800;
    color: var(--brand-dark);
    padding-top: .5rem;
}

.portal-super .portal-action { color: var(--meadow); }

.portal-note {
    margin-top: 1.35rem;
    text-align: center;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 600;
}

.faq {
    display: grid;
    gap: .85rem;
    max-width: 760px;
    margin-inline: auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    padding: 0;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item[open] {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
    color: var(--ink);
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background .25s ease;
}

.faq-item summary:hover {
    background: rgba(219, 234, 254, 0.55);
}

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

.faq-item summary::after {
    content: '';
    width: 1.65rem;
    height: 1.65rem;
    flex-shrink: 0;
    border-radius: 50%;
    background:
        linear-gradient(var(--sky), var(--sky)) center / 10px 2px no-repeat,
        linear-gradient(var(--sky), var(--sky)) center / 2px 10px no-repeat,
        var(--sky-soft);
    transition: transform .35s ease, background-color .25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    background:
        linear-gradient(var(--sky), var(--sky)) center / 10px 2px no-repeat,
        var(--sky-soft);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s cubic-bezier(.2,.7,.2,1);
}

.faq-item[open] .faq-panel {
    grid-template-rows: 1fr;
}

.faq-panel-inner {
    overflow: hidden;
    min-height: 0;
}

.faq-panel-inner p {
    margin: 0;
    padding: 0 1.15rem 1.1rem;
    color: var(--muted);
    font-size: .95rem;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .3s ease .08s, transform .35s ease .08s;
}

.faq-item[open] .faq-panel-inner p {
    opacity: 1;
    transform: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: start;
}

.contact-channels {
    display: grid;
    gap: .9rem;
}

.channel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .9rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
}

.channel:last-child { border-bottom: 0; }

.channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.channel strong {
    display: block;
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: .15rem;
    color: var(--ink);
}

.channel span {
    color: var(--muted);
    font-size: .92rem;
    word-break: break-word;
}

.channel-body {
    display: grid;
    gap: .2rem;
    min-width: 0;
}

.channel-body > strong {
    color: var(--ink);
}

.channel-value {
    display: block;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.45;
}

.channel--hours .channel-value {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}

.contact-form {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}

.field {
    display: grid;
    gap: .35rem;
}

.field.full { grid-column: 1 / -1; }

.field label {
    font-size: .85rem;
    font-weight: 800;
    color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .8rem .95rem;
    background: var(--fog);
    color: var(--ink);
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.field textarea { min-height: 140px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: white;
    border-color: rgba(59, 130, 246, 0.55);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.field .error {
    color: #E11D48;
    font-size: .8rem;
    font-weight: 700;
}

.hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    padding: .9rem 1rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: .92rem;
    margin-bottom: 1rem;
}

.alert-ok {
    background: rgba(20, 184, 166, 0.12);
    color: var(--meadow);
    border: 1px solid rgba(20, 184, 166, 0.22);
}

.alert-err {
    background: rgba(244, 63, 94, 0.1);
    color: #BE123C;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.site-footer {
    background: #07111F;
    color: #CBD5E1;
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-grid-compact {
    grid-template-columns: 1.5fr 1fr;
}

.footer-brand p {
    margin-top: 1rem;
    color: #94A3B8;
    font-size: .9rem;
    max-width: 30ch;
}

.footer-col h4 {
    color: white;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #94A3B8;
    padding: .28rem 0;
    font-size: .9rem;
}

html[dir="rtl"] .footer-col,
html[dir="rtl"] .footer-col h4,
html[dir="rtl"] .footer-col a,
html[dir="rtl"] .footer-col p {
    text-align: right;
}

.footer-col a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: #64748B;
    font-size: .82rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem 1.1rem;
}

.footer-legal a {
    color: #94A3B8;
    text-decoration: none;
}

.footer-legal a:hover {
    color: white;
}

/* Legal pages — pin footer to viewport bottom on short content */
.legal-body {
    background: var(--bg);
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

.legal-page {
    flex: 1 0 auto;
    padding: 7.5rem 0 4rem;
}

.legal-body .site-footer {
    margin-top: auto;
    flex-shrink: 0;
}

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

.legal-eyebrow {
    color: var(--primary);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.legal-page h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 1.75rem;
    line-height: 1.2;
}

.legal-content {
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.75;
}

.legal-content h2,
.legal-content h3 {
    margin: 1.75rem 0 .65rem;
    font-weight: 800;
    line-height: 1.3;
}

.legal-content h2 { font-size: 1.25rem; }
.legal-content h3 { font-size: 1.08rem; }

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: .9rem;
}

.legal-content ul,
.legal-content ol {
    padding-inline-start: 1.25rem;
}

.legal-content a {
    color: var(--primary);
}

.legal-back {
    margin-top: 2.5rem;
}

.legal-back a {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
}

.legal-back a:hover {
    text-decoration: underline;
}

.nav-links.is-static {
    display: flex;
}

/* Analytics consent */
.consent-banner {
    position: fixed;
    inset-inline: 1rem;
    bottom: 1rem;
    z-index: 80;
    width: min(640px, calc(100% - 2rem));
    margin-inline: auto;
}

.consent-inner {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(7, 17, 31, .96);
    color: #E2E8F0;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .35);
}

.consent-copy strong {
    display: block;
    color: white;
    font-size: .95rem;
    margin-bottom: .35rem;
}

.consent-copy p {
    margin: 0;
    font-size: .86rem;
    line-height: 1.5;
    color: #94A3B8;
}

.consent-copy a {
    color: #93C5FD;
    text-decoration: underline;
}

.consent-actions {
    display: flex;
    gap: .5rem;
    flex-shrink: 0;
}

.consent-actions .btn {
    padding: .55rem .9rem;
    font-size: .86rem;
}

.consent-actions .btn-ghost {
    color: #E2E8F0;
    border-color: rgba(255,255,255,.18);
}

.consent-actions .btn-ghost:hover {
    background: rgba(255,255,255,.08);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

.reveal.is-in .audience,
.reveal.is-in .step,
.reveal.is-in .portal,
.reveal.is-in .capacity {
    animation: rise-in .7s cubic-bezier(.2,.7,.2,1) both;
}

.reveal.is-in .audience:nth-child(1),
.reveal.is-in .step:nth-child(1),
.reveal.is-in .portal:nth-child(1),
.reveal.is-in .capacity:nth-child(1) { animation-delay: .05s; }

.reveal.is-in .audience:nth-child(2),
.reveal.is-in .step:nth-child(2),
.reveal.is-in .portal:nth-child(2),
.reveal.is-in .capacity:nth-child(2) { animation-delay: .15s; }

.reveal.is-in .audience:nth-child(3),
.reveal.is-in .step:nth-child(3),
.reveal.is-in .capacity:nth-child(3) { animation-delay: .25s; }

.reveal.is-in .step:nth-child(4) { animation-delay: .35s; }

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes bus-enter {
    from { opacity: 0; transform: translateY(36px) scale(.94); }
    to { opacity: 1; transform: none; }
}

@keyframes hero-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

@keyframes rise-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(24px, -18px) scale(1.08); }
}

@keyframes orb-pulse {
    0%, 100% { opacity: .35; transform: scale(1); }
    50% { opacity: .65; transform: scale(1.12); }
}

@keyframes spark-float {
    0%, 100% { transform: translateY(0); opacity: .35; }
    50% { transform: translateY(-14px); opacity: .95; }
}

@keyframes glow-breathe {
    0%, 100% { opacity: .7; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.08); }
}

@keyframes ground-pulse {
    0%, 100% { opacity: .55; transform: scaleX(1); }
    50% { opacity: .9; transform: scaleX(1.06); }
}

@keyframes live-dot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.55);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 7px rgba(45, 212, 191, 0);
    }
}

@media (max-width: 1100px) {
    .capacity {
        grid-template-columns: 1fr;
    }

    .capacity:nth-child(even) .capacity-copy { order: 0; }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 1rem;
    }
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

@media (max-width: 960px) {
    .container {
        width: min(100% - 1.5rem, var(--container));
    }

    .scene,
    .contact-layout,
    .portals,
    .audience-grid,
    .steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        gap: 1.5rem;
    }

    .nav-toggle { display: grid; }

    .nav-links {
        position: fixed;
        inset-inline: 1rem;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: .75rem;
        border-radius: 18px;
        background: rgba(255,255,255,.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        z-index: 50;
        max-height: calc(100svh - 90px);
        overflow: auto;
    }

    .nav-links.is-open { display: flex; }

    .nav-links.is-static {
        position: static;
        inset: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        max-height: none;
        overflow: visible;
        gap: .5rem;
    }

    .nav-links.is-static a {
        padding: .45rem .7rem;
    }

    .nav-links.is-static .nav-cta {
        width: auto;
        margin-top: 0;
    }

    .nav-links a {
        padding: .85rem 1rem;
    }

    .nav-cta { width: 100%; justify-content: center; margin-top: .35rem; }

    .hero {
        align-items: center;
        padding-top: 5.5rem;
        min-height: auto;
    }

    .hero-shell {
        gap: 0.5rem;
    }

    .hero-copy {
        max-width: none;
        text-align: center;
        padding-bottom: 0;
    }

    .hero-copy h1,
    .hero-copy p {
        max-width: 34ch;
        margin-inline: auto;
    }

    .cta-row {
        justify-content: center;
    }

    .hero-soft-link {
        display: inline-flex;
        margin-inline: auto;
    }

    .hero-visual {
        min-height: clamp(220px, 58vw, 360px);
        width: 100%;
    }

    .hero-bus-stage {
        width: min(100%, 420px);
    }

    .section {
        padding: clamp(3.2rem, 7vw, 5rem) 0;
    }

    .portal {
        min-height: 0;
    }

    .brand strong {
        max-width: 42vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem .75rem;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-row .btn {
        width: 100%;
    }

    .hero-brand {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .hero-orb--a,
    .hero-orb--b,
    .hero-orb--c {
        filter: blur(28px);
        opacity: .4;
    }

    .hero-spark { display: none; }

    .section-head {
        margin-bottom: 1.75rem;
    }

    .device {
        border-radius: 20px;
    }

    .capacity-visual {
        min-height: 140px;
        padding: 1.15rem;
    }

    .faq-item summary {
        padding: .95rem 1rem;
        font-size: .95rem;
        align-items: flex-start;
    }

    .contact-form {
        border-radius: 18px;
        padding: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .consent-actions {
        width: 100%;
    }

    .consent-actions .btn {
        flex: 1;
    }

    .site-nav {
        padding: .75rem 0;
    }
}

@media (max-width: 420px) {
    .trust-grid {
        grid-template-columns: 1fr;
        text-align: start;
    }

    .trust-grid > div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: .55rem;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .trust-grid > div:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .brand small { display: none; }

    .portal-points li {
        font-size: .86rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .reveal,
    .reveal.is-in .device-row,
    .hero-copy > *,
    .hero-soft-link,
    .faq-panel-inner p {
        opacity: 1;
        transform: none;
    }
    .faq-panel {
        grid-template-rows: 0fr;
    }
    .faq-item[open] .faq-panel {
        grid-template-rows: 1fr;
    }
}
