:root {
    --bg: #fff8f1;
    --surface: #ffffff;
    --surface-soft: #fff1e1;
    --surface-dark: #131313;
    --text: #181818;
    --muted: #5e5e5e;
    --line: rgba(24, 24, 24, 0.1);
    --primary: #ff8600;
    --primary-deep: #d86b00;
    --accent: #111111;
    --shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
    --radius: 26px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(255, 134, 0, 0.16), transparent 24rem),
        radial-gradient(circle at top left, rgba(17, 17, 17, 0.06), transparent 18rem),
        var(--bg);
    color: var(--text);
}

body.menu-open {
    overflow: hidden;
}

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

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

main {
    overflow: hidden;
}

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

.narrow {
    width: min(calc(100% - 2rem), 820px);
}

.topbar {
    background: var(--accent);
    color: #fff;
    font-size: 0.95rem;
}

.topbar-inner,
.nav-inner,
.hero-grid,
.two-column,
.cta-banner-inner,
.form-layout,
.footer-grid,
.footer-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.topbar-inner {
    padding: 0.75rem 0;
}

.topbar-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-contact {
    align-items: center;
}

.topbar-socials {
    justify-content: flex-end;
}

.topbar-item,
.topbar-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.topbar-socials a {
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.topbar-socials a:hover,
.topbar-item:hover {
    color: #fff;
}

.topbar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.topbar-icon svg {
    width: 0.95rem;
    height: 0.95rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
}

.social-icon svg {
    width: 1rem;
    height: 1rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 248, 241, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(24, 24, 24, 0.06);
    transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.nav-inner {
    padding: 1rem 0;
}

.navbar.is-scrolled {
    background: rgba(255, 248, 241, 0.96);
    border-color: rgba(24, 24, 24, 0.09);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.navbar.nav-sweep {
    animation: navBarSweep 1500ms cubic-bezier(.16, .84, .22, 1) both;
}

.navbar.nav-sweep .nav-inner {
    animation: navWholeMenuSweep 1500ms cubic-bezier(.16, .84, .22, 1) both;
}

.brand {
    display: inline-flex;
    gap: 0.85rem;
    align-items: center;
    min-width: 0;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(255, 134, 0, 0.18);
}

.brand strong,
h1,
h2,
h3 {
    font-family: 'Sora', sans-serif;
}

.brand span {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand small {
    color: var(--muted);
}

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

.nav-links a {
    font-weight: 600;
    color: var(--muted);
}

.navbar.nav-sweep .brand,
.navbar.nav-sweep .nav-toggle,
.navbar.nav-sweep .nav-links a {
    opacity: 0;
    animation: navItemSweep 1150ms cubic-bezier(.16, .84, .22, 1) both;
}

.navbar.nav-sweep .brand {
    animation-delay: 140ms;
}

.navbar.nav-sweep .nav-toggle {
    animation-delay: 220ms;
}

.navbar.nav-sweep .nav-links a:nth-last-child(1) {
    animation-delay: 220ms;
}

.navbar.nav-sweep .nav-links a:nth-last-child(2) {
    animation-delay: 320ms;
}

.navbar.nav-sweep .nav-links a:nth-last-child(3) {
    animation-delay: 420ms;
}

.navbar.nav-sweep .nav-links a:nth-last-child(4) {
    animation-delay: 520ms;
}

.navbar.nav-sweep .nav-links a:nth-last-child(5) {
    animation-delay: 620ms;
}

.navbar.nav-sweep .nav-links a:nth-last-child(6) {
    animation-delay: 720ms;
}

.navbar.nav-sweep .nav-links a:nth-last-child(7) {
    animation-delay: 820ms;
}

.navbar.nav-sweep .nav-links a:nth-last-child(8) {
    animation-delay: 920ms;
}

.navbar.nav-sweep .nav-links a:nth-last-child(9) {
    animation-delay: 1020ms;
}

@keyframes navBarSweep {
    0% {
        transform: translate3d(6rem, 0, 0);
        opacity: .75;
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes navWholeMenuSweep {
    0% {
        transform: translate3d(10rem, 0, 0);
        opacity: 0;
    }

    58% {
        transform: translate3d(-0.75rem, 0, 0);
        opacity: 1;
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes navItemSweep {
    0% {
        opacity: 0;
        transform: translate3d(2.5rem, 0, 0);
    }

    62% {
        opacity: 1;
        transform: translate3d(-0.35rem, 0, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 4px 0;
    background: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #ff9d2d);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(255, 134, 0, 0.24);
}

.button:hover {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
}

.button-small {
    min-height: 42px;
    padding: 0.65rem 1rem;
}

.button-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(24, 24, 24, 0.12);
    box-shadow: none;
}

.button-ghost:hover {
    background: rgba(255, 134, 0, 0.08);
}

.hero,
.page-hero {
    padding: 5.5rem 0 3rem;
}

.about-hero {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.46)),
        linear-gradient(180deg, rgba(255, 134, 0, 0.12), rgba(0, 0, 0, 0.38)),
        url("https://images.unsplash.com/photo-1513258496099-48168024aec0?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.about-hero h1,
.about-hero p {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.about-hero p {
    max-width: 720px;
}

.services-hero {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.34)),
        linear-gradient(180deg, rgba(255, 134, 0, 0.12), rgba(0, 0, 0, 0.38)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.services-hero h1,
.services-hero p {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.colleges-hero {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.34)),
        linear-gradient(180deg, rgba(255, 134, 0, 0.14), rgba(0, 0, 0, 0.34)),
        url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}

.colleges-hero .container {
    position: relative;
    z-index: 1;
}

.colleges-hero .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.colleges-hero h1,
.colleges-hero p {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.students-hero,
.recruiters-hero {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center;
    color: #fff;
}

.students-hero {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.34)),
        linear-gradient(180deg, rgba(255, 134, 0, 0.14), rgba(0, 0, 0, 0.34)),
        url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.recruiters-hero {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.34)),
        linear-gradient(180deg, rgba(255, 134, 0, 0.14), rgba(0, 0, 0, 0.34)),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.students-hero .container,
.recruiters-hero .container {
    position: relative;
    z-index: 1;
}

.students-hero .eyebrow,
.recruiters-hero .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.students-hero h1,
.students-hero p,
.recruiters-hero h1,
.recruiters-hero p {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.success-hero {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.34)),
        linear-gradient(180deg, rgba(255, 134, 0, 0.14), rgba(0, 0, 0, 0.34)),
        url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}

.success-hero .container {
    position: relative;
    z-index: 1;
}

.success-hero .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.success-hero h1,
.success-hero p {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.contact-hero {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.34)),
        linear-gradient(180deg, rgba(255, 134, 0, 0.14), rgba(0, 0, 0, 0.34)),
        url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.contact-hero h1,
.contact-hero p {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.about-overview {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 1.25rem;
    align-items: stretch;
}

.about-values {
    display: grid;
    gap: 1rem;
}

.about-values .panel,
.about-numbers,
.about-numbers .stat-card {
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.about-values .panel {
    overflow: hidden;
}

.about-values .panel::before {
    content: "";
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: rgba(255, 134, 0, 0.12);
    transform: scale(0.4);
    opacity: 0;
    transition: transform 280ms ease, opacity 280ms ease;
}

.about-values .panel:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 134, 0, 0.3);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 225, 0.98));
    box-shadow: 0 26px 54px rgba(255, 134, 0, 0.13);
}

.about-values .panel:hover::before {
    transform: scale(1);
    opacity: 1;
}

.about-numbers {
    position: relative;
    overflow: hidden;
    padding: 1.6rem;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.94), rgba(48, 35, 24, 0.96));
    color: #fff;
    box-shadow: 0 24px 58px rgba(17, 17, 17, 0.16);
}

.about-numbers::before {
    content: "";
    position: absolute;
    inset: -35% auto auto -15%;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: rgba(255, 134, 0, 0.16);
    animation: aboutGlowFloat 7s ease-in-out infinite;
}

.about-numbers:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 70px rgba(17, 17, 17, 0.22);
}

.about-numbers > * {
    position: relative;
    z-index: 1;
}

.about-numbers .section-heading {
    margin-bottom: 1rem;
}

.about-numbers h2,
.about-numbers .eyebrow,
.about-numbers .stat-card span {
    color: #fff;
}

.about-numbers .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.about-numbers .stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.about-numbers .stat-card strong {
    color: #ffbd72;
}

.about-numbers .stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 134, 0, 0.18);
    border-color: rgba(255, 134, 0, 0.35);
}

