/* =========================================================================
   Altın Kariyer Akademi — Cinematic Brand Experience
   Real Higgsfield visuals · Apple × Netflix × Premium Academy
   ========================================================================= */

:root {
    --aka-bg: #07111F;
    --aka-bg-2: #050B14;
    --aka-bg-3: #0D1726;
    --aka-line: rgba(255, 255, 255, .08);
    --aka-line-strong: rgba(255, 255, 255, .14);
    --aka-text: #F5F8FF;
    --aka-text-mute: #8E9CB5;
    --aka-text-soft: #C5CEE0;
    --aka-blue: #3B82F6;
    --aka-blue-2: #60A5FA;
    --aka-blue-3: #93C5FD;

    --aka-radius: 18px;
    --aka-radius-lg: 28px;

    --aka-ease: cubic-bezier(.22, 1, .36, 1);
    --aka-ease-soft: cubic-bezier(.4, 0, .2, 1);

    --aka-shell-x: clamp(20px, 5vw, 80px);

    /* Vertical rhythm system — desktop 120px / mobile 72px */
    --aka-pad-y: clamp(72px, 9vw, 120px);
    /* Larger rhythm — used for opening/closing emphasis sections */
    --aka-pad-y-lg: clamp(96px, 11vw, 160px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.aka {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--aka-bg);
    color: var(--aka-text);
    line-height: 1.6;
    font-feature-settings: 'cv11', 'ss01';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}
.aka a { color: inherit; text-decoration: none; }
.aka button { font-family: inherit; }
.aka img { max-width: 100%;  display: block; }
.aka svg { display: block; }
.aka picture { display: contents; }
.aka ::selection { background: rgba(96, 165, 250, .35); color: #fff; }

/* ---------- Skip link (a11y) ---------- */
.aka-skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--aka-blue);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, .5);
}
.aka-skip-link:focus,
.aka-skip-link:focus-visible {
    left: 16px;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* ---------- Bootstrap utility replacement (we dropped Bootstrap) ---------- */
.d-none { display: none !important; }
@media (min-width: 768px) {
    .d-md-block { display: block !important; }
}

/* Shell */
.aka-shell {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: var(--aka-shell-x);
    padding-right: var(--aka-shell-x);
    width: 100%;
}
.aka-shell--tight { max-width: 980px; }

/* ---------- Markers, eyebrows ---------- */
.aka-marker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--aka-text-soft);
}
.aka-marker__bar {
    width: 36px; height: 1px;
    background: var(--aka-blue-2);
    box-shadow: 0 0 8px var(--aka-blue-2);
}
.aka-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--aka-blue-2);
}
.aka-eyebrow__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--aka-blue-2);
    box-shadow: 0 0 12px var(--aka-blue-2);
    animation: aka-pulse 2.2s ease-in-out infinite;
}
@keyframes aka-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(.85); }
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1.1s var(--aka-ease), transform 1.1s var(--aka-ease);
    transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .aka-eyebrow__dot { animation: none !important; }
    html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.aka-btn {
    --btn-h: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: var(--btn-h);
    padding: 0 26px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .4s var(--aka-ease),
                background .35s var(--aka-ease-soft),
                box-shadow .35s var(--aka-ease-soft),
                border-color .35s var(--aka-ease-soft),
                color .35s var(--aka-ease-soft);
    white-space: nowrap;
    user-select: none;
    background: transparent;
    color: var(--aka-text);
}
.aka-btn--sm  { --btn-h: 40px; padding: 0 18px; font-size: 13.5px; }
.aka-btn--lg  { --btn-h: 56px; padding: 0 30px; font-size: 15px; }
/* Hero CTA tier — premium clickable feel: 56px tall, 28px inline padding,
   18px radius, layered blue glow for instant tactility. */
.aka-btn--xl  {
    --btn-h: 56px;
    padding: 0 28px;
    font-size: 15.5px;
    border-radius: 18px;
    letter-spacing: .005em;
}
.aka-btn--block { display: flex; width: 100%; }

.aka-btn--primary {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 45%, #2563EB 100%);
    color: #fff;
    box-shadow:
        0 14px 32px -10px rgba(59, 130, 246, .6),
        inset 0 1px 0 rgba(255, 255, 255, .25);
}
.aka-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 22px 48px -10px rgba(59, 130, 246, .8),
        inset 0 1px 0 rgba(255, 255, 255, .35);
}
.aka-btn--primary:active { transform: translateY(0); }

/* Stronger, layered glow when xl + primary combine (hero CTA) */
.aka-btn--xl.aka-btn--primary {
    box-shadow:
        0 22px 56px -12px rgba(59, 130, 246, .72),
        0 8px 22px -10px rgba(96, 165, 250, .55),
        inset 0 1px 0 rgba(255, 255, 255, .32);
}
.aka-btn--xl.aka-btn--primary:hover {
    box-shadow:
        0 30px 72px -14px rgba(59, 130, 246, .92),
        0 14px 32px -10px rgba(96, 165, 250, .72),
        inset 0 1px 0 rgba(255, 255, 255, .42);
}

.aka-btn--outline {
    background: rgba(7, 17, 31, .35);
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.aka-btn--outline:hover {
    background: rgba(96, 165, 250, .12);
    border-color: var(--aka-blue-2);
    color: var(--aka-blue-3);
}

.aka-btn--text {
    height: 56px;
    padding: 0 8px;
    color: var(--aka-text);
    background: transparent;
    font-size: 15.5px;
}
.aka-btn--text:hover { color: var(--aka-blue-2); }
.aka-btn__play {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s var(--aka-ease-soft), background .3s var(--aka-ease-soft);
}
.aka-btn__play svg { width: 12px; height: 12px; margin-left: 2px; }
.aka-btn--text:hover .aka-btn__play {
    border-color: var(--aka-blue-2);
    background: rgba(96, 165, 250, .15);
}

.aka-btn:focus-visible {
    outline: 2px solid var(--aka-blue-2);
    outline-offset: 3px;
}

/* ---------- Navbar ---------- */
.aka-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    transition: background .4s var(--aka-ease-soft),
                padding .35s var(--aka-ease-soft),
                backdrop-filter .35s var(--aka-ease-soft),
                box-shadow .35s var(--aka-ease-soft),
                border-color .35s var(--aka-ease-soft);
    border-bottom: 1px solid transparent;
}
.aka-nav.is-stuck {
    background: rgba(7, 17, 31, .72);
    backdrop-filter: saturate(140%) blur(18px);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    padding: 12px 0;
    border-bottom-color: var(--aka-line);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .7);
}
.aka-nav__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--aka-shell-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.aka-nav__logo img {
    width: 170px;
    max-width: 38vw;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .6));
}
.aka-nav__menu { display: flex; align-items: center; gap: 4px; }
.aka-nav__link {
    padding: 8px 14px;
    color: var(--aka-text-soft);
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
    transition: color .25s var(--aka-ease-soft), background .25s var(--aka-ease-soft);
}
.aka-nav__link:hover { color: #fff; background: rgba(255, 255, 255, .05); }
.aka-nav__cta-mob { display: none; }

.aka-nav__toggle {
    display: none;
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--aka-line-strong);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.aka-nav__toggle span {
    width: 20px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s var(--aka-ease), opacity .3s var(--aka-ease);
}
.aka-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.aka-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.aka-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
    .aka-nav__toggle { display: flex; }
    .aka-nav__cta { display: none !important; }
    .aka-nav__menu {
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: rgba(13, 23, 38, .96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--aka-line-strong);
        border-radius: var(--aka-radius);
        box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .7);
        gap: 4px;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: transform .35s var(--aka-ease), opacity .35s var(--aka-ease), visibility 0s linear .35s;
    }
    .aka-nav__menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        transition: transform .35s var(--aka-ease), opacity .35s var(--aka-ease), visibility 0s;
    }
    .aka-nav__link { padding: 14px 16px; font-size: 15.5px; color: var(--aka-text); border-radius: 12px; }
    .aka-nav__cta-mob { display: inline-flex; margin-top: 8px; }
}