@keyframes aboutGlowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.72;
    }

    50% {
        transform: translate(2rem, 1.5rem) scale(1.12);
        opacity: 1;
    }
}

.hero {
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    margin-bottom: 0;
}

.hero-grid,
.two-column,
.form-layout {
    align-items: stretch;
}

.hero-grid {
    gap: 2rem;
}

.hero-copy,
.hero-card,
.hero-slide,
.panel,
.program-card,
.info-card,
.feature-card,
.testimonial-card,
.stat-card {
    position: relative;
}

.hero-copy {
    flex: 1.15;
}

.hero-card {
    flex: 0.95;
    display: grid;
    gap: 1rem;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 0;
    background: #111;
    box-shadow: 0 28px 64px rgba(17, 17, 17, 0.18);
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-slides {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    z-index: 1;
}

.hero-media,
.hero-media iframe,
.hero-media img,
.hero-media-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media iframe,
.hero-media img {
    border: 0;
    object-fit: cover;
}

.hero-media img {
    --hero-shake-x: 0px;
    --hero-shake-y: 0px;
    transform: scale(1);
    transform-origin: center;
    will-change: transform;
}

.hero-slide.active.is-zooming .hero-media img {
    animation: heroImageBreath 6500ms ease-in-out infinite alternate;
}

@keyframes heroImageBreath {
    from {
        transform: translate3d(var(--hero-shake-x, 0px), var(--hero-shake-y, 0px), 0) scale(1);
    }

    to {
        transform: translate3d(var(--hero-shake-x, 0px), var(--hero-shake-y, 0px), 0) scale(1.14);
    }
}

.hero-media {
    overflow: hidden;
}

.cursor-follow {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 1.1rem;
    height: 1.1rem;
    border: 2px solid var(--primary);
    border-radius: 999px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.85);
    transition: opacity 180ms ease, transform 120ms ease, width 180ms ease, height 180ms ease, background 180ms ease;
    background: rgba(255, 134, 0, 0.08);
    box-shadow: 0 0 0 6px rgba(255, 134, 0, 0.1);
}

.cursor-follow::after {
    content: "";
    position: absolute;
    inset: 50%;
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 999px;
    background: var(--primary);
    transform: translate(-50%, -50%);
}

.cursor-follow.visible {
    opacity: 1;
}

.cursor-follow.is-pointer {
    width: 2.35rem;
    height: 2.35rem;
    background: rgba(255, 134, 0, 0.2);
    border-color: var(--primary-deep);
    box-shadow: 0 0 0 8px rgba(255, 134, 0, 0.14);
    transform: translate3d(-50%, -50%, 0) scale(1);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    .cursor-follow {
        display: none;
    }

    .navbar.nav-sweep,
    .navbar.nav-sweep .nav-inner,
    .navbar.nav-sweep .brand,
    .navbar.nav-sweep .nav-toggle,
    .navbar.nav-sweep .nav-links a {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .hero-slide.active.is-zooming .hero-media img {
        animation: none;
        transform: scale(1);
    }

    .hero-copy .eyebrow,
    .hero-copy h1,
    .hero-copy .lead,
    .hero-copy .hero-actions {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .hero-copy h1 .hero-letter {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

.hero-media iframe {
    pointer-events: none;
    transform: scale(1.35);
}

.hero-media-overlay {
    background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.58) 42%, rgba(8, 8, 8, 0.34) 100%),
        linear-gradient(180deg, rgba(255, 134, 0, 0.14), transparent 45%, rgba(17, 17, 17, 0.22));
}

.hero-media-label {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    z-index: 2;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 8rem 3rem 4rem;
}

.hero-copy {
    max-width: 640px;
    padding-bottom: 1.5rem;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .hero-actions {
    opacity: 0;
    transform: translate3d(0, 26px, 0) rotate(-1deg);
}

.hero-slide.active .hero-copy.is-dancing .eyebrow {
    animation: sliderTextDance 1100ms cubic-bezier(.2, .8, .2, 1) 150ms both;
}

.hero-slide.active .hero-copy.is-dancing h1 {
    animation: sliderTextDance 1200ms cubic-bezier(.2, .8, .2, 1) 500ms both;
}

.hero-copy h1 .hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 0.55em, 0) rotate(5deg) scale(.86);
}

.hero-copy h1 .hero-word {
    display: inline-block;
    white-space: nowrap;
}

.hero-slide.active .hero-copy.is-dancing h1 .hero-letter {
    animation: heroLetterAppear 820ms cubic-bezier(.2, .8, .2, 1) both;
    animation-delay: calc(650ms + (var(--letter-index) * 45ms));
}

@keyframes heroLetterAppear {
    0% {
        opacity: 0;
        transform: translate3d(0, 0.6em, 0) rotate(7deg) scale(.82);
    }

    58% {
        opacity: 1;
        transform: translate3d(0, -0.12em, 0) rotate(-2deg) scale(1.08);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
}

.hero-slide.active .hero-copy.is-dancing .lead {
    animation: sliderTextDance 1120ms cubic-bezier(.2, .8, .2, 1) 850ms both;
}

.hero-slide.active .hero-copy.is-dancing .hero-actions {
    animation: sliderTextDance 1100ms cubic-bezier(.2, .8, .2, 1) 1150ms both;
}

@keyframes sliderTextDance {
    0% {
        opacity: 0;
        transform: translate3d(0, 34px, 0) rotate(-2deg) scale(.96);
    }

    38% {
        opacity: 1;
        transform: translate3d(0, -10px, 0) rotate(1.4deg) scale(1.03);
    }

    62% {
        transform: translate3d(0, 5px, 0) rotate(-.8deg) scale(.99);
    }

    82% {
        transform: translate3d(0, -2px, 0) rotate(.35deg) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead {
    color: #fff;
}

.hero-copy h1 {
    max-width: min(100%, 920px);
    font-size: clamp(2.15rem, 4.55vw, 5rem);
    line-height: 1.04;
    text-wrap: balance;
    overflow-wrap: normal;
}

.hero-copy .eyebrow {
    color: rgba(255, 206, 158, 0.92);
}

.hero-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.hero-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.hero-card {
    width: fit-content;
    max-width: 340px;
    align-self: center;
    margin-top: -2.5rem;
}

.hero-note {
    position: relative;
    padding: 1.15rem;
    border-radius: 24px;
    background: rgba(17, 17, 17, 0.86);
    color: #fff;
    box-shadow: 0 18px 32px rgba(17, 17, 17, 0.22);
    transform-style: preserve-3d;
    transition: transform 180ms ease;
}

.hero-note .eyebrow,
.hero-note li {
    color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--primary-deep);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 1.04;
}

.lead,
.page-hero p,
.section-heading p,
.info-card p,
.feature-card p,
.panel p,
.program-card p,
.testimonial-card p,
.footer p,
.contact-list,
label,
input,
select,
textarea {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-actions,
.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.hero-audience {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.hero-audience span,
.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(24, 24, 24, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.hero-audience span {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(10px);
}

.mini-card,
.panel,
.program-card,
.info-card,
.feature-card,
.testimonial-card,
.stat-card {
    padding: 1.6rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(24, 24, 24, 0.07);
    box-shadow: var(--shadow);
}

.reveal-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: calc(var(--delay, 0) * 80ms);
}

.delay-0 {
    --delay: 0;
}

.delay-1 {
    --delay: 1;
}

.delay-2 {
    --delay: 2;
}

.delay-3 {
    --delay: 3;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-grid,
.card-grid,
.testimonial-grid,
.pill-grid {
    display: grid;
    gap: 1rem;
}

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

.stat-card strong {
    display: block;
    font-size: 2rem;
    font-family: 'Sora', sans-serif;
    color: var(--accent);
}

.hero-card .stat-card {
    background: rgba(255, 255, 255, 0.94);
}

.hero-slider-controls {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    left: auto;
    bottom: auto;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.hero-progress {
    width: 120px;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-progress::after {
    content: "";
    display: block;
    width: calc(var(--hero-progress, 0) * 100%);
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ffc581);
    transition: width 240ms linear;
}

.hero-slider-nav {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.hero-slider-button {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(10px);
    padding: 0.65rem 0.9rem;
}

.hero-slider-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.section {
    padding: 2rem 0 4rem;
}

.section-tint {
    background: linear-gradient(180deg, rgba(255, 134, 0, 0.06), rgba(255, 134, 0, 0));
}

.section-dark {
    background: linear-gradient(135deg, #101010, #242424);
    color: #fff;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 1.6rem;
}

.section-heading-light p,
.section-heading-light h2 {
    color: #fff;
}

h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.1;
}

h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-stack,
.stacked-cards {
    display: grid;
    gap: 1rem;
}

.program-showcase {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.25rem;
    align-items: stretch;
}

.program-showcase-nav {
    display: grid;
    gap: 0.85rem;
}

.program-chip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    align-items: center;
    width: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.program-chip:hover,
.program-chip.active {
    transform: translateY(-4px);
    border-color: rgba(255, 134, 0, 0.32);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 225, 0.98));
    box-shadow: 0 22px 46px rgba(255, 134, 0, 0.12);
}

.program-chip-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.08);
    font-family: 'Sora', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
}

.program-chip.active .program-chip-step {
    background: linear-gradient(135deg, var(--primary), #ffb15a);
    color: #fff;
}

.program-chip-copy {
    display: grid;
    gap: 0.2rem;
}

.program-chip-copy strong {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.program-chip-copy small {
    color: var(--muted);
    font-size: 0.92rem;
}

.program-stage {
    position: relative;
    min-height: 420px;
}

.program-panel {
    position: absolute;
    inset: 0;
    display: none;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    padding: 1.4rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 134, 0, 0.16), transparent 10rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 232, 0.98));
    border: 1px solid rgba(24, 24, 24, 0.06);
    box-shadow: 0 28px 64px rgba(17, 17, 17, 0.1);
    overflow: hidden;
}

.program-panel.active {
    display: grid;
    animation: panelLift 420ms ease;
}

@keyframes panelLift {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.program-panel-copy {
    display: grid;
    align-content: center;
}

.program-panel-copy h3 {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.program-panel-copy p:last-of-type {
    max-width: 52ch;
}

.program-panel-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.program-panel-side {
    position: relative;
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 28px;
    background: rgba(17, 17, 17, 0.94);
    color: #fff;
    overflow: hidden;
    transform-origin: center;
    transition: box-shadow 220ms ease, transform 220ms ease;
}

.program-panel-side:hover {
    animation: programCardDance 760ms ease-in-out;
    box-shadow: 0 24px 54px rgba(17, 17, 17, 0.24);
}

.program-panel-side:hover .program-feature-list li {
    animation: programItemDance 620ms ease-in-out;
}

.program-panel-side:hover .program-feature-list li:nth-child(2) {
    animation-delay: 70ms;
}

.program-panel-side:hover .program-feature-list li:nth-child(3) {
    animation-delay: 140ms;
}

@keyframes programCardDance {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    20% {
        transform: translateY(-7px) rotate(-1.2deg);
    }

    42% {
        transform: translateY(4px) rotate(1.1deg);
    }

    64% {
        transform: translateY(-4px) rotate(-0.7deg);
    }

    82% {
        transform: translateY(2px) rotate(0.5deg);
    }
}

@keyframes programItemDance {
    0%, 100% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(8px);
    }

    58% {
        transform: translateX(-5px);
    }

    78% {
        transform: translateX(3px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .program-panel-side:hover,
    .program-panel-side:hover .program-feature-list li,
    .why-detail-card.active,
    .why-detail-card.active .why-detail-copy,
    .why-detail-card.active .why-proof-list li,
    .why-proof-meter span,
    .audience-node,
    .audience-wheel-ring,
    .motion-step:hover .motion-step-count,
    .about-numbers::before {
        animation: none;
    }
}

.program-orbit {
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 12rem;
    height: 12rem;
}

.program-orbit span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    animation: orbitPulse 6s ease-in-out infinite;
}

.program-orbit span:nth-child(2) {
    inset: 1.4rem;
    animation-delay: 1s;
}

.program-orbit span:nth-child(3) {
    inset: 2.8rem;
    animation-delay: 2s;
}

@keyframes orbitPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

.program-feature-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.program-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.program-feature-list li::before {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ffb15a);
    box-shadow: 0 0 0 0.35rem rgba(255, 134, 0, 0.12);
}

.why-spotlight {
    display: grid;
    gap: 1.4rem;
}

.why-spotlight-head {
    max-width: 760px;
}

.why-spotlight-body {
    display: grid;
    grid-template-columns: 0.78fr 0.9fr 1.08fr;
    gap: 1rem;
    align-items: stretch;
}

.why-comparison-card {
    padding: 1.3rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.02));
    border: 1px solid rgba(24, 24, 24, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.why-comparison-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 134, 0, 0.24);
    box-shadow: 0 22px 46px rgba(255, 134, 0, 0.1);
}

.why-contrast-list {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.why-contrast-list li {
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted);
    border: 1px solid rgba(24, 24, 24, 0.05);
}

.why-selector {
    display: grid;
    gap: 0.85rem;
}

.why-card-trigger {
    display: grid;
    gap: 0.45rem;
    width: 100%;
    padding: 1.1rem;
    border: 1px solid rgba(24, 24, 24, 0.07);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.why-card-trigger:hover,
.why-card-trigger.active {
    transform: translateY(-6px);
    border-color: rgba(255, 134, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 225, 0.98));
}

.why-card-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 16px;
    background: rgba(17, 17, 17, 0.08);
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
}

.why-card-trigger.active .why-card-count {
    background: linear-gradient(135deg, var(--primary), #ffbe76);
    color: #fff;
}

.why-card-trigger strong {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.why-card-trigger small {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.why-detail-stage {
    position: relative;
    min-height: 420px;
}

.why-detail-card {
    position: absolute;
    inset: 0;
    display: none;
    grid-template-rows: auto 1fr;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 32px;
    background: linear-gradient(150deg, #111111, #2a2a2a);
    color: #fff;
    box-shadow: 0 24px 58px rgba(17, 17, 17, 0.18);
    overflow: hidden;
}

.why-detail-card.active {
    position: relative;
    display: grid;
    animation: whyCardReveal 520ms ease;
}

.why-detail-card.active .why-detail-copy {
    animation: whyContentRise 620ms ease both;
}

.why-detail-card.active .why-proof-list li {
    animation: whyProofPop 520ms ease both;
}

.why-detail-card.active .why-proof-list li:nth-child(2) {
    animation-delay: 90ms;
}

.why-detail-card.active .why-proof-list li:nth-child(3) {
    animation-delay: 180ms;
}

.why-detail-copy .eyebrow,
.why-detail-copy p,
.why-proof-list li {
    color: rgba(255, 255, 255, 0.82);
}

.why-detail-copy h3 {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.why-proof-panel {
    position: relative;
    display: grid;
    align-content: end;
    gap: 1rem;
    min-height: 220px;
}

.why-proof-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.why-proof-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.why-proof-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: transform 220ms ease, background 220ms ease;
}

.why-proof-list li:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.13);
}

.why-proof-list li::before {
    content: "";
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ffbf78);
    box-shadow: 0 0 0 0.35rem rgba(255, 134, 0, 0.12);
}

.why-proof-meter {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    display: flex;
    gap: 0.6rem;
    align-items: end;
    height: 8rem;
}

.why-proof-meter span {
    width: 1rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 134, 0, 0.72));
    animation: meterWave 2.8s ease-in-out infinite;
}

.why-proof-meter span:nth-child(1) {
    height: 42%;
}

.why-proof-meter span:nth-child(2) {
    height: 72%;
    animation-delay: 0.35s;
}

.why-proof-meter span:nth-child(3) {
    height: 100%;
    animation-delay: 0.7s;
}

@keyframes meterWave {
    0%, 100% {
        transform: scaleY(0.92);
        opacity: 0.75;
    }

    50% {
        transform: scaleY(1.06);
        opacity: 1;
    }
}