/* =========================================================================
   HERO — cinematic 55/45 composition, 88vh, full-bleed background
   ========================================================================= */
.aka-hero {
    position: relative;
    min-height: 88vh;
    min-height: 88svh;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 96px;
    overflow: hidden;
    isolation: isolate;
    background: var(--aka-bg);
}

.aka-hero__stage {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

/* Image fills the stage but preserves composition: top-anchored,
   slightly scaled to avoid edge crop; subject naturally lives in the
   right 45% area thanks to a sharper left-side scrim below. */
.aka-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    will-change: transform;
    transform: translate3d(0, 0, 0) scale(1.02);
}

/* Animated glow layers — subtle drifting light */
.aka-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .35;
    mix-blend-mode: screen;
    pointer-events: none;
    will-change: transform;
}
.aka-hero__glow--1 {
    top: -120px; right: -100px;
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(59, 130, 246, .85), transparent 60%);
    animation: aka-drift-1 18s ease-in-out infinite;
}
.aka-hero__glow--2 {
    bottom: -200px; left: -150px;
    width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(96, 165, 250, .65), transparent 60%);
    animation: aka-drift-2 24s ease-in-out infinite;
}
@keyframes aka-drift-1 {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-30px, 25px); }
}
@keyframes aka-drift-2 {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(35px, -25px); }
}

/* Subtle film grain */
.aka-hero__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .045;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Dark overlay — hard fall-off around 55% so text column on the left
   stays legible while the right 45% lets the composition breathe.
   Vertical fade blends the bottom edge into the next section. */
.aka-hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 17, 31, .92) 0%, rgba(7, 17, 31, .82) 28%, rgba(7, 17, 31, .55) 48%, rgba(7, 17, 31, .22) 68%, rgba(7, 17, 31, 0) 88%),
        linear-gradient(180deg, rgba(7, 17, 31, .28) 0%, rgba(7, 17, 31, 0) 30%, rgba(7, 17, 31, .55) 82%, var(--aka-bg) 100%);
}

/* Hero copy — constrained to ~55% of the shell so the right side of the
   image breathes on desktop, creating an editorial 55/45 composition. */
.aka-hero__content {
    width: 100%;
    position: relative;
    z-index: 2;
}
.aka-hero__title {
    margin: 28px 0 28px;
    font-size: clamp(40px, 7vw, 82px);
    line-height: .95;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #fff;
    max-width: 720px;
    text-shadow: 0 2px 32px rgba(0, 0, 0, .35);
}
.aka-hero__line { display: block; }
.aka-hero__line--accent {
    background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 50%, #3B82F6 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}
.aka-hero__sub {
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.55;
    color: var(--aka-text-soft);
    margin: 0 0 40px;
    max-width: 520px;
    font-weight: 400;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}
.aka-hero__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 22px;
}

/* Desktop — keep the marker constrained too so it visually aligns
   with the rest of the 55% text column. */
@media (min-width: 992px) {
    .aka-hero .aka-marker { max-width: 720px; }
}

.aka-hero__scroll {
    position: absolute;
    bottom: 36px;
    right: var(--aka-shell-x);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--aka-text-soft);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.aka-hero__scroll-line {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, rgba(96, 165, 250, .8), rgba(96, 165, 250, 0));
    position: relative;
    overflow: hidden;
}
.aka-hero__scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--aka-blue-2));
    animation: aka-scroll-line 2.4s ease-in-out infinite;
}
@keyframes aka-scroll-line {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 991px) {
    .aka-hero { padding: 116px 0 72px; min-height: 92vh; }
}
@media (max-width: 768px) {
    .aka-hero { padding: 104px 0 64px; align-items: center; min-height: auto; }
    .aka-hero__scroll { display: none; }
    .aka-hero__scrim {
        background:
            linear-gradient(180deg, rgba(7, 17, 31, .35) 0%, rgba(7, 17, 31, .55) 50%, rgba(7, 17, 31, .9) 90%, var(--aka-bg) 100%);
    }
    .aka-hero__title { font-size: clamp(36px, 10vw, 56px); margin: 22px 0 22px; }
    .aka-hero__sub { margin-bottom: 32px; }
}

/* =========================================================================
   MANIFESTO — single editorial statement
   ========================================================================= */
.aka-manifesto {
    /* Larger top breathing room so the quote feels deliberate after hero. */
    padding: var(--aka-pad-y-lg) 0 var(--aka-pad-y);
    background: var(--aka-bg);
    position: relative;
}
.aka-manifesto__quote {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 4.4vw, 60px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--aka-text-soft);
    text-align: center;
    position: relative;
}
.aka-manifesto__quote strong {
    color: #fff;
    font-weight: 800;
}
.aka-manifesto__accent {
    display: block;
    margin-top: 22px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #93C5FD, #3B82F6);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.aka-manifesto__mark {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(80px, 12vw, 180px);
    line-height: 0;
    color: rgba(96, 165, 250, .25);
    margin-bottom: 30px;
    margin-top: -30px;
}

/* =========================================================================
   CHAPTERS
   ========================================================================= */
.aka-chapter {
    text-align: center;
    max-width: 920px;
    margin: 0 auto clamp(36px, 5vw, 70px);
    padding: 0 var(--aka-shell-x);
}
.aka-chapter--inline {
    text-align: left;
    margin: 0 0 22px;
    padding: 0;
}
.aka-chapter--light .aka-chapter__num { color: var(--aka-blue-2); }
.aka-chapter__num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(52px, 7.5vw, 104px);
    font-style: italic;
    font-weight: 500;
    line-height: 1;
    color: rgba(96, 165, 250, .35);
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}
.aka-chapter__label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--aka-text-mute);
    margin-bottom: 26px;
}
.aka-chapter--inline .aka-chapter__num { display: inline-block; vertical-align: middle; margin-right: 18px; margin-bottom: 0; }
.aka-chapter--inline .aka-chapter__label { display: inline-block; vertical-align: middle; margin-bottom: 0; }
.aka-chapter__title {
    font-size: clamp(32px, 4.8vw, 68px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 auto 14px;
    color: #fff;
    max-width: 18ch;
}
.aka-chapter__sub {
    font-size: clamp(15px, 1.4vw, 19px);
    color: var(--aka-text-soft);
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.55;
}
@media (max-width: 768px) {
    .aka-chapter__num { margin-bottom: 8px; }
    .aka-chapter__label { margin-bottom: 18px; }
}

/* =========================================================================
   STORY — cinematic scene blocks with real images
   ========================================================================= */
.aka-story {
    padding: var(--aka-pad-y) 0;
    background: var(--aka-bg);
}

.aka-scene {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(28px, 4.2vw, 64px);
    align-items: center;
    padding: clamp(22px, 3.2vw, 50px) var(--aka-shell-x);
    max-width: 1480px;
    margin: 0 auto;
}
.aka-scene--right { grid-template-columns: 1fr 1.3fr; }
.aka-scene--right .aka-scene__media { order: 2; }
.aka-scene--right .aka-scene__text  { order: 1; }

/* Image-dominant variant: makes the visual feel even larger */
.aka-scene--dominant {
    grid-template-columns: 1.55fr 1fr;
    gap: clamp(28px, 4vw, 60px);
}

.aka-scene__media {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    isolation: isolate;
    background: var(--aka-bg-3);
    box-shadow: 0 24px 50px -22px rgba(0, 0, 0, .55);
}
.aka-scene__frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.aka-scene__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1.4s var(--aka-ease);
    will-change: transform;
    transform: scale(1.02);
}
.aka-scene__media:hover .aka-scene__img { transform: scale(1.06); }

.aka-scene__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, transparent 55%, rgba(7, 17, 31, .35) 100%),
        linear-gradient(180deg, transparent 55%, rgba(7, 17, 31, .55) 100%);
}
.aka-scene__edge-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow:
        inset 0 0 60px rgba(96, 165, 250, .35),
        inset 0 0 120px rgba(59, 130, 246, .15);
    border-radius: inherit;
}