@keyframes whyCardReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes whyContentRise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes whyProofPop {
    from {
        opacity: 0;
        transform: translateX(18px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.audience-tab,
.audience-card,
.slider-button,
.slider-dot {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.audience-orbit {
    padding: 2rem;
    border-radius: 38px;
    background:
        radial-gradient(circle at top left, rgba(255, 134, 0, 0.12), transparent 14rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 235, 0.98));
    border: 1px solid rgba(24, 24, 24, 0.06);
    box-shadow: var(--shadow);
}

.audience-orbit-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 1.4rem;
    align-items: center;
}

.audience-wheel {
    position: relative;
    width: min(100%, 430px);
    aspect-ratio: 1;
    margin: 0 auto;
    --audience-orbit-radius: 11rem;
}

.audience-wheel:hover .audience-node,
.audience-wheel:hover .audience-wheel-ring {
    animation-play-state: paused;
}

.audience-wheel-ring {
    position: absolute;
    inset: 1.8rem;
    border-radius: 50%;
    border: 1px dashed rgba(255, 134, 0, 0.35);
    animation: slowSpin 18s linear infinite;
}

@keyframes slowSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.audience-wheel-core {
    position: absolute;
    inset: 50%;
    width: 9rem;
    height: 9rem;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #111111, #2e2e2e);
    color: #fff;
    font-family: 'Sora', sans-serif;
    text-align: center;
    box-shadow: 0 20px 44px rgba(17, 17, 17, 0.18);
}

.audience-wheel-core span {
    max-width: 5.5rem;
    line-height: 1.3;
}

.audience-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8.8rem;
    min-height: 8.8rem;
    padding: 0.9rem;
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    text-align: center;
    transform: translate(-50%, -50%);
    animation: audienceOrbit 18s linear infinite;
    animation-delay: var(--orbit-delay, 0s);
    transition: box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
}

.audience-node-angle-0 {
    --node-angle: 0deg;
    --orbit-delay: 0s;
}

.audience-node-angle-1 {
    --node-angle: 120deg;
    --orbit-delay: -6s;
}

.audience-node-angle-2 {
    --node-angle: 240deg;
    --orbit-delay: -12s;
}

.audience-node:hover,
.audience-node.active {
    border-color: rgba(255, 134, 0, 0.34);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 241, 225, 1));
    box-shadow: 0 22px 42px rgba(255, 134, 0, 0.14);
}

.audience-node-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    margin-bottom: 0.55rem;
    border-radius: 14px;
    background: rgba(17, 17, 17, 0.07);
    font-family: 'Sora', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
}

.audience-node.active .audience-node-index {
    background: linear-gradient(135deg, var(--primary), #ffbe76);
    color: #fff;
}

.audience-node strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

@keyframes audienceOrbit {
    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg)
            translateY(calc(var(--audience-orbit-radius) * -1))
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg)
            translateY(calc(var(--audience-orbit-radius) * -1))
            rotate(-360deg);
    }
}

.audience-stage {
    position: relative;
}

.audience-spot {
    position: relative;
    display: none;
    grid-template-columns: 1fr 0.95fr;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 246, 236, 1));
    color: var(--text);
    border: 1px solid rgba(24, 24, 24, 0.06);
    box-shadow: 0 24px 56px rgba(17, 17, 17, 0.1);
    overflow: hidden;
}

.audience-spot.active {
    display: grid;
    animation: panelLift 360ms ease;
}

.audience-spot-copy {
    display: grid;
    align-content: center;
}

.audience-spot-copy h3 {
    font-size: clamp(1.9rem, 2.9vw, 2.6rem);
}

.audience-spot-side {
    display: grid;
    align-content: end;
    padding: 1.2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 134, 0, 0.12), rgba(255, 134, 0, 0.03));
}

.audience-benefits {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.audience-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    border: 1px solid rgba(24, 24, 24, 0.05);
}

.audience-benefits li::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ffbe76);
    box-shadow: 0 0 0 0.3rem rgba(255, 134, 0, 0.12);
}

.domain-galaxy {
    padding: 2rem;
    border-radius: 38px;
    background:
        radial-gradient(circle at top left, rgba(255, 134, 0, 0.14), transparent 15rem),
        radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.08), transparent 16rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 235, 0.98));
    border: 1px solid rgba(24, 24, 24, 0.06);
    box-shadow: var(--shadow);
}

.domain-heading {
    max-width: 760px;
}

.domain-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    margin-top: 1.2rem;
}

.domain-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.domain-feature-card {
    padding: 1.25rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(24, 24, 24, 0.06);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.domain-feature-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #111111, #2a2016);
    color: #fff;
    border-color: rgba(255, 134, 0, 0.42);
    box-shadow: 0 26px 52px rgba(255, 134, 0, 0.12);
}

.domain-feature-card:hover h3,
.domain-feature-card:hover .domain-feature-list li {
    color: #fff;
}

.domain-feature-card:hover .domain-feature-list li::before {
    background: linear-gradient(135deg, #ff8600, #ffd19b);
    box-shadow: 0 0 0 0.28rem rgba(255, 134, 0, 0.22);
}

.domain-feature-card h3 {
    font-size: 1.35rem;
}

.domain-feature-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.domain-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--muted);
}

.domain-feature-list li::before {
    content: "";
    width: 0.68rem;
    height: 0.68rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ffbd72);
    box-shadow: 0 0 0 0.28rem rgba(255, 134, 0, 0.12);
}

.domain-media-stack {
    display: grid;
    gap: 1rem;
}

.domain-media-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: 28px;
    background: #111;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.16);
}

.domain-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.domain-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.72));
}

.domain-media-badge,
.domain-media-copy {
    position: absolute;
    z-index: 1;
    color: #fff;
}

.domain-media-badge {
    top: 1rem;
    left: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    font-size: 0.84rem;
    font-weight: 700;
}

.domain-media-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.2rem;
}

.domain-media-copy strong {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
}

.domain-media-copy small {
    color: rgba(255, 255, 255, 0.8);
}

.domain-marquee-wrap {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.domain-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.25rem 0;
}

.domain-marquee::before,
.domain-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5rem;
    z-index: 1;
    pointer-events: none;
}

.domain-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 248, 241, 1), rgba(255, 248, 241, 0));
}

.domain-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 248, 241, 1), rgba(255, 248, 241, 0));
}

.domain-track {
    display: flex;
    gap: 0.8rem;
    width: max-content;
    animation: domainFlow 120s linear infinite;
}

.domain-marquee.reverse .domain-track {
    animation-direction: reverse;
    animation-duration: 144s;
}

.domain-marquee:hover .domain-track {
    animation-play-state: paused;
}

@keyframes domainFlow {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.domain-token {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.92);
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
}

.domain-token.alt {
    background: linear-gradient(135deg, rgba(255, 134, 0, 0.18), rgba(255, 241, 225, 1));
    color: var(--text);
}

@keyframes paneFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-marquee {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    padding: 0.35rem 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
    min-width: max-content;
    animation: logoFlow 28s linear infinite;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 88px;
    padding: 1rem 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.logo-pill img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 220px;
    border-radius: 18px;
}

@keyframes logoFlow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-slider {
    display: grid;
    gap: 1rem;
}

.success-story-slider {
    display: grid;
    gap: 0.9rem;
    max-width: 900px;
    margin: 0 auto;
    --slider-index: 0;
}

.testimonial-track {
    display: flex;
    overflow: hidden;
    min-height: 290px;
    transform: translateX(calc(var(--slider-index) * -100%));
    transition: transform 420ms ease;
}

.slide {
    display: block;
    flex: 0 0 100%;
}

.slide.active {
    animation: none;
}

.success-story-card {
    display: grid;
    gap: 1.15rem;
    min-height: 100%;
    padding: 2rem 2.1rem;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(24, 24, 24, 0.08);
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
}