.aka-scene__tag {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(7, 17, 31, .55);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.aka-scene__text { padding: 10px 0; }
.aka-scene__text .aka-eyebrow { margin-bottom: 22px; }
.aka-scene__title {
    font-size: clamp(28px, 4.2vw, 58px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 22px;
    max-width: 16ch;
}
.aka-scene__body {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.6;
    color: var(--aka-text-soft);
    margin: 0;
    max-width: 480px;
}

@media (max-width: 900px) {
    .aka-scene,
    .aka-scene--right,
    .aka-scene--dominant { grid-template-columns: 1fr; gap: 22px; padding: 18px var(--aka-shell-x); }
    .aka-scene--right .aka-scene__media { order: 1; }
    .aka-scene--right .aka-scene__text  { order: 2; }
    .aka-scene__media { aspect-ratio: 4 / 3; border-radius: 12px; }
    .aka-scene__text { padding: 4px 0 8px; }
}

/* =========================================================================
   PROGRAM SPOTLIGHTS — full-bleed cinematic
   ========================================================================= */
.aka-programs {
    padding: var(--aka-pad-y) 0;
    background: var(--aka-bg);
    position: relative;
}
/* Subtle separator line between adjacent spotlights — barely visible, dissolves seam */
.aka-spotlight + .aka-spotlight {
    box-shadow: 0 -1px 0 rgba(255, 255, 255, .04);
}

.aka-spotlight {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
    min-height: 78vh;
    overflow: hidden;
}
.aka-spotlight + .aka-spotlight { margin-top: 0; }
.aka-spotlight--left  { grid-template-columns: 1fr 1.2fr; }
.aka-spotlight--left .aka-spotlight__media { order: 2; }
.aka-spotlight--left .aka-spotlight__copy  { order: 1; }

.aka-spotlight__media {
    position: relative;
    min-height: 64vh;
    overflow: hidden;
    isolation: isolate;
    background: var(--aka-bg-3);
}
.aka-spotlight__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1.6s var(--aka-ease);
    will-change: transform;
    transform: scale(1.03);
}
.aka-spotlight:hover .aka-spotlight__img { transform: scale(1.06); }

/* Overlay gradients — fade the image edge into the copy column for a seamless blend */
.aka-spotlight__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, transparent 55%, rgba(7, 17, 31, .35) 100%);
}
.aka-spotlight__overlay--right {
    background:
        linear-gradient(90deg, transparent 35%, rgba(7, 17, 31, .55) 75%, var(--aka-bg) 100%),
        linear-gradient(180deg, transparent 70%, rgba(7, 17, 31, .5) 100%);
}
.aka-spotlight__overlay--left {
    background:
        linear-gradient(270deg, transparent 35%, rgba(7, 17, 31, .55) 75%, var(--aka-bg) 100%),
        linear-gradient(180deg, transparent 70%, rgba(7, 17, 31, .5) 100%);
}

/* Subtle floating light for AI spotlight */
.aka-spotlight__light {
    position: absolute;
    width: 38%;
    aspect-ratio: 1;
    top: 30%;
    left: 40%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, .35), transparent 65%);
    mix-blend-mode: screen;
    filter: blur(40px);
    pointer-events: none;
    animation: aka-light-float 8s ease-in-out infinite;
    will-change: transform, opacity;
}
@keyframes aka-light-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: .85; }
    50%      { transform: translate(8%, -6%) scale(1.1); opacity: 1; }
}

/* Motion streak for drone spotlight — horizontal light sweep */
.aka-spotlight__streak {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.aka-spotlight__streak::before {
    content: '';
    position: absolute;
    top: 45%;
    left: -30%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    box-shadow: 0 0 24px rgba(245, 166, 99, .35);
    animation: aka-streak 6s linear infinite;
}
@keyframes aka-streak {
    0%   { transform: translateX(0) scaleX(.7); opacity: 0; }
    20%  { opacity: .9; }
    80%  { opacity: .9; }
    100% { transform: translateX(260%) scaleX(1.2); opacity: 0; }
}

.aka-spotlight__caption {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(7, 17, 31, .55);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Copy side */
.aka-spotlight__copy {
    padding: clamp(48px, 5.5vw, 96px) clamp(28px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--aka-bg);
    position: relative;
}
.aka-spotlight__index {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 22px;
}
.aka-spotlight__index span {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 1;
    color: rgba(96, 165, 250, .45);
}
.aka-spotlight__index em {
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--aka-blue-2);
}
.aka-spotlight__title {
    font-size: clamp(32px, 4.4vw, 60px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 22px;
    max-width: 14ch;
}
.aka-spotlight__lead {
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.6;
    color: var(--aka-text-soft);
    margin: 0 0 32px;
    max-width: 460px;
}
.aka-spotlight__hl {
    list-style: none;
    padding: 0;
    margin: 0 0 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}
.aka-spotlight__hl li {
    position: relative;
    padding-left: 16px;
    font-size: 13.5px;
    color: var(--aka-text-soft);
    font-weight: 500;
}
.aka-spotlight__hl li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--aka-blue-2);
    box-shadow: 0 0 8px var(--aka-blue-2);
}
.aka-spotlight__copy .aka-btn { align-self: flex-start; }

/* =========================================================================
   TRIO — 3 equal-weight premium program cards
   ========================================================================= */
.aka-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.4vw, 36px);
    max-width: 1640px;
    margin: clamp(28px, 4vw, 60px) auto 0;
    padding: 0 clamp(20px, 4vw, 64px);
}

.aka-trio__card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(15, 28, 47, .65), rgba(7, 17, 31, .35));
    border: 1px solid var(--aka-line);
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
    transition: transform .6s var(--aka-ease), border-color .5s ease, box-shadow .6s var(--aka-ease);
    will-change: transform;
}
.aka-trio__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(96, 165, 250, .35), transparent 35%, transparent 65%, rgba(96, 165, 250, .25));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: .55;
    transition: opacity .6s ease;
    z-index: 3;
}
.aka-trio__card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, .42);
    box-shadow:
        0 32px 90px -36px rgba(59, 130, 246, .55),
        0 0 0 1px rgba(96, 165, 250, .22) inset;
}
.aka-trio__card:hover::before { opacity: 1; }

/* MEDIA — equal aspect ratio across all three */
.aka-trio__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--aka-bg-3);
}
.aka-trio__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 1.6s var(--aka-ease);
    will-change: transform;
}
.aka-trio__card:hover .aka-trio__img { transform: scale(1.10); }

.aka-trio__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 31, .15) 0%, rgba(7, 17, 31, .55) 60%, rgba(7, 17, 31, .92) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Equal-intensity blue glow (radial) — each card */
.aka-trio__glow {
    position: absolute;
    left: 50%;
    bottom: -20%;
    transform: translateX(-50%);
    width: 130%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, .42) 0%, rgba(59, 130, 246, .14) 35%, transparent 70%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
    opacity: .85;
    transition: opacity .6s ease, transform .8s var(--aka-ease);
    filter: blur(8px);
}
.aka-trio__card:hover .aka-trio__glow {
    opacity: 1;
    transform: translate(-50%, -8%);
}

/* Subtle per-program glow tint (still blue but each unique character) */
.aka-trio__card--ai .aka-trio__glow {
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, .48) 0%, rgba(59, 130, 246, .14) 35%, transparent 70%);
}
.aka-trio__card--prompt .aka-trio__glow {
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, .44) 0%, rgba(99, 102, 241, .14) 35%, transparent 70%);
}
.aka-trio__card--drone .aka-trio__glow {
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, .44) 0%, rgba(59, 130, 246, .14) 35%, transparent 70%);
}

.aka-trio__tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .94);
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(7, 17, 31, .65);
    border: 1px solid rgba(96, 165, 250, .3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 22px rgba(59, 130, 246, .22);
}

/* BODY — equal padding + flex-grow for equal height */
.aka-trio__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(28px, 3vw, 44px) clamp(26px, 3vw, 40px) clamp(34px, 3.5vw, 46px);
    position: relative;
    z-index: 2;
}

.aka-trio__index {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--aka-blue-2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.aka-trio__index::before {
    content: '';
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, var(--aka-blue-2), transparent);
}

.aka-trio__title {
    font-size: clamp(22px, 1.9vw, 28px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.aka-trio__lead {
    font-size: clamp(14px, 1.05vw, 15.5px);
    line-height: 1.65;
    color: var(--aka-text-soft);
    margin: 0 0 6px;
    flex: 1;
}

.aka-trio__cta {
    align-self: flex-start;
    margin-top: 4px;
}

/* TABLET — keep 3 col on wider screens; collapse below */
@media (max-width: 1100px) {
    .aka-trio {
        grid-template-columns: 1fr;
        max-width: 720px;
        gap: clamp(24px, 4vw, 36px);
        padding: 0 clamp(20px, 5vw, 40px);
    }
    .aka-trio__media { aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
    .aka-trio__media { aspect-ratio: 4 / 3; }
}

/* =========================================================================
   WHY — cinematic banner with image + creed list below
   ========================================================================= */
.aka-why {
    background: var(--aka-bg);
}

.aka-why__banner {
    position: relative;
    min-height: 74vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    padding: var(--aka-pad-y) 0;
}
.aka-why__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center center;
    z-index: -2;
    will-change: transform;
    transform: scale(1.05);
}
.aka-why__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 17, 31, .88) 0%, rgba(7, 17, 31, .55) 35%, rgba(7, 17, 31, .25) 70%, rgba(7, 17, 31, .15) 100%),
        linear-gradient(180deg, rgba(7, 17, 31, .55) 0%, rgba(7, 17, 31, 0) 25%, rgba(7, 17, 31, .85) 90%, var(--aka-bg) 100%);
}
.aka-why__inner {
    position: relative;
    z-index: 1;
}
.aka-why__title {
    font-size: clamp(40px, 6.4vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #fff;
    margin: 24px 0 28px;
    max-width: 20ch;
    text-shadow: 0 2px 32px rgba(0, 0, 0, .4);
}
.aka-why__title-accent {
    display: block;
    background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 60%, #3B82F6 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    font-weight: 800;
}
.aka-why__lead {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.55;
    color: var(--aka-text-soft);
    max-width: 620px;
    margin: 0;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}

.aka-why__body {
    padding: var(--aka-pad-y) 0;
    background: var(--aka-bg);
}

.aka-creed {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--aka-line);
}
.aka-creed > li {
    display: flex;
    gap: 18px;
    padding: clamp(36px, 4vw, 56px) clamp(20px, 2.5vw, 40px) clamp(36px, 4vw, 56px) 0;
    border-bottom: 1px solid var(--aka-line);
    border-right: 1px solid var(--aka-line);
}
.aka-creed > li:nth-child(3n) { border-right: none; padding-right: 0; }
.aka-creed > li:nth-last-child(-n+3) { border-bottom: none; }

.aka-creed__n {
    flex-shrink: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    color: var(--aka-blue-2);
    width: 32px;
    padding-top: 4px;
    letter-spacing: .04em;
}
.aka-creed h4 {
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.015em;
}
.aka-creed p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--aka-text-mute);
    margin: 0;
}

@media (max-width: 900px) {
    .aka-creed { grid-template-columns: 1fr 1fr; }
    .aka-creed > li:nth-child(3n) { border-right: 1px solid var(--aka-line); padding-right: clamp(20px, 2.5vw, 40px); }
    .aka-creed > li:nth-child(2n) { border-right: none; padding-right: 0; }
    .aka-creed > li:nth-last-child(-n+3) { border-bottom: 1px solid var(--aka-line); }
    .aka-creed > li:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 540px) {
    .aka-creed { grid-template-columns: 1fr; }
    .aka-creed > li { border-right: none !important; padding-right: 0 !important; border-bottom: 1px solid var(--aka-line) !important; }
    .aka-creed > li:last-child { border-bottom: none !important; }
}

/* =========================================================================
   STATS — typographic strip
   ========================================================================= */
.aka-stats {
    background: var(--aka-bg);
    padding: var(--aka-pad-y) 0;
    position: relative;
    overflow: hidden;
}
.aka-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(59, 130, 246, .14), transparent 65%);
    pointer-events: none;
}
.aka-stats__row {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--aka-shell-x);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.aka-stat { text-align: center; }
.aka-stat__num {
    display: block;
    font-size: clamp(42px, 6vw, 92px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 60%, #3B82F6 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}
.aka-stat__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--aka-text-mute);
}
@media (max-width: 768px) {
    .aka-stats__row { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}

/* =========================================================================
   VOICES
   ========================================================================= */
.aka-voices {
    padding: var(--aka-pad-y) 0;
    background: var(--aka-bg);
}

.aka-feature-video {
    position: relative;
    max-width: 1480px;
    margin: 0 var(--aka-shell-x) clamp(50px, 7vw, 90px);
    height: clamp(420px, 64vh, 680px);
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 36px 80px -32px rgba(0, 0, 0, .65);
    cursor: pointer;
}
@media (min-width: 1480px) {
    .aka-feature-video { margin-left: auto; margin-right: auto; }
}
.aka-feature-video__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.aka-feature-video__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 2s var(--aka-ease);
    will-change: transform;
    transform: scale(1.03);
}
.aka-feature-video:hover .aka-feature-video__img { transform: scale(1.06); }

.aka-feature-video__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 17, 31, .25) 0%, rgba(7, 17, 31, 0) 35%, rgba(7, 17, 31, .55) 75%, rgba(7, 17, 31, .9) 100%);
    pointer-events: none;
}

.aka-feature-video__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 104px; height: 104px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s var(--aka-ease), background .4s var(--aka-ease), border-color .4s var(--aka-ease);
}
.aka-feature-video__play svg { width: 34px; height: 34px; margin-left: 5px; }
.aka-feature-video__play:hover,
.aka-feature-video:hover .aka-feature-video__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(96, 165, 250, .22);
    border-color: rgba(96, 165, 250, .6);
}
.aka-feature-video__play-ring {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(96, 165, 250, .45);
    animation: aka-ping 2.8s ease-out infinite;
    pointer-events: none;
}
@keyframes aka-ping {
    0%   { transform: scale(.9); opacity: .9; }
    100% { transform: scale(1.45); opacity: 0; }
}

.aka-feature-video__caption {
    position: absolute;
    left: clamp(24px, 4vw, 60px);
    bottom: clamp(24px, 4vw, 50px);
    right: clamp(24px, 4vw, 60px);
    z-index: 2;
    max-width: 720px;
}
.aka-feature-video__caption .aka-eyebrow { margin-bottom: 14px; }
.aka-feature-video__caption h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(22px, 3vw, 40px);
    line-height: 1.2;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .55);
}
.aka-feature-video__caption p {
    margin: 0;
    color: var(--aka-text-soft);
    font-size: 14px;
    letter-spacing: .04em;
}

@media (max-width: 540px) {
    .aka-feature-video { margin: 0 16px clamp(40px, 6vw, 60px); border-radius: 12px; height: auto; aspect-ratio: 4 / 5; min-height: 0; }
    .aka-feature-video__play { width: 72px; height: 72px; }
    .aka-feature-video__play svg { width: 22px; height: 22px; }
}