.success-story-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.success-story-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: rgba(255, 134, 0, 0.1);
    color: var(--primary-deep);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.success-story-impact {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.success-story-quote {
    margin: 0;
    color: var(--text);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.7;
    font-weight: 600;
    max-width: 42rem;
}

.success-story-person {
    display: grid;
    gap: 0.2rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(24, 24, 24, 0.08);
}

.success-story-person strong,
.success-story-person span {
    display: block;
}

.success-story-person strong {
    font-size: 1rem;
}

.success-story-person span {
    color: var(--muted);
}

.success-slider-controls {
    padding: 0;
    justify-content: center;
}

.success-design-showcase {
    display: grid;
    gap: 1.25rem;
}

.success-design {
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(24, 24, 24, 0.07);
    box-shadow: var(--shadow);
}

.success-design::before {
    content: "";
    position: absolute;
    inset: auto -3rem -3rem auto;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: rgba(255, 134, 0, 0.12);
    transition: transform 320ms ease, opacity 320ms ease;
}

.success-design:hover::before {
    transform: scale(1.25);
    opacity: 0.8;
}

.success-design-label {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.success-timeline,
.success-spotlight-grid,
.success-metric-grid,
.success-fan,
.success-story-slider {
    position: relative;
    z-index: 1;
}

.success-timeline {
    display: grid;
    gap: 0.8rem;
}

.success-timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(24, 24, 24, 0.06);
    transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.success-timeline-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #ffffff, #fff1e1);
    box-shadow: 0 22px 42px rgba(255, 134, 0, 0.12);
}

.success-timeline-item > span,
.success-metric-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #ffbd72);
    color: #fff;
    font-weight: 800;
}

.success-timeline-item p,
.success-spotlight-card p,
.success-fan-card p {
    margin: 0.55rem 0;
}

.success-timeline-item small,
.success-spotlight-card small,
.success-metric-card small {
    color: var(--muted);
    font-weight: 700;
}

.success-spotlight-grid,
.success-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.success-spotlight-card,
.success-metric-card {
    display: grid;
    align-content: space-between;
    min-height: 220px;
    padding: 1.15rem;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(24, 24, 24, 0.07);
    transition: transform 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.success-spotlight-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    background: linear-gradient(150deg, #111111, #2a2016);
    color: #fff;
    box-shadow: 0 26px 54px rgba(17, 17, 17, 0.18);
}

.success-spotlight-card:hover small {
    color: rgba(255, 255, 255, 0.72);
}

.success-metric-card {
    min-height: 190px;
    background: linear-gradient(145deg, #fff, #fff5ea);
}

.success-metric-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, var(--primary), #ffb15a);
    color: #fff;
    box-shadow: 0 28px 56px rgba(255, 134, 0, 0.24);
}

.success-metric-card:hover > span {
    background: rgba(17, 17, 17, 0.18);
}

.success-metric-card:hover small {
    color: rgba(255, 255, 255, 0.8);
}

.success-fan {
    min-height: 460px;
}

.success-fan-card {
    position: absolute;
    left: 50%;
    top: 52%;
    display: grid;
    align-content: center;
    width: min(82%, 560px);
    min-height: 310px;
    padding: 2rem;
    border-radius: 34px;
    background: linear-gradient(145deg, #111111, #31261c);
    color: #fff;
    box-shadow: 0 28px 58px rgba(17, 17, 17, 0.2);
    transform: translate(-50%, -50%) rotate(var(--fan-rotate)) translateX(var(--fan-shift));
    transition: transform 420ms ease, box-shadow 320ms ease, opacity 320ms ease;
}

.success-fan-card span {
    color: rgba(255, 206, 158, 0.92);
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.6;
}

.success-fan-card p {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.55;
}

.success-fan-card strong {
    font-size: 1.1rem;
}

.success-fan-card.active {
    z-index: 3;
    transform: translate(-50%, -56%) rotate(0deg) translateX(0) scale(1.04);
    box-shadow: 0 34px 70px rgba(255, 134, 0, 0.24);
}

.success-fan-card:hover {
    box-shadow: 0 34px 70px rgba(255, 134, 0, 0.24);
}

.success-fan-card-0 {
    --fan-rotate: -8deg;
    --fan-shift: -11rem;
}

.success-fan-card-1 {
    --fan-rotate: 0deg;
    --fan-shift: 0;
    z-index: 1;
}

.success-fan-card-2 {
    --fan-rotate: 8deg;
    --fan-shift: 11rem;
}

.text-link {
    color: var(--primary-deep);
    font-weight: 700;
}

.insights-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 0.38fr);
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 0.3rem 0.2rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 134, 0, 0.55) rgba(17, 17, 17, 0.08);
}

.insights-scroll::-webkit-scrollbar {
    height: 10px;
}

.insights-scroll::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
}

.insights-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), #ffbd72);
}

.insight-card {
    position: relative;
    min-height: 260px;
    scroll-snap-align: start;
    overflow: hidden;
    transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.insight-card::before {
    content: "";
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: rgba(255, 134, 0, 0.14);
    transform: scale(0.45);
    opacity: 0;
    transition: transform 280ms ease, opacity 280ms ease;
}

.insight-card::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.35rem;
    background: linear-gradient(180deg, var(--primary), #ffd09b);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 260ms ease;
}

.insight-card > * {
    position: relative;
    z-index: 1;
}

.insight-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, #111111, #302316);
    color: #fff;
    border-color: rgba(255, 134, 0, 0.38);
    box-shadow: 0 28px 58px rgba(17, 17, 17, 0.2);
}

.insight-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

.insight-card:hover::after {
    transform: scaleY(1);
}

.insight-card:hover p,
.insight-card:hover .text-link {
    color: rgba(255, 255, 255, 0.82);
}

.insight-card:hover .text-link {
    color: #ffbd72;
}

.motion-story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.4rem;
    align-items: center;
}

.motion-copy {
    display: grid;
    gap: 1rem;
}

.motion-steps {
    display: grid;
    gap: 0.9rem;
}

.motion-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(24, 24, 24, 0.06);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateX(0);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.motion-step::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.35rem;
    background: linear-gradient(180deg, var(--primary), #ffc27d);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 260ms ease;
}

.motion-step::after {
    content: "";
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: rgba(255, 134, 0, 0.12);
    transform: scale(0.4);
    opacity: 0;
    transition: transform 260ms ease, opacity 260ms ease;
}

.motion-step:hover {
    transform: translateX(10px) translateY(-4px);
    border-color: rgba(255, 134, 0, 0.32);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 241, 225, 0.98));
    box-shadow: 0 26px 54px rgba(255, 134, 0, 0.14);
}

.motion-step:hover::before {
    transform: scaleY(1);
}

.motion-step:hover::after {
    transform: scale(1);
    opacity: 1;
}

.motion-step:hover .motion-step-count {
    animation: motionStepBadgeDance 680ms ease;
}

.motion-step:hover h3 {
    color: var(--primary-deep);
}

.motion-step > * {
    position: relative;
    z-index: 1;
}

.motion-step h3 {
    margin-bottom: 0.35rem;
}

.motion-step-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #ffb561);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 220ms ease, box-shadow 220ms ease;
    box-shadow: 0 10px 22px rgba(255, 134, 0, 0.2);
}

@keyframes motionStepBadgeDance {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-8deg) scale(1.08);
    }

    55% {
        transform: rotate(7deg) scale(1.04);
    }

    78% {
        transform: rotate(-3deg) scale(1.06);
    }
}

.motion-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
        "head head"
        "feature side-top"
        "feature side-bottom"
        "badge badge";
    gap: 1rem;
    align-items: stretch;
    min-height: 560px;
    padding: 1rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 134, 0, 0.18), transparent 10rem),
        radial-gradient(circle at bottom left, rgba(17, 17, 17, 0.05), transparent 12rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 235, 0.98));
    border: 1px solid rgba(24, 24, 24, 0.06);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.motion-gallery::before {
    content: "";
    position: absolute;
    inset: auto -3rem -3rem auto;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: rgba(255, 134, 0, 0.1);
    filter: blur(10px);
    pointer-events: none;
}

.motion-gallery-head {
    grid-area: head;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.2rem 0.15rem 0.35rem;
}

.motion-gallery-head h3 {
    margin: 0;
    max-width: 22rem;
}

.motion-gallery-head .eyebrow {
    margin-bottom: 0.35rem;
}