/* Pull-quotes — editorial */
.aka-quotes {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--aka-shell-x);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
}
.aka-quote {
    margin: 0;
    padding: 30px 0;
    border-top: 1px solid var(--aka-line);
}
@media (max-width: 900px) {
    .aka-quote { padding: 26px 0; }
    .aka-quote + .aka-quote { border-top: 1px solid var(--aka-line); }
}
.aka-quote blockquote {
    margin: 0 0 24px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.35;
    color: #fff;
    letter-spacing: -0.01em;
}
.aka-quote blockquote span {
    display: block;
    margin-top: 12px;
    color: var(--aka-text-soft);
    font-size: clamp(15px, 1.2vw, 18px);
}
.aka-quote figcaption {
    display: flex;
    align-items: center;
    gap: 14px;
}
.aka-quote__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(59, 130, 246, .4);
}
.aka-quote figcaption strong { display: block; color: #fff; font-size: 14px; }
.aka-quote figcaption span { display: block; color: var(--aka-text-mute); font-size: 12.5px; letter-spacing: .04em; }

@media (max-width: 900px) {
    .aka-quotes { grid-template-columns: 1fr; gap: 0; }
}

/* =========================================================================
   LEAD — cinematic background image + glass form
   ========================================================================= */
.aka-lead {
    position: relative;
    padding: var(--aka-pad-y) 0;
    overflow: hidden;
    background: var(--aka-bg);
    isolation: isolate;
}
.aka-lead__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.aka-lead__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center center;
    will-change: transform;
    transform: scale(1.05);
}
.aka-lead__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7, 17, 31, .9) 0%, rgba(7, 17, 31, .65) 45%, rgba(7, 17, 31, .55) 100%),
        radial-gradient(ellipse 70% 70% at 75% 50%, transparent 0%, rgba(7, 17, 31, .4) 100%),
        linear-gradient(180deg, var(--aka-bg) 0%, transparent 12%, transparent 88%, var(--aka-bg) 100%);
}
.aka-lead__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .45;
    mix-blend-mode: screen;
    pointer-events: none;
}
.aka-lead__glow--1 { top: -100px; left: -80px;  width: 480px; height: 480px; background: radial-gradient(circle, rgba(59, 130, 246, .75), transparent 60%); }
.aka-lead__glow--2 { bottom: -140px; right: -100px; width: 540px; height: 540px; background: radial-gradient(circle, rgba(96, 165, 250, .55), transparent 60%); }
.aka-lead .aka-shell { position: relative; z-index: 1; }

.aka-lead__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 7vw, 100px);
    align-items: center;
}
.aka-lead__copy .aka-chapter { margin-bottom: 30px; }
.aka-lead__title {
    font-size: clamp(38px, 6vw, 80px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px;
    max-width: 14ch;
    text-shadow: 0 2px 32px rgba(0, 0, 0, .35);
}
.aka-lead__title-accent {
    display: block;
    background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 60%, #3B82F6 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    font-weight: 800;
}
.aka-lead__sub {
    font-size: clamp(15px, 1.3vw, 19px);
    line-height: 1.55;
    color: var(--aka-text-soft);
    margin: 0 0 36px;
    max-width: 520px;
}
.aka-lead__lines {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--aka-text-soft);
    font-size: 14.5px;
    letter-spacing: .02em;
}

/* Form card — premium glow, blends with bg */
.aka-lead__card {
    position: relative;
    padding: clamp(28px, 3.4vw, 44px);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(13, 23, 38, .72), rgba(7, 17, 31, .78));
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid rgba(96, 165, 250, .22);
    box-shadow:
        0 30px 70px -28px rgba(0, 0, 0, .6),
        0 0 100px rgba(59, 130, 246, .12),
        inset 0 1px 0 rgba(255, 255, 255, .06);
}
.aka-lead__card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(96, 165, 250, .5), rgba(59, 130, 246, 0) 45%, rgba(96, 165, 250, .3));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.aka-form__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
    letter-spacing: -0.015em;
}
.aka-form__sub {
    font-size: 14px;
    color: var(--aka-text-mute);
    margin: 0 0 26px;
}
.aka-form__alert {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .35);
    color: #fecaca;
    font-size: 13.5px;
    margin-bottom: 20px;
}
.aka-form__alert ul { margin: 6px 0 0 18px; padding: 0; }

.aka-field { margin-bottom: 16px; }
.aka-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--aka-text-soft);
    margin-bottom: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.aka-field input,
.aka-field select,
.aka-select select {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    background: rgba(7, 17, 31, .55);
    border: 1px solid var(--aka-line-strong);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .25s var(--aka-ease-soft),
                background .25s var(--aka-ease-soft),
                box-shadow .25s var(--aka-ease-soft);
    appearance: none;
    -webkit-appearance: none;
}
.aka-field input::placeholder { color: rgba(154, 167, 189, .55); }
.aka-field input:focus,
.aka-field select:focus,
.aka-select select:focus {
    outline: none;
    border-color: var(--aka-blue-2);
    background: rgba(13, 23, 38, .75);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, .18),
                0 0 30px rgba(59, 130, 246, .25);
}
.aka-select { position: relative; }
.aka-select select { padding-right: 46px; background-color: rgba(7, 17, 31, .55); }
.aka-select__chev {
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    color: var(--aka-text-mute);
    pointer-events: none;
}

.aka-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 22px 0 26px;
    font-size: 13px;
    color: var(--aka-text-soft);
    line-height: 1.5;
    cursor: pointer;
}
.aka-checkbox input {
    appearance: none;
    -webkit-appearance: none;
    width: 20px; height: 20px;
    margin: 1px 0 0;
    flex-shrink: 0;
    border: 1.5px solid var(--aka-line-strong);
    border-radius: 6px;
    background: rgba(7, 17, 31, .55);
    cursor: pointer;
    position: relative;
    transition: background .2s var(--aka-ease-soft), border-color .2s var(--aka-ease-soft);
}
.aka-checkbox input:checked {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    border-color: var(--aka-blue-2);
}
.aka-checkbox input:checked::after {
    content: '';
    position: absolute;
    left: 5px; top: 1px;
    width: 6px; height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.aka-checkbox a { color: var(--aka-blue-2); text-decoration: underline; text-underline-offset: 2px; }
.aka-form__legal {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--aka-text-mute);
    text-align: center;
}
.aka-lead__success {
    text-align: center;
    padding: 28px 0;
}
.aka-lead__success-icon {
    width: 76px; height: 76px;
    border-radius: 50%;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, rgba(34, 197, 94, .2), rgba(34, 197, 94, .05));
    border: 1px solid rgba(34, 197, 94, .5);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aka-lead__success-icon svg { width: 36px; height: 36px; }
.aka-lead__success h3 { color: #fff; margin: 0 0 10px; font-size: 22px; }
.aka-lead__success p  { color: var(--aka-text-mute); margin: 0; font-size: 14.5px; }

@media (max-width: 900px) {
    .aka-lead__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.aka-footer {
    background: linear-gradient(180deg, var(--aka-bg) 0%, var(--aka-bg-2) 18%);
    padding: clamp(50px, 7vw, 80px) 0 28px;
    color: var(--aka-text-mute);
}
.aka-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--aka-line);
}
.aka-footer__brand img { width: 170px; margin-bottom: 18px; }
.aka-footer__brand p {
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
    max-width: 360px;
    color: var(--aka-text-mute);
}
.aka-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.aka-footer__col h4 {
    font-size: 11.5px;
    color: #fff;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.aka-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.aka-footer__col li, .aka-footer__col a { font-size: 14.5px; color: var(--aka-text-mute); transition: color .25s var(--aka-ease-soft); }
.aka-footer__col a:hover { color: var(--aka-blue-2); }

.aka-footer__bottom {
    margin-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--aka-text-mute);
}
.aka-footer__bottom p { margin: 0; }
.aka-footer__social { display: flex; gap: 10px; }
.aka-footer__social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--aka-line);
    color: var(--aka-text-mute);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .25s var(--aka-ease-soft), border-color .25s var(--aka-ease-soft), background .25s var(--aka-ease-soft);
}
.aka-footer__social a:hover {
    color: var(--aka-blue-2);
    border-color: rgba(96, 165, 250, .4);
    background: rgba(59, 130, 246, .08);
}
.aka-footer__social svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
    .aka-footer__top { grid-template-columns: 1fr; gap: 40px; }
    .aka-footer__cols { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 480px) {
    .aka-footer__cols { grid-template-columns: 1fr; }
}

/* =========================================================================
   MOBILE STICKY CTA
   ========================================================================= */
.aka-mobile-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, .6),
                inset 0 1px 0 rgba(255, 255, 255, .3);
    transform: translateY(120%);
    transition: transform .4s var(--aka-ease);
}
.aka-mobile-cta.is-visible { transform: translateY(0); }
@media (max-width: 768px) { .aka-mobile-cta { display: inline-flex; } }

/* Fixed bottom bar — always visible on mobile (lp-ai) */
.aka-mobile-cta-bar {
    display: none;
}
@media (max-width: 768px) {
    .lp-ai {
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    }

    .lp-ai .aka-mobile-cta-bar {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 95;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(180deg, rgba(7, 17, 31, .72) 0%, rgba(7, 17, 31, .96) 40%);
        border-top: 1px solid rgba(96, 165, 250, .28);
        box-shadow: 0 -12px 40px -8px rgba(0, 0, 0, .55);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transform: translateY(0);
        transition: transform .35s var(--aka-ease), opacity .35s ease;
    }

    .lp-ai .aka-mobile-cta-bar.is-hidden {
        transform: translateY(110%);
        opacity: 0;
        pointer-events: none;
    }

    .aka-mobile-cta-bar__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        min-height: 52px;
        padding: 0 22px;
        border-radius: 16px;
        background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
        color: #fff;
        font-weight: 700;
        font-size: 15.5px;
        letter-spacing: -0.01em;
        text-decoration: none;
        box-shadow:
            0 14px 36px -10px rgba(59, 130, 246, .65),
            inset 0 1px 0 rgba(255, 255, 255, .28);
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .aka-mobile-cta-bar__btn:active {
        transform: scale(.98);
    }
}

/* =========================================================================
   MODALS
   ========================================================================= */
.aka-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.aka-modal.is-open { display: flex; }
.aka-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 17, 31, .85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    animation: aka-fade .25s var(--aka-ease);
}
@keyframes aka-fade { from { opacity: 0; } to { opacity: 1; } }
.aka-modal__dialog {
    position: relative;
    max-width: 760px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 40px;
    background: linear-gradient(160deg, rgba(13, 23, 38, .98), rgba(7, 17, 31, .98));
    border: 1px solid rgba(96, 165, 250, .25);
    border-radius: var(--aka-radius-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .75),
                0 0 80px rgba(59, 130, 246, .18);
    animation: aka-modal-in .35s var(--aka-ease);
}
@keyframes aka-modal-in {
    from { opacity: 0; transform: translateY(20px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.aka-modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 38px; height: 38px;
    border-radius: 12px;
    border: 1px solid var(--aka-line-strong);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background .25s var(--aka-ease-soft), border-color .25s var(--aka-ease-soft);
}
.aka-modal__close:hover { background: rgba(96, 165, 250, .12); border-color: rgba(96, 165, 250, .4); }

.aka-modal__head { margin-bottom: 24px; }
.aka-modal__head .aka-eyebrow { margin-bottom: 12px; }
.aka-modal__head h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
    letter-spacing: -0.02em;
}
.aka-modal__head p {
    font-size: 14.5px;
    color: var(--aka-text-soft);
    margin: 0;
    line-height: 1.55;
}
.aka-modal__body { padding: 24px 0; border-top: 1px solid var(--aka-line); border-bottom: 1px solid var(--aka-line); }
.aka-modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.aka-modal__grid h4 {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--aka-blue-2);
    text-transform: uppercase;
    letter-spacing: .22em;
    margin: 0 0 14px;
}
.aka-modal__grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.aka-modal__grid li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--aka-text-soft);
    line-height: 1.5;
}
.aka-modal__grid li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--aka-blue-2);
    box-shadow: 0 0 12px var(--aka-blue-2);
}
.aka-modal__foot { padding-top: 24px; display: flex; justify-content: flex-end; }

body.aka-modal-open { overflow: hidden; }

@media (max-width: 640px) {
    .aka-modal__dialog { padding: 28px; }
    .aka-modal__head h3 { font-size: 22px; }
    .aka-modal__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =============================================================================
   ============= PER-PROGRAM LANDING PAGES (.lp-ai .lp-prompt .lp-drone) =======
   ============================================================================= */

/* ---------- Shared hero base ---------- */
.lp-hero {
    position: relative;
    min-height: 88vh;
    min-height: 88svh;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 96px;
    overflow: hidden;
    isolation: isolate;
    background: var(--aka-bg);
}
.lp-hero__stage {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.lp-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: translate3d(0, 0, 0) scale(1.02);
    will-change: transform;
}
.lp-hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 17, 31, .92) 0%, rgba(7, 17, 31, .82) 28%, rgba(7, 17, 31, .55) 48%, rgba(7, 17, 31, .22) 68%, rgba(7, 17, 31, 0) 88%),
        linear-gradient(180deg, rgba(7, 17, 31, .28) 0%, rgba(7, 17, 31, 0) 30%, rgba(7, 17, 31, .55) 82%, var(--aka-bg) 100%);
}
.lp-hero__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.lp-hero__content { width: 100%; position: relative; z-index: 2; }
.lp-hero__title {
    margin: 28px 0 28px;
    font-size: clamp(40px, 7vw, 82px);
    line-height: .95;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #fff;
    max-width: 720px;
    text-shadow: 0 2px 32px rgba(0, 0, 0, .4);
}
.lp-hero__line { display: block; }
.lp-hero__line--accent {
    display: block;
    background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 50%, #3B82F6 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}
.lp-hero__sub {
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.55;
    color: var(--aka-text-soft);
    margin: 0 0 40px;
    max-width: 520px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}
.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 22px;
}
@media (min-width: 992px) {
    .lp-hero .aka-marker { max-width: 720px; }
}
@media (max-width: 991px) {
    .lp-hero { padding: 116px 0 72px; min-height: 92vh; }
}
@media (max-width: 768px) {
    .lp-hero { padding: 104px 0 64px; min-height: auto; align-items: center; }
    .lp-hero__title { font-size: clamp(36px, 10vw, 56px); margin: 22px 0 22px; }
    .lp-hero__sub { margin-bottom: 32px; }
}

/* =========================================================================
   AI LANDING PAGE — neural network atmosphere
   ========================================================================= */
.lp-ai .lp-hero__line--accent {
    background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 45%, #3B82F6 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}

/* Animated neural network — pulsing nodes + connecting lines via SVG */
.lp-ai-hero__network {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .55;
    mix-blend-mode: screen;
}
.lp-ai-hero__network svg { width: 100%; height: 100%; }
.lp-ai-hero__network circle {
    fill: rgba(96, 165, 250, .9);
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, .8));
    animation: lp-ai-pulse 3.4s ease-in-out infinite;
}
.lp-ai-hero__network circle:nth-child(odd)  { animation-delay: -1.2s; }
.lp-ai-hero__network circle:nth-child(3n+2) { animation-delay: -2.4s; }
.lp-ai-hero__network line {
    stroke: rgba(96, 165, 250, .42);
    stroke-width: .8;
    stroke-dasharray: 3 4;
    animation: lp-ai-dash 6s linear infinite;
}
@keyframes lp-ai-pulse {
    0%, 100% { r: 3.2; opacity: .65; }
    50%      { r: 5.2; opacity: 1; }
}
@keyframes lp-ai-dash {
    to { stroke-dashoffset: -200; }
}