.motion-frame {
    position: relative;
    margin: 0;
    min-height: 220px;
    overflow: hidden;
    border-radius: 28px;
    background: #111;
    box-shadow: 0 22px 46px rgba(17, 17, 17, 0.12);
    transform-origin: center;
    animation: motionGalleryFloat 8s ease-in-out infinite;
    transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
    will-change: transform;
}

.motion-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.motion-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.05), rgba(17, 17, 17, 0.56));
}

.motion-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background: linear-gradient(135deg, rgba(255, 170, 43, 0.18), transparent 55%);
    transition: opacity 0.35s ease;
}

.motion-frame:hover {
    transform: translateY(-12px) rotate(-1.6deg) scale(1.02);
    box-shadow: 0 28px 60px rgba(17, 17, 17, 0.18);
    filter: saturate(1.06);
}

.motion-frame:hover::before {
    opacity: 1;
}

.motion-frame:hover img {
    transform: scale(1.08) rotate(1deg);
    filter: saturate(1.08);
}

.motion-frame.is-switching {
    animation-play-state: paused;
}

.motion-frame.is-switching img {
    transform: scale(1.12);
    filter: saturate(1.12) brightness(0.88);
}

.motion-frame.is-switching figcaption {
    transform: translateY(10px);
    opacity: 0;
}

.motion-frame figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.motion-frame-large {
    grid-area: feature;
    min-height: 100%;
    animation-delay: 0s;
}

.motion-frame-small {
    grid-area: side-top;
    animation-duration: 7.2s;
    animation-delay: -1.2s;
}

.motion-frame-accent {
    grid-area: side-bottom;
    animation-duration: 6.8s;
    animation-delay: -2s;
}

.motion-frame-small:hover {
    transform: translateY(-10px) rotate(1.8deg) scale(1.03);
}

.motion-frame-accent:hover {
    transform: translateY(-10px) rotate(-2.2deg) scale(1.03);
}

.motion-badge {
    grid-area: badge;
    position: relative;
    z-index: 2;
    max-width: 320px;
    margin-top: 0.35rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(17, 17, 17, 0.9);
    color: #fff;
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.18);
    animation: motionBadgePulse 5.5s ease-in-out infinite;
}

.motion-badge strong,
.motion-badge span {
    display: block;
}

.motion-badge span {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
}

@keyframes motionGalleryFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.8deg);
    }
}

@keyframes motionBadgePulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 20px 40px rgba(17, 17, 17, 0.18);
    }
    50% {
        transform: translateY(-4px);
        box-shadow: 0 26px 48px rgba(17, 17, 17, 0.24);
    }
}

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

.slider-button {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    font-weight: 700;
}

.slider-dots {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.18);
}

.slider-dot.active {
    background: var(--primary);
}

.hero-slider .slider-dot {
    background: rgba(255, 255, 255, 0.34);
}

.hero-slider .slider-dot.active {
    background: #fff;
}

.check-list,
.number-list,
.footer-links,
.contact-list {
    margin: 0;
    padding-left: 1.15rem;
}

.check-list li,
.number-list li,
.footer-links li,
.contact-list li {
    margin-bottom: 0.7rem;
}

.program-card {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.2fr 1fr;
}

.service-program-card {
    position: relative;
    overflow: hidden;
    align-items: center;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease, color 260ms ease;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 225, 0.98));
    border-color: rgba(255, 134, 0, 0.12);
}

.service-program-card::before {
    content: "";
    position: absolute;
    inset: auto -3rem -3rem auto;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: var(--program-glow, rgba(255, 134, 0, 0.16));
    transform: scale(0.45);
    opacity: 0;
    transition: transform 280ms ease, opacity 280ms ease;
}

.service-program-card > * {
    position: relative;
    z-index: 1;
}

.service-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 62px rgba(17, 17, 17, 0.16);
}

.service-program-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

.service-program-card .check-list {
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.64);
}

.service-program-card-0 {
    grid-template-columns: 1.35fr 0.85fr;
    min-height: 250px;
}

.service-program-card-1 {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 210px;
}

.service-program-card-2 {
    grid-template-columns: 1fr 1fr;
    min-height: 230px;
}

.service-program-card-3 {
    grid-template-columns: 1.45fr 0.75fr;
    min-height: 270px;
}

.service-program-card-4 {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 220px;
}

.college-partner-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.25rem;
    align-items: stretch;
}

.college-benefit-panel,
.college-roadmap-card,
.college-impact-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 24, 24, 0.07);
    box-shadow: var(--shadow);
}

.college-benefit-panel {
    padding: 1.6rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 134, 0, 0.16), transparent 13rem),
        rgba(255, 255, 255, 0.92);
}

.college-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.college-benefit-card {
    display: grid;
    gap: 0.75rem;
    min-height: 145px;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 24, 24, 0.06);
    transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.college-benefit-card span,
.college-impact-card span,
.college-roadmap-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #ffbd72);
    color: #fff;
    font-weight: 800;
}

.college-benefit-card p {
    margin: 0;
    font-weight: 700;
}

.college-benefit-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, #111111, #2a2016);
    color: #fff;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.16);
}

.college-roadmap-card {
    padding: 1.5rem;
    border-radius: 32px;
    background: linear-gradient(145deg, #111111, #302316);
    color: #fff;
}

.college-roadmap-card h3,
.college-roadmap-card .eyebrow {
    color: #fff;
}

.college-roadmap-card .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.college-roadmap-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.college-roadmap-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    padding: 0.9rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 220ms ease, background 220ms ease;
}

.college-roadmap-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.college-roadmap-list li:hover {
    transform: translateX(8px);
    background: rgba(255, 134, 0, 0.16);
}

.college-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.college-impact-card {
    min-height: 240px;
    padding: 1.3rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    transition: transform 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.college-impact-card::before {
    content: "";
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: rgba(255, 134, 0, 0.14);
    transform: scale(0.45);
    opacity: 0;
    transition: transform 280ms ease, opacity 280ms ease;
}

.college-impact-card > * {
    position: relative;
    z-index: 1;
}

.college-impact-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, #111111, #2a2016);
    color: #fff;
    box-shadow: 0 28px 58px rgba(17, 17, 17, 0.2);
}

.college-impact-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

.college-impact-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.audience-page-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.25rem;
    align-items: stretch;
}

.audience-benefit-panel,
.audience-roadmap-card,
.audience-impact-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 24, 24, 0.07);
    box-shadow: var(--shadow);
}

.audience-benefit-panel {
    padding: 1.6rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 134, 0, 0.16), transparent 13rem),
        rgba(255, 255, 255, 0.92);
}

.audience-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.audience-benefit-card {
    display: grid;
    gap: 0.75rem;
    min-height: 145px;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 24, 24, 0.06);
    transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.audience-benefit-card span,
.audience-impact-card span,
.audience-roadmap-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #ffbd72);
    color: #fff;
    font-weight: 800;
}

.audience-benefit-card p {
    margin: 0;
    font-weight: 700;
}

.audience-benefit-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, #111111, #2a2016);
    color: #fff;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.16);
}

.audience-roadmap-card {
    padding: 1.5rem;
    border-radius: 32px;
    background: linear-gradient(145deg, #111111, #302316);
    color: #fff;
}

.audience-roadmap-card h3,
.audience-roadmap-card .eyebrow {
    color: #fff;
}

.audience-roadmap-card .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.audience-roadmap-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.audience-roadmap-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    padding: 0.9rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 220ms ease, background 220ms ease;
}

.audience-roadmap-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.audience-roadmap-list li:hover {
    transform: translateX(8px);
    background: rgba(255, 134, 0, 0.16);
}

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

.audience-impact-card {
    min-height: 240px;
    padding: 1.3rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    transition: transform 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.audience-impact-card::before {
    content: "";
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: rgba(255, 134, 0, 0.14);
    transform: scale(0.45);
    opacity: 0;
    transition: transform 280ms ease, opacity 280ms ease;
}

.audience-impact-card > * {
    position: relative;
    z-index: 1;
}

.audience-impact-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, #111111, #2a2016);
    color: #fff;
    box-shadow: 0 28px 58px rgba(17, 17, 17, 0.2);
}

.audience-impact-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

.audience-impact-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.success-page-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.25rem;
    align-items: stretch;
}

.success-page-panel,
.success-roadmap-card,
.success-voice-card,
.success-orbit-showcase {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 24, 24, 0.07);
    box-shadow: var(--shadow);
}