/* Floating data card on the right side of the AI hero */
.lp-ai-hero__data {
    position: absolute;
    right: clamp(20px, 4vw, 64px);
    bottom: clamp(140px, 20vh, 220px);
    z-index: 2;
    width: clamp(260px, 26vw, 340px);
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(13, 23, 38, .85), rgba(7, 17, 31, .75));
    border: 1px solid rgba(96, 165, 250, .25);
    box-shadow: 0 30px 80px -30px rgba(59, 130, 246, .55), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    line-height: 1.55;
    color: var(--aka-text-soft);
    animation: lp-ai-float 7s ease-in-out infinite;
}
.lp-ai-hero__data-hdr {
    display: flex; align-items: center; gap: 8px;
    font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
    color: var(--aka-blue-2); margin-bottom: 12px; font-family: inherit;
}
.lp-ai-hero__data-hdr::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: #34D399; box-shadow: 0 0 8px #34D399;
    animation: lp-ai-pulse-led 1.4s ease-in-out infinite;
}
.lp-ai-hero__data-row span:first-child { color: var(--aka-text-mute); }
.lp-ai-hero__data-row span:last-child  { color: #93C5FD; }
.lp-ai-hero__data-row {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 3px 0; border-bottom: 1px dashed rgba(255, 255, 255, .05);
}
.lp-ai-hero__data-row:last-child { border-bottom: none; }
@keyframes lp-ai-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes lp-ai-pulse-led {
    0%, 100% { opacity: 1; }
    50%      { opacity: .35; }
}
@media (max-width: 991px) {
    .lp-ai-hero__data { display: none; }
}

/* AI page Curriculum Journey — vertical timeline of stages */
.lp-ai-journey {
    padding: var(--aka-pad-y) 0;
    background: var(--aka-bg);
    position: relative;
}
.lp-ai-journey__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
    margin-top: clamp(28px, 4vw, 56px);
}
.lp-ai-stage {
    position: relative;
    padding: clamp(26px, 3vw, 40px) clamp(22px, 2.6vw, 32px);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 28, 47, .65), rgba(7, 17, 31, .35));
    border: 1px solid var(--aka-line);
    isolation: isolate;
    overflow: hidden;
    transition: transform .5s var(--aka-ease), border-color .4s ease, box-shadow .5s var(--aka-ease);
}
.lp-ai-stage:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, .4);
    box-shadow: 0 28px 72px -32px rgba(59, 130, 246, .55);
}
.lp-ai-stage::before {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--aka-blue), var(--aka-blue-2), transparent);
    opacity: .8;
    z-index: 1;
}
.lp-ai-stage__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1;
    font-style: italic;
    font-weight: 500;
    color: rgba(96, 165, 250, .35);
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    display: block;
}
.lp-ai-stage__title {
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}
.lp-ai-stage__body {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--aka-text-soft);
    margin: 0;
}
@media (max-width: 900px) {
    .lp-ai-journey__grid { grid-template-columns: 1fr; }
}

/* AI Projects grid — 4 example projects */
.lp-ai-projects {
    padding: var(--aka-pad-y) 0;
    background: var(--aka-bg);
}
.lp-ai-projects__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
    margin-top: clamp(28px, 4vw, 56px);
}
.lp-ai-project {
    padding: clamp(24px, 2.6vw, 34px);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(15, 28, 47, .55), rgba(7, 17, 31, .3));
    border: 1px solid var(--aka-line);
    transition: transform .5s var(--aka-ease), border-color .4s ease;
}
.lp-ai-project:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, .35);
}
.lp-ai-project__icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, .25), rgba(96, 165, 250, .08));
    border: 1px solid rgba(96, 165, 250, .35);
    color: var(--aka-blue-2);
    margin-bottom: 18px;
    box-shadow: 0 8px 22px -10px rgba(59, 130, 246, .45);
}
.lp-ai-project__icon svg { width: 22px; height: 22px; }
.lp-ai-project__title {
    font-size: 16.5px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.lp-ai-project__lead {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--aka-text-soft);
    margin: 0;
}
@media (max-width: 991px) { .lp-ai-projects__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-ai-projects__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   PROMPT LANDING PAGE — floating AI tool windows
   ========================================================================= */
.lp-prompt .lp-hero__line--accent {
    background: linear-gradient(135deg, #C4B5FD 0%, #818CF8 45%, #6366F1 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}

.lp-prompt-hero__windows {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.lp-prompt-hero__window {
    position: absolute;
    padding: 14px 18px;
    min-width: 220px;
    max-width: 280px;
    border-radius: 16px;
    background: rgba(13, 23, 38, .82);
    border: 1px solid rgba(129, 140, 248, .35);
    box-shadow:
        0 22px 60px -22px rgba(79, 70, 229, .55),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--aka-text-soft);
    animation: lp-prompt-drift 9s ease-in-out infinite;
}
.lp-prompt-hero__window header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
    color: #C4B5FD;
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
}
.lp-prompt-hero__window header::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    background: #34D399;
    margin-right: 8px;
    box-shadow: 0 0 8px #34D399;
}
.lp-prompt-hero__window--a { top: 16%; right: 6%;  animation-delay: 0s; }
.lp-prompt-hero__window--b { top: 38%; right: 22%; animation-delay: -3s; transform: rotate(-1.5deg); }
.lp-prompt-hero__window--c { top: 56%; right: 4%;  animation-delay: -6s; transform: rotate(1deg); }
@keyframes lp-prompt-drift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-12px) rotate(.6deg); }
}
@media (max-width: 1100px) {
    .lp-prompt-hero__window--b { display: none; }
}
@media (max-width: 768px) {
    .lp-prompt-hero__windows { display: none; }
}

/* Prompt Tools Grid */
.lp-prompt-tools {
    padding: var(--aka-pad-y) 0;
    background: var(--aka-bg);
}
.lp-prompt-tools__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
    margin-top: clamp(28px, 4vw, 56px);
}
.lp-prompt-tool {
    position: relative;
    padding: clamp(26px, 3vw, 38px);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, .68), rgba(7, 17, 31, .35));
    border: 1px solid var(--aka-line);
    overflow: hidden;
    isolation: isolate;
    transition: transform .5s var(--aka-ease), border-color .4s ease, box-shadow .5s var(--aka-ease);
}
.lp-prompt-tool::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 70%; height: 140%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, .25), transparent 65%);
    pointer-events: none;
    opacity: .6;
    transition: opacity .5s ease;
}
.lp-prompt-tool:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, .42);
    box-shadow: 0 28px 72px -30px rgba(139, 92, 246, .55);
}
.lp-prompt-tool:hover::before { opacity: 1; }
.lp-prompt-tool__brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #A78BFA;
    margin-bottom: 14px;
}
.lp-prompt-tool__title {
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}
.lp-prompt-tool__lead {
    font-size: 14px;
    line-height: 1.6;
    color: var(--aka-text-soft);
    margin: 0;
}
@media (max-width: 900px) { .lp-prompt-tools__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-prompt-tools__grid { grid-template-columns: 1fr; } }

/* Prompt page — workflow visualization */
.lp-prompt-flow {
    padding: var(--aka-pad-y) 0;
    background: var(--aka-bg);
    position: relative;
}
.lp-prompt-flow__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 1.6vw, 24px);
    margin-top: clamp(28px, 4vw, 56px);
    position: relative;
}
.lp-prompt-flow__step {
    text-align: center;
    padding: clamp(22px, 2.6vw, 32px) clamp(18px, 2vw, 24px);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(15, 23, 42, .65), rgba(7, 17, 31, .3));
    border: 1px solid var(--aka-line);
    position: relative;
}
.lp-prompt-flow__step::after {
    content: '→';
    position: absolute;
    right: -22px; top: 50%;
    transform: translateY(-50%);
    color: rgba(167, 139, 250, .55);
    font-size: 26px;
    font-weight: 700;
    z-index: 1;
}
.lp-prompt-flow__step:last-child::after { display: none; }
.lp-prompt-flow__step-num {
    display: inline-block;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, .35), rgba(139, 92, 246, .15));
    border: 1px solid rgba(167, 139, 250, .4);
    color: #C4B5FD;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px -6px rgba(99, 102, 241, .45);
}
.lp-prompt-flow__step-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.lp-prompt-flow__step-body {
    font-size: 13px;
    color: var(--aka-text-soft);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 900px) {
    .lp-prompt-flow__steps { grid-template-columns: 1fr 1fr; }
    .lp-prompt-flow__step:nth-child(2)::after { display: none; }
}
@media (max-width: 520px) {
    .lp-prompt-flow__steps { grid-template-columns: 1fr; }
    .lp-prompt-flow__step::after { display: none; }
}