.success-page-panel {
    padding: 1.6rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 134, 0, 0.16), transparent 13rem),
        rgba(255, 255, 255, 0.92);
}

.success-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.success-highlight-card {
    min-height: 210px;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 24, 24, 0.06);
    transition: transform 240ms ease, background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.success-highlight-card span,
.success-roadmap-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.9rem;
    height: 2.7rem;
    padding: 0 0.65rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #ffbd72);
    color: #fff;
    font-weight: 800;
}

.success-highlight-card strong {
    display: block;
    margin-top: 1rem;
    color: var(--primary-deep);
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
}

.success-highlight-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, #111111, #2a2016);
    color: #fff;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.16);
}

.success-highlight-card:hover strong,
.success-highlight-card:hover p {
    color: #fff;
}

.success-roadmap-card {
    padding: 1.5rem;
    border-radius: 32px;
    background: linear-gradient(145deg, #111111, #302316);
    color: #fff;
}

.success-roadmap-card h3,
.success-roadmap-card .eyebrow {
    color: #fff;
}

.success-roadmap-card .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.success-roadmap-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.success-roadmap-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    padding: 0.9rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 220ms ease, background 220ms ease;
}

.success-roadmap-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.success-roadmap-list li:hover {
    transform: translateX(8px);
    background: rgba(255, 134, 0, 0.16);
}

.success-voice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.success-voice-card {
    min-height: 280px;
    padding: 1.3rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    transition: transform 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.success-voice-card span {
    color: var(--primary-deep);
    font-weight: 800;
}

.success-voice-card p {
    font-family: 'Sora', sans-serif;
    font-size: 1.08rem;
    line-height: 1.65;
}

.success-voice-card small {
    display: block;
    margin-top: 0.25rem;
    color: var(--muted);
}

.success-voice-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    background: linear-gradient(145deg, #111111, #2a2016);
    color: #fff;
    box-shadow: 0 28px 58px rgba(17, 17, 17, 0.2);
}

.success-voice-card:hover span,
.success-voice-card:hover p,
.success-voice-card:hover small {
    color: #fff;
}

.success-orbit-showcase {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.6rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 134, 0, 0.18), transparent 13rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 235, 0.98));
}

.success-orbit-map {
    position: relative;
    min-height: 380px;
    display: grid;
    place-items: center;
}

.success-orbit-map::before {
    content: "";
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    border: 1px dashed rgba(255, 134, 0, 0.38);
    animation: slowSpin 18s linear infinite;
}

.success-orbit-core,
.success-orbit-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 20px 44px rgba(17, 17, 17, 0.12);
}

.success-orbit-core {
    position: relative;
    z-index: 1;
    width: 10rem;
    height: 10rem;
    padding: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #111111, #302316);
    color: #fff;
}

.success-orbit-node {
    position: absolute;
    width: 6.7rem;
    height: 6.7rem;
    border-radius: 24px;
    background: #fff;
    color: var(--text);
    animation: successNodeFloat 4.5s ease-in-out infinite;
}

.success-orbit-node.node-1 {
    top: 1rem;
}

.success-orbit-node.node-2 {
    right: 1rem;
    animation-delay: 0.4s;
}

.success-orbit-node.node-3 {
    bottom: 1rem;
    animation-delay: 0.8s;
}

.success-orbit-node.node-4 {
    left: 1rem;
    animation-delay: 1.2s;
}

@keyframes successNodeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.25rem;
    align-items: stretch;
}

.contact-info-panel,
.contact-form-panel,
.contact-method-card,
.contact-audience-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 24, 24, 0.07);
    box-shadow: var(--shadow);
}

.contact-info-panel,
.contact-form-panel {
    padding: 1.6rem;
    border-radius: 32px;
}

.contact-info-panel {
    background:
        radial-gradient(circle at top right, rgba(255, 134, 0, 0.16), transparent 13rem),
        rgba(255, 255, 255, 0.92);
}