/* =========================================================================
   DRONE LANDING PAGE — motion + sky + radar
   ========================================================================= */
.lp-drone .lp-hero__line--accent {
    background: linear-gradient(135deg, #BAE6FD 0%, #38BDF8 45%, #0EA5E9 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}

/* Diagonal motion streaks crossing the hero */
.lp-drone-hero__streaks {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.lp-drone-hero__streaks span {
    position: absolute;
    left: -20%;
    height: 1.5px;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(186, 230, 253, .85), transparent);
    box-shadow: 0 0 18px rgba(56, 189, 248, .65);
    transform: rotate(-12deg);
    animation: lp-drone-streak 4.2s linear infinite;
    opacity: 0;
}
.lp-drone-hero__streaks span:nth-child(1) { top: 18%; animation-delay: 0s;   animation-duration: 4.8s; }
.lp-drone-hero__streaks span:nth-child(2) { top: 36%; animation-delay: -1.6s; animation-duration: 5.4s; }
.lp-drone-hero__streaks span:nth-child(3) { top: 52%; animation-delay: -2.8s; animation-duration: 4.2s; }
.lp-drone-hero__streaks span:nth-child(4) { top: 68%; animation-delay: -3.6s; animation-duration: 5.0s; }
@keyframes lp-drone-streak {
    0%   { transform: translateX(0)    rotate(-12deg); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateX(280%) rotate(-12deg); opacity: 0; }
}

/* Radar pulse — bottom-right */
.lp-drone-hero__radar {
    position: absolute;
    bottom: 22%;
    right: 7%;
    width: clamp(140px, 16vw, 200px);
    height: clamp(140px, 16vw, 200px);
    z-index: 2;
    pointer-events: none;
}
.lp-drone-hero__radar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(56, 189, 248, .55);
    opacity: 0;
    animation: lp-drone-radar 3s ease-out infinite;
}
.lp-drone-hero__radar-ring:nth-child(2) { animation-delay: -1s; }
.lp-drone-hero__radar-ring:nth-child(3) { animation-delay: -2s; }
.lp-drone-hero__radar-core {
    position: absolute;
    left: 50%; top: 50%;
    width: 12px; height: 12px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #38BDF8;
    box-shadow: 0 0 20px rgba(56, 189, 248, .9), 0 0 60px rgba(56, 189, 248, .4);
    animation: lp-drone-radar-core 1.6s ease-in-out infinite;
}
@keyframes lp-drone-radar {
    0%   { transform: scale(.2); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}
@keyframes lp-drone-radar-core {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -50%) scale(1.25); }
}
@media (max-width: 991px) {
    .lp-drone-hero__radar { display: none; }
}

/* Flight HUD readouts at bottom of drone hero */
.lp-drone-hero__hud {
    position: absolute;
    left: var(--aka-shell-x);
    bottom: 24px;
    z-index: 2;
    display: flex;
    gap: clamp(12px, 1.8vw, 22px);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--aka-text-soft);
}
.lp-drone-hero__hud span {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 12px;
    border-radius: 8px;
    background: rgba(7, 17, 31, .55);
    border: 1px solid rgba(56, 189, 248, .28);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px -10px rgba(56, 189, 248, .35);
}
.lp-drone-hero__hud span::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: #38BDF8; box-shadow: 0 0 6px #38BDF8;
}
@media (max-width: 768px) {
    .lp-drone-hero__hud { display: none; }
}

/* Drone applications grid */
.lp-drone-apps {
    padding: var(--aka-pad-y) 0;
    background: var(--aka-bg);
}
.lp-drone-apps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 1.8vw, 22px);
    margin-top: clamp(28px, 4vw, 56px);
}
.lp-drone-app {
    position: relative;
    padding: clamp(22px, 2.6vw, 32px);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(8, 47, 73, .35), rgba(7, 17, 31, .35));
    border: 1px solid var(--aka-line);
    overflow: hidden;
    isolation: isolate;
    transition: transform .5s var(--aka-ease), border-color .4s ease, box-shadow .5s var(--aka-ease);
}
.lp-drone-app::before {
    content: '';
    position: absolute;
    inset: auto -20% -20% auto;
    width: 70%; height: 70%;
    background: radial-gradient(circle, rgba(56, 189, 248, .22), transparent 70%);
    pointer-events: none;
    opacity: .55;
    transition: opacity .5s ease;
}
.lp-drone-app:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, .4);
    box-shadow: 0 28px 64px -28px rgba(56, 189, 248, .5);
}
.lp-drone-app:hover::before { opacity: 1; }
.lp-drone-app__icon {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .25), rgba(56, 189, 248, .08));
    border: 1px solid rgba(56, 189, 248, .35);
    color: #38BDF8;
    margin-bottom: 16px;
}
.lp-drone-app__icon svg { width: 20px; height: 20px; }
.lp-drone-app__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.lp-drone-app__lead {
    font-size: 13px;
    line-height: 1.55;
    color: var(--aka-text-soft);
    margin: 0;
}
@media (max-width: 991px) { .lp-drone-apps__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-drone-apps__grid { grid-template-columns: 1fr; } }

/* Drone certifications strip */
.lp-drone-certs {
    padding: clamp(40px, 5vw, 70px) 0;
    background: linear-gradient(180deg, var(--aka-bg), rgba(7, 17, 31, .95));
    border-top: 1px solid var(--aka-line);
    border-bottom: 1px solid var(--aka-line);
    text-align: center;
}
.lp-drone-certs__label {
    display: inline-block;
    font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
    color: var(--aka-blue-2);
    margin-bottom: 22px;
}
.lp-drone-certs__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 60px);
    flex-wrap: wrap;
}
.lp-drone-cert {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(8, 47, 73, .4);
    border: 1px solid rgba(56, 189, 248, .35);
    color: #fff;
    font-size: 14px; font-weight: 600;
    box-shadow: 0 8px 26px -10px rgba(56, 189, 248, .4);
}
.lp-drone-cert::before {
    content: '';
    width: 8px; height: 8px; border-radius: 50%;
    background: #38BDF8;
    box-shadow: 0 0 10px #38BDF8;
}

/* =========================================================================
   Shared LP — Manifesto block (reuses .aka-manifesto styling, scoped variants)
   ========================================================================= */
.lp-stats {
    padding: clamp(44px, 6vw, 80px) 0;
    background: var(--aka-bg);
    border-top: 1px solid var(--aka-line);
    border-bottom: 1px solid var(--aka-line);
    text-align: center;
}
.lp-stats__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 50px);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--aka-shell-x);
}
.lp-stat__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 50%, #3B82F6 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 8px;
}
.lp-prompt .lp-stat__num {
    background: linear-gradient(135deg, #C4B5FD 0%, #818CF8 50%, #6366F1 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-drone .lp-stat__num {
    background: linear-gradient(135deg, #BAE6FD 0%, #38BDF8 50%, #0EA5E9 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-stat__label {
    font-size: 12.5px;
    color: var(--aka-text-soft);
    letter-spacing: .14em;
    text-transform: uppercase;
}
@media (max-width: 720px) {
    .lp-stats__row { grid-template-columns: 1fr; gap: 24px; }
}

/* Shared section header (reuses chapter styling but scoped variant) */
.lp-section-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--aka-shell-x);
}
.lp-section-head__eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--aka-blue-2);
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(96, 165, 250, .26);
    border-radius: 999px;
    background: rgba(96, 165, 250, .06);
}
.lp-prompt .lp-section-head__eyebrow {
    color: #A78BFA;
    background: rgba(167, 139, 250, .08);
    border-color: rgba(167, 139, 250, .3);
}
.lp-drone .lp-section-head__eyebrow {
    color: #38BDF8;
    background: rgba(56, 189, 248, .08);
    border-color: rgba(56, 189, 248, .32);
}
.lp-section-head__title {
    font-size: clamp(30px, 4.2vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}
.lp-section-head__sub {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.55;
    color: var(--aka-text-soft);
    margin: 0;
}