.contact-form-panel {
    background: linear-gradient(145deg, #111111, #302316);
    color: #fff;
}

.contact-form-panel h2,
.contact-form-panel .eyebrow,
.contact-form-panel label {
    color: #fff;
}

.contact-form-panel .eyebrow {
    color: rgba(255, 206, 158, 0.94);
}

.contact-method-grid,
.contact-audience-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

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

.contact-method-card,
.contact-audience-card {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    transition: transform 240ms ease, background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.contact-method-card span {
    color: var(--primary-deep);
    font-weight: 800;
    font-size: 0.86rem;
    text-transform: uppercase;
}

.contact-method-card strong {
    overflow-wrap: anywhere;
}

.contact-method-card:hover,
.contact-audience-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, #111111, #2a2016);
    color: #fff;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.16);
}

.contact-method-card:hover span,
.contact-audience-card:hover p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder {
    color: rgba(255, 255, 255, 0.54);
}

.contact-form-panel select option {
    color: var(--text);
}

.cta-banner {
    padding: 0 0 4.5rem;
}

.cta-banner-inner {
    padding: 2rem;
    border-radius: 34px;
    background: linear-gradient(135deg, #111111, #2b2b2b);
    color: #fff;
    box-shadow: 0 24px 64px rgba(17, 17, 17, 0.24);
}

.cta-banner h2,
.cta-banner p {
    color: #fff;
}

.footer {
    padding: 2rem 0 2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 134, 0, 0.12), transparent 18rem),
        linear-gradient(180deg, #101010, #080808);
    color: rgba(255, 255, 255, 0.9);
}

.footer-shell {
    display: block;
}

.footer-eyebrow {
    margin-bottom: 0.55rem;
}

.footer-main-card {
    padding: 1.7rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 1fr;
    gap: 1.6rem;
    align-items: start;
}

.footer-brand-panel {
    display: grid;
    gap: 1rem;
}

.footer-brand-panel h2 {
    margin: 0;
    max-width: 34rem;
    color: #fff;
    font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.footer-links-panel h3 {
    margin: 0 0 1rem;
    color: #fff;
}

.footer-contact-stack {
    display: grid;
    gap: 0.75rem;
}

.footer-contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffb24a;
}

.footer-contact-icon svg,
.footer-socials svg,
.footer-bottom-links svg {
    width: 1.1rem;
    height: 1.1rem;
}

.footer-contact-label {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-contact-card strong {
    font-size: 0.98rem;
}

.footer-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-socials a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.brand-footer small,
.footer p,
.footer-links li {
    color: rgba(255, 255, 255, 0.68);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.footer-social-block {
    margin-top: 1.6rem;
}

.footer-bottom {
    padding-top: 1.4rem;
    margin-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.74);
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    background: #1f9d55;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(31, 157, 85, 0.28);
}

.form-layout > * {
    flex: 1;
}

.lead-form {
    display: grid;
    gap: 1rem;
}

label {
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(24, 24, 24, 0.12);
    background: #fff;
    font: inherit;
}

textarea {
    resize: vertical;
}

.success-message {
    margin-bottom: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(39, 174, 96, 0.12);
    color: #176c3d;
    font-weight: 600;
}

.compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

@media (max-width: 980px) {
    .hero-grid,
    .two-column,
    .form-layout,
    .cta-banner-inner,
    .footer-bottom,
    .topbar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .topbar-socials {
        justify-content: flex-start;
    }

    .card-grid,
    .testimonial-grid,
    .compact-grid,
    .program-card,
    .program-showcase,
    .program-panel,
    .why-spotlight-body,
    .audience-orbit-layout,
    .audience-spot,
    .domain-showcase,
    .domain-feature-grid,
    .motion-story,
    .motion-gallery {
        grid-template-columns: 1fr;
    }

    .hero-slide-content,
    .hero-slider-controls {
        left: auto;
        right: auto;
    }

    .logo-pill {
        min-width: 190px;
    }

    .footer-grid,
    .footer-link-grid {
        grid-template-columns: 1fr;
    }

    .about-overview {
        grid-template-columns: 1fr;
    }

    .college-partner-grid,
    .college-impact-grid,
    .audience-page-grid,
    .audience-impact-grid,
    .success-page-grid,
    .success-highlight-grid,
    .success-voice-grid,
    .success-orbit-showcase,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav-links {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.5rem);
        display: none;
        flex-direction: column;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 248, 241, 0.98);
        box-shadow: var(--shadow);
    }

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

    .hero-note {
        width: auto;
    }

    .hero,
    .hero-slider,
    .hero-slides,
    .hero-slide,
    .hero-slide-content {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-slider {
        overflow: hidden;
    }

    .hero-slide.active {
        position: relative;
    }

    .hero-slide-content {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 1.2rem;
        padding: 7rem 1.5rem 2.5rem;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-card {
        width: 100%;
        max-width: 520px;
        align-self: flex-start;
        margin-top: 0;
    }

    .hero-slider-controls {
        left: 1.5rem;
        right: 1.5rem;
        top: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-progress {
        width: 100%;
    }

    .hero-slider-nav {
        justify-content: space-between;
    }

    .program-stage {
        min-height: 520px;
    }

    .program-panel {
        padding: 1.2rem;
    }

    .why-detail-stage {
        min-height: auto;
    }

    .audience-orbit-layout {
        gap: 1rem;
    }

    .domain-media-card {
        min-height: 200px;
    }

    .motion-gallery {
        grid-template-columns: 1fr;
        grid-template-areas:
            "head"
            "feature"
            "side-top"
            "side-bottom"
            "badge";
        min-height: auto;
    }

    .motion-badge {
        position: relative;
        left: auto;
        bottom: auto;
        max-width: none;
    }
}

@media (max-width: 720px) {
    .hero,
    .page-hero {
        padding-top: 4.5rem;
    }

    .hero {
        padding-top: 0;
        min-height: 100vh;
        min-height: 100dvh;
        margin-bottom: 0;
    }

    .section {
        padding: 0.6rem 0 1rem;
    }

    .page-hero {
        padding-bottom: 1.5rem;
    }

    .section-heading {
        margin-bottom: 0.9rem;
    }

    .section-heading p {
        margin-bottom: 0;
    }

    .domain-showcase,
    .domain-marquee-wrap,
    .program-panel-actions {
        margin-top: 0.6rem;
    }

    .success-story-person,
    .motion-badge {
        margin-top: 0;
    }

    h2 {
        margin-bottom: 0.55rem;
    }

    h3 {
        margin-bottom: 0.45rem;
    }

    h1 {
        font-size: clamp(2rem, 12vw, 2.45rem);
        line-height: 1.08;
    }

    .card-grid,
    .testimonial-grid,
    .pill-grid,
    .feature-stack,
    .stacked-cards,
    .program-showcase,
    .program-showcase-nav,
    .program-panel,
    .why-spotlight-body,
    .why-card-grid,
    .domain-showcase,
    .domain-feature-grid,
    .success-spotlight-grid,
    .success-metric-grid,
    .motion-story,
    .footer-grid,
    .footer-link-grid {
        gap: 0.75rem;
    }

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

    .mini-card,
    .panel,
    .program-card,
    .info-card,
    .feature-card,
    .testimonial-card,
    .stat-card,
    .cta-banner-inner,
    .audience-orbit,
    .success-design,
    .success-story-card {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .footer-main-card {
        padding: 1.2rem;
        border-radius: 22px;
    }

    .about-numbers {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .college-benefit-panel,
    .college-roadmap-card,
    .college-impact-card,
    .audience-benefit-panel,
    .audience-roadmap-card,
    .audience-impact-card,
    .success-page-panel,
    .success-roadmap-card,
    .success-voice-card,
    .success-orbit-showcase,
    .contact-info-panel,
    .contact-form-panel {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .college-benefit-grid,
    .audience-benefit-grid {
        grid-template-columns: 1fr;
    }

    .college-benefit-card,
    .college-impact-card,
    .audience-benefit-card,
    .audience-impact-card,
    .success-highlight-card,
    .success-voice-card {
        min-height: auto;
    }

    .success-orbit-map {
        min-height: 320px;
    }

    .success-orbit-map::before {
        width: 14rem;
        height: 14rem;
    }

    .success-orbit-core {
        width: 8.5rem;
        height: 8.5rem;
    }

    .success-orbit-node {
        width: 5.6rem;
        height: 5.6rem;
        border-radius: 20px;
    }

    .contact-method-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        border-radius: 0;
    }

    .hero-slide-content {
        padding: 5.75rem 1rem 1rem;
    }

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

    .hero-copy .lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-copy h1 {
        font-size: clamp(1.55rem, 7.4vw, 2.35rem);
        line-height: 1.12;
        text-wrap: balance;
    }

    .hero-actions {
        gap: 0.65rem;
        margin-top: 1.2rem;
    }

    .hero-actions .button {
        flex: 1 1 100%;
        justify-content: center;
        min-width: 0;
        text-align: center;
    }

    .hero-audience {
        gap: 0.55rem;
        margin-top: 1.2rem;
        margin-bottom: 0;
    }

    .hero-audience span {
        padding: 0.58rem 0.75rem;
        font-size: 0.92rem;
    }

    .hero-note {
        padding: 1rem;
        border-radius: 20px;
    }

    .program-chip {
        padding: 0.9rem 1rem;
        border-radius: 22px;
    }

    .program-panel {
        border-radius: 24px;
        gap: 0.75rem;
    }

    .program-panel-side {
        border-radius: 22px;
        padding: 1rem;
    }

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

    .service-program-card .check-list {
        padding: 0.9rem 0.9rem 0.9rem 1.8rem;
    }

    .program-stage {
        min-height: 430px;
    }

    .why-detail-stage {
        min-height: auto;
    }

    .testimonial-track {
        min-height: auto;
    }

    .success-spotlight-grid,
    .success-metric-grid {
        grid-template-columns: 1fr;
    }

    .success-spotlight-card,
    .success-metric-card {
        min-height: auto;
    }

    .success-fan {
        display: grid;
        gap: 0.75rem;
        min-height: auto;
    }

    .success-fan-card {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        min-height: 250px;
        padding: 1.35rem;
        transform: none;
    }

    .success-fan-card p {
        font-size: clamp(1.15rem, 6vw, 1.45rem);
    }

    .success-fan-card.active {
        transform: translateY(-6px);
    }

    .insights-scroll {
        grid-auto-columns: minmax(82%, 1fr);
        padding-bottom: 0.75rem;
    }

    .insight-card {
        min-height: 230px;
    }

    .why-card-trigger {
        padding: 0.95rem;
        border-radius: 22px;
    }

    .why-detail-card,
    .why-comparison-card {
        padding: 1.15rem;
        border-radius: 24px;
    }

    .why-detail-copy h3 {
        font-size: clamp(1.45rem, 8vw, 2rem);
    }

    .why-proof-panel {
        min-height: auto;
        gap: 0.75rem;
    }

    .why-proof-list {
        gap: 0.6rem;
    }

    .why-proof-list li,
    .why-contrast-list li {
        align-items: flex-start;
        padding: 0.8rem 0.9rem;
    }

    .audience-node,
    .audience-spot {
        border-radius: 22px;
    }

    .audience-spot-side {
        border-radius: 22px;
        padding: 1rem;
    }

    .audience-wheel {
        width: min(100%, 380px);
        --audience-orbit-radius: 9.6rem;
    }

    .audience-wheel-core {
        width: 7.6rem;
        height: 7.6rem;
    }

    .audience-node {
        width: 7rem;
        min-height: 7rem;
    }

    .domain-galaxy {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .domain-feature-card,
    .domain-media-card {
        border-radius: 22px;
    }

    .motion-step,
    .motion-gallery,
    .motion-frame,
    .motion-badge {
        border-radius: 22px;
    }

    .motion-step {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 0.9rem 1rem;
    }

    .motion-step:hover {
        transform: translateY(-4px);
    }

    .motion-gallery-head {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .audience-wheel {
        display: grid;
        width: 100%;
        aspect-ratio: auto;
        gap: 0.65rem;
    }

    .audience-wheel-ring,
    .audience-wheel-core {
        display: none;
    }

    .audience-node {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        min-height: auto;
        animation: none;
        transform: none;
    }
}

.hero,
.hero-slider,
.hero-slides,
.hero-slide,
.hero-slide-content {
    min-height: 100vh;
    min-height: 100dvh;
}
