:root {
    --color-bg: #f5f7fa;
    --color-bg-alt: #ffffff;
    --color-text: #0f172a;
    --color-text-soft: #475569;
    --color-green: #00c853;
    --color-red: #e8153a;
    --color-blue: #2563eb;
    --color-orange: #f59e0b;
    --color-kariyer: #06b6d4;
    --color-avm: #5b4b8a;
    --color-border: rgba(15, 23, 42, 0.08);

    --font-primary: 'Outfit', 'Inter', sans-serif;
    --font-display: 'Space Grotesk', 'Outfit', sans-serif;

    --shadow-glass: 0 8px 32px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
    --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
    touch-action: none;
}

.skip-link {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 10000;
    transform: translate(-50%, -180%);
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00c853 0%, #06b6d4 100%);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
    transition: transform 0.3s ease;
}

.skip-link:focus {
    transform: translate(-50%, 0);
}

/* ========================================
   Cinematic Noise Overlay
   ======================================== */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}



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

.btn,
.nav-link,
.nav-toggle,
.platform-card {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

:where(a, button, summary, [tabindex]):focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.6);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   Mesh Gradient Dynamic Background
   ======================================== */
.mesh-bg {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    background-color: var(--color-bg);
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: meshFlow 20s infinite alternate ease-in-out;
}

.mesh-green {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle at center, var(--color-green) 0%, transparent 60%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.mesh-turquoise {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle at center, var(--color-kariyer) 0%, transparent 60%);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.mesh-red {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle at center, var(--color-red) 0%, transparent 60%);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

.mesh-orange {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle at center, var(--color-orange) 0%, transparent 60%);
    top: -20%;
    right: 20%;
    animation-delay: -15s;
}

.mesh-glass {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    background: rgba(245, 247, 250, 0.4);
    z-index: 1;
}

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

    50% {
        transform: translate(5vw, 10vh) scale(1.1) rotate(10deg);
    }

    100% {
        transform: translate(-10vw, -5vh) scale(0.9) rotate(-5deg);
    }
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 100;
    transition: top 0.4s ease, transform 0.4s ease;
    padding: 0;
}

.header.scrolled {
    top: 12px;
}

.header-container {
    width: min(calc(100% - 48px), 1400px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 14px 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.56) 100%);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

/* Base Logo Styles */
.nav-logo,
.platform-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    line-height: 1;
}

.nav-logo {
    font-size: 1.7rem;
}

.logo-care {
    color: var(--color-text);
}

.logo-var {
    color: var(--color-green);
    margin-right: 0.05em;
}

.platform-card.card-tv .platform-logo .logo-var {
    color: var(--color-red);
}

.platform-card.card-career .platform-logo .logo-var {
    color: var(--color-kariyer);
}

.platform-card.card-food .platform-logo .logo-var {
    color: var(--color-orange);
}

.platform-card.card-avm .platform-logo .logo-var {
    color: var(--color-avm);
}

.logo-tv {
    color: #fff;
    background: var(--color-red);
    font-size: 0.75em;
    padding: 0.1em 0.3em;
    border-radius: 4px;
    margin-left: 0.1em;
    box-shadow: 0 4px 12px rgba(232, 21, 58, 0.3);
}

.logo-kariyer {
    color: #fff;
    background: var(--color-kariyer);
    font-size: 0.75em;
    padding: 0.1em 0.3em;
    border-radius: 4px;
    margin-left: 0.1em;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
    /* Turquoise shadow */
}

.logo-yemek {
    color: #fff;
    background: var(--color-orange);
    font-size: 0.75em;
    padding: 0.1em 0.3em;
    border-radius: 4px;
    margin-left: 0.1em;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.logo-avm {
    color: #fff;
    background: linear-gradient(135deg, #6f5ca8 0%, #433463 100%);
    font-size: 0.75em;
    padding: 0.1em 0.3em;
    border-radius: 4px;
    margin-left: 0.1em;
    box-shadow: 0 4px 12px rgba(91, 75, 138, 0.32);
}

.logo-hub {
    color: var(--color-text-soft);
    font-size: 0.6em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 0.3em;
    padding-left: 0.3em;
    border-left: 1px solid var(--color-border);
}

.brand-mark {
    display: inline;
    white-space: nowrap;
    font-family: inherit;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: none;
    vertical-align: baseline;
}

.brand-mark-care {
    color: var(--color-text);
}

.brand-mark-var {
    color: var(--color-green);
}

.brand-mark:has(.brand-mark-tv) .brand-mark-var {
    color: var(--color-red);
}

.brand-mark:has(.brand-mark-kariyer) .brand-mark-var {
    color: var(--color-kariyer);
}

.brand-mark:has(.brand-mark-yemek) .brand-mark-var {
    color: var(--color-orange);
}

.brand-mark:has(.brand-mark-avm) .brand-mark-var {
    color: var(--color-avm);
}

.brand-mark-addon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.14em;
    padding: 0.14em 0.34em 0.16em;
    border-radius: 0.32em;
    color: #fff;
    font-size: 0.8em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    vertical-align: middle;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.brand-mark-tv {
    background: var(--color-red);
    box-shadow: 0 10px 24px rgba(232, 21, 58, 0.24);
}

.brand-mark-kariyer {
    background: var(--color-kariyer);
    box-shadow: 0 10px 24px rgba(6, 182, 212, 0.24);
}

.brand-mark-yemek {
    background: var(--color-orange);
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.24);
}

.brand-mark-avm {
    background: linear-gradient(135deg, #6f5ca8 0%, #433463 100%);
    box-shadow: 0 10px 24px rgba(91, 75, 138, 0.24);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.42);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--color-text-soft);
    font-size: 0.92rem;
    letter-spacing: -0.03em;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text);
    background: rgba(15, 23, 42, 0.05);
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-nav {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.btn-nav:hover {
    background: linear-gradient(135deg, #00c853 0%, #06b6d4 45%, #2563eb 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(6, 182, 212, 0.26);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-nav-mobile {
    display: none;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    border: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-backdrop.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 60px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-soft);
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.badge-ring {
    width: 6px;
    height: 6px;
    background: var(--color-blue);
    border-radius: 50%;
    animation: pings 2s infinite;
}

@keyframes pings {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-text);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-soft);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-cta-primary {
    color: #fff;
    background: linear-gradient(135deg, #00c853 0%, #06b6d4 45%, #2563eb 100%);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.22);
}

.hero-cta-secondary {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-cta:hover {
    transform: translateY(-3px);
}

.hero-cta-primary:hover {
    box-shadow: 0 24px 54px rgba(6, 182, 212, 0.3);
}

.hero-mobile-showcase {
    display: none;
}

.hero-scroll {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-text-soft);
    border-radius: 20px;
    position: relative;
    opacity: 0.6;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-text-soft);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* ========================================
   Word Reveal Animations
   ======================================== */
.reveal-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.reveal-word>span,
.reveal-word {
    display: inline-block;
}

.animate-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Base Card Animations */
.animate-reveal-card {
    opacity: 0;
    transform: perspective(1000px) translateY(80px) rotateX(-10deg) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-reveal-card.in-view {
    opacity: 1;
    transform: perspective(1000px) translateY(0) rotateX(0deg) scale(1);
}

/* ========================================
   Marquee Infinite Transition
   ======================================== */
.marquee-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    background: transparent;
    border-top: 1px solid rgba(15, 23, 42, 0.03);
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
    margin-bottom: 40px;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    /* equal to gap for seamless loop */
    animation: scroll-marquee 25s linear infinite;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-soft);
    letter-spacing: -0.02em;
    opacity: 0.15;
    /* Subtle ghost feel */
    transition: opacity 0.5s fade;
}

.marquee-section:hover .marquee-content {
    opacity: 0.4;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

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

.marquee-dot {
    color: var(--color-kariyer);
}

/* ========================================
   Bento Box Ecosystem Layout
   ======================================== */
.ecosystem-section {
    position: relative;
    padding: 80px 24px 140px;
    z-index: 5;
    background: transparent;
    /* Changed from var(--color-bg-alt) to let mesh show! */
    /* Removed the buggy margin-top: 100vh gap */
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-soft);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-header--narrow {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.section-header--narrow .section-desc {
    max-width: 700px;
}

.manifesto-section {
    position: relative;
    z-index: 5;
    padding: 72px 24px 40px;
}

.manifesto-badge {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56)),
        radial-gradient(circle at 0% 50%, rgba(0, 200, 83, 0.14), transparent 55%);
    border-color: rgba(255, 255, 255, 0.92);
    color: rgba(51, 65, 85, 0.92);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.manifesto-badge .badge-ring {
    background: var(--color-green);
    animation: pings-green 2s infinite;
}

@keyframes pings-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 200, 83, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.manifesto-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 40px 36px 38px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.manifesto-card::before {
    content: none;
}

.manifesto-card:hover {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(148, 163, 184, 0.32);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.manifesto-index {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 34px;
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--color-green);
}

.manifesto-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--color-text);
}

.manifesto-card p {
    position: relative;
    z-index: 1;
    color: rgba(71, 85, 105, 0.92);
    font-size: 0.98rem;
    line-height: 1.75;
}

.metrics-section {
    position: relative;
    z-index: 5;
    padding: 0 24px 84px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.metric-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 32px 34px 30px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.metric-panel::before {
    content: none;
}

.metric-panel:hover {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(148, 163, 184, 0.32);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.metric-value {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.06em;
    color: var(--color-text);
}

.metric-label {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 250px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.7;
    text-transform: uppercase;
    color: rgba(71, 85, 105, 0.9);
}

.features-section,
.roadmap-section,
.press-section,
.volunteer-section,
.faq-section {
    position: relative;
    z-index: 5;
    padding: 0 24px 110px;
}

.roadmap-section .section-title {
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.feature-tile {
    position: relative;
    overflow: hidden;
    min-height: 312px;
    border-radius: 32px;
    padding: 34px 32px 36px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        0 28px 70px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}

.feature-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 38%),
        radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.3), transparent 54%);
    pointer-events: none;
}

.feature-tile:hover {
    transform: translateY(-10px);
    box-shadow:
        0 42px 90px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.feature-green {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.84)),
        radial-gradient(circle at 100% 0%, rgba(0, 200, 83, 0.16), transparent 48%);
}

.feature-red {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 241, 242, 0.86)),
        radial-gradient(circle at 100% 0%, rgba(232, 21, 58, 0.16), transparent 48%);
}

.feature-blue {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 254, 255, 0.86)),
        radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.18), transparent 48%);
}

.feature-orange {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 235, 0.88)),
        radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.18), transparent 48%);
}

.feature-tag {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 64px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: none;
    box-shadow: none;
}

.feature-tag .brand-mark {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1em;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    vertical-align: middle;
}

.feature-tag .brand-mark-care,
.feature-tag .brand-mark-var {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.feature-tag .brand-mark-addon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.18em;
    padding: 0.14em 0.42em 0.16em;
    border-radius: 0.32em;
    font-size: 0.7em;
    line-height: 1;
    transform: translateY(-0.03em);
    vertical-align: middle;
}

.feature-green .feature-tag {
    color: var(--color-green);
}

.feature-red .feature-tag {
    color: var(--color-red);
}

.feature-blue .feature-tag {
    color: var(--color-kariyer);
}

.feature-orange .feature-tag {
    color: var(--color-yemek);
}

.feature-avm {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(244, 240, 255, 0.48) 100%);
}

.feature-avm .feature-tag {
    color: var(--color-avm);
}

.feature-tile h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--color-text);
}

.feature-tile p {
    position: relative;
    z-index: 1;
    color: var(--color-text-soft);
    font-size: 0.98rem;
    line-height: 1.8;
}

.roadmap-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-top: 72px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 6%;
    right: 6%;
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.roadmap-timeline::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 6%;
    width: 0;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00c853 0%, #06b6d4 45%, #2563eb 72%, #e8153a 100%);
    box-shadow:
        0 0 24px rgba(6, 182, 212, 0.25),
        0 0 48px rgba(0, 200, 83, 0.16);
    transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-timeline.in-view::after {
    width: 88%;
}

.roadmap-step {
    position: relative;
    border-radius: 32px;
    padding: 34px 30px 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7)),
        radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.12), transparent 50%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 24px 70px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.roadmap-step::before {
    content: '';
    position: absolute;
    top: -44px;
    left: 32px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c853, #06b6d4);
    border: 5px solid rgba(255, 255, 255, 0.96);
    box-shadow:
        0 0 0 8px rgba(0, 200, 83, 0.1),
        0 16px 32px rgba(15, 23, 42, 0.12);
    animation: roadmapNodePulse 2.8s ease-in-out infinite;
}

.roadmap-step::after {
    content: '';
    position: absolute;
    top: -54px;
    left: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.3), rgba(6, 182, 212, 0));
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.roadmap-step:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 36px 90px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.roadmap-step:hover::after,
.roadmap-step.in-view::after {
    opacity: 1;
    transform: scale(1);
}

.roadmap-phase {
    display: inline-flex;
    margin: 0 0 54px 28px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-green);
}

.roadmap-step h3 {
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--color-text);
}

.roadmap-step p {
    color: var(--color-text-soft);
    font-size: 0.98rem;
    line-height: 1.8;
}

.roadmap-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(255, 255, 255, 0.94);
    box-shadow:
        0 16px 32px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text);
}

@keyframes roadmapNodePulse {
    0% {
        box-shadow:
            0 0 0 8px rgba(0, 200, 83, 0.08),
            0 16px 32px rgba(15, 23, 42, 0.12);
    }

    50% {
        box-shadow:
            0 0 0 14px rgba(6, 182, 212, 0.14),
            0 20px 40px rgba(15, 23, 42, 0.14);
    }

    100% {
        box-shadow:
            0 0 0 8px rgba(0, 200, 83, 0.08),
            0 16px 32px rgba(15, 23, 42, 0.12);
    }
}

.roadmap-shell {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.roadmap-shell::before {
    content: none;
}

.roadmap-line {
    display: none;
}

.roadmap-line-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #00c853 0%, #06b6d4 42%, #2563eb 72%, #e8153a 100%);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-shell.in-view .roadmap-line-fill {
    width: 100%;
}

.roadmap-line-dot {
    display: none;
}

.roadmap-line-dot-1 {
    left: 0%;
    background: var(--color-green);
}

.roadmap-line-dot-2 {
    left: 33.33%;
    background: var(--color-kariyer);
}

.roadmap-line-dot-3 {
    left: 66.66%;
    background: var(--color-blue);
}

.roadmap-line-dot-4 {
    left: 100%;
    background: var(--color-red);
}

.roadmap-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.roadmap-card {
    --roadmap-accent: var(--color-green);
    position: relative;
    overflow: hidden;
    min-height: 364px;
    padding: 28px 26px 26px;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.roadmap-card::before {
    content: none;
}

.roadmap-card:hover {
    border-color: rgba(148, 163, 184, 0.38);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.08);
}

.roadmap-card:hover::before {
    opacity: 1;
}

.roadmap-card-green {
    --roadmap-accent: var(--color-green);
}

.roadmap-card-cyan {
    --roadmap-accent: var(--color-kariyer);
}

.roadmap-card-blue {
    --roadmap-accent: var(--color-blue);
}

.roadmap-card-red {
    --roadmap-accent: var(--color-red);
}

.roadmap-card-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 52px;
}

.roadmap-step-no {
    font-family: var(--font-display);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: rgba(100, 116, 139, 0.8);
}

.roadmap-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.6);
}

.roadmap-chip::before {
    content: none;
}

.roadmap-card h3,
.roadmap-card p,
.roadmap-points {
    position: relative;
    z-index: 1;
}

.roadmap-card h3 {
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 0.96;
    letter-spacing: -0.06em;
    color: var(--color-text);
}

.roadmap-card p {
    color: var(--color-text-soft);
    font-size: 0.98rem;
    line-height: 1.75;
}

.roadmap-points {
    display: grid;
    gap: 12px;
    margin-top: 30px;
    list-style: none;
}

.roadmap-points li {
    position: relative;
    padding-left: 24px;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.55;
}

.roadmap-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid rgba(148, 163, 184, 0.24);
    background: rgba(100, 116, 139, 0.36);
    box-shadow: none;
}

.press-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 1.25fr) minmax(320px, 1fr);
    gap: 40px;
    overflow: hidden;
    border-radius: 40px;
    padding: 48px;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 200, 83, 0.1), transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.12), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 30px 90px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
}

.press-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 50% 130%, rgba(0, 200, 83, 0.08), transparent 48%);
    pointer-events: none;
}

.press-copy,
.press-cards {
    position: relative;
    z-index: 1;
}

.press-copy .section-title {
    text-align: left;
    max-width: 620px;
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.press-copy .section-desc {
    margin: 0;
    max-width: 540px;
}

.press-cards {
    display: grid;
    gap: 16px;
}

.press-card {
    border-radius: 26px;
    padding: 26px 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.press-card>span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-green);
}

.press-card p {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.15;
    letter-spacing: -0.05em;
    font-weight: 700;
    color: var(--color-text);
}

.press-card p .brand-mark {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    vertical-align: middle;
}

.press-card p .brand-mark-care,
.press-card p .brand-mark-var {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.press-card p .brand-mark-addon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.18em;
    padding: 0.08em 0.34em 0.12em;
    font-size: 0.68em;
    line-height: 1;
    transform: translateY(-0.08em);
    vertical-align: middle;
}

.volunteer-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    overflow: hidden;
    border-radius: 40px;
    padding: 48px 52px;
    background:
        radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.34), transparent 28%),
        radial-gradient(circle at 85% 120%, rgba(0, 200, 83, 0.22), transparent 40%),
        linear-gradient(135deg, #030712 0%, #0f172a 52%, #020617 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow:
        0 44px 100px rgba(15, 23, 42, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.volunteer-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.08) calc(100% - 1px), rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.2), transparent 40%);
    background-size: 80px 100%, 100% 100%, 100% 100%;
    opacity: 0.5;
    pointer-events: none;
}

.volunteer-copy {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.volunteer-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #fff;
}

.volunteer-desc {
    margin-top: 20px;
    max-width: 600px;
    color: rgba(203, 213, 225, 0.88);
    font-size: 1rem;
    line-height: 1.8;
}

.volunteer-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-shrink: 0;
    min-height: 72px;
    padding: 18px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00c853 0%, #06b6d4 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    box-shadow: 0 28px 60px rgba(0, 200, 83, 0.24);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.volunteer-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 70px rgba(6, 182, 212, 0.28);
}

.faq-list {
    display: grid;
    gap: 18px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
        radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.08), transparent 44%);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 24px 70px rgba(15, 23, 42, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 32px;
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--color-text);
}

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

.faq-item summary::after {
    content: '+';
    display: grid;
    place-items: center;
    margin-left: auto;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.94);
    color: var(--color-green);
    font-size: 1.7rem;
    line-height: 1;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.faq-item[open] summary::after {
    content: '×';
    background: linear-gradient(135deg, #00c853 0%, #06b6d4 100%);
    color: #fff;
    transform: rotate(180deg);
}

.faq-item p {
    margin: 0;
    padding: 0 32px 30px;
    color: var(--color-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item summary .brand-mark,
.faq-item p .brand-mark {
    margin-right: 0.16em;
}

/* BENTO GRID SYSTEM */
.ecosystem-canvas {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: 340px 380px;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Hyper-Realistic Glassmorphism 2.0 */
.platform-card {
    position: relative;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 100%),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.5), transparent 45%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transition: transform 0.2s linear, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0) rotateY(0);
    overflow: hidden;
}

/* Inner Edge Light & Noise */
.platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

.platform-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    mix-blend-mode: overlay;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease, transform 0.1s linear;
    pointer-events: none;
    z-index: 1;
}

.glow-green {
    background: radial-gradient(circle, rgba(0, 200, 83, 0.22) 0%, transparent 70%);
}

.glow-red {
    background: radial-gradient(circle, rgba(232, 21, 58, 0.2) 0%, transparent 70%);
}

.glow-blue {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
}

.glow-orange {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
}

.glow-avm {
    background: radial-gradient(circle, rgba(91, 75, 138, 0.22) 0%, transparent 70%);
}

.card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card Decorative Arts (Premium Lush Feel) */
.card-bg-abstract {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    border-radius: inherit;
    opacity: 0.8;
}

.bg-main {
    background: radial-gradient(circle at 100% 100%, rgba(0, 200, 83, 0.08) 0%, transparent 60%);
}

.bg-tv {
    background: radial-gradient(circle at 50% 120%, rgba(232, 21, 58, 0.1) 0%, transparent 70%);
}

.bg-career {
    background: linear-gradient(180deg, transparent 40%, rgba(6, 182, 212, 0.08) 100%);
}

.bg-food {
    background: radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
}

.bg-avm {
    background:
        radial-gradient(circle at 100% 0%, rgba(91, 75, 138, 0.14) 0%, transparent 52%),
        radial-gradient(circle at 0% 100%, rgba(120, 92, 180, 0.08) 0%, transparent 50%);
}

.card-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

/* Mini Badges */
.card-badge {
    position: relative;
    display: none;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    align-self: flex-start;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
}

.card-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.8) 40%, transparent 70%);
    opacity: 0.55;
    transform: translateX(-60%);
    pointer-events: none;
}

.badge-green::before,
.badge-blue::before,
.badge-orange::before,
.badge-avm::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 999px;
    flex-shrink: 0;
}

.badge-green {
    color: #00b84f;
    background:
        linear-gradient(135deg, rgba(0, 200, 83, 0.18), rgba(255, 255, 255, 0.78)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        0 14px 32px rgba(0, 200, 83, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.badge-green::before {
    background: linear-gradient(135deg, #00c853, #06b6d4);
    box-shadow: 0 0 0 5px rgba(0, 200, 83, 0.12), 0 0 16px rgba(0, 200, 83, 0.55);
}

.badge-red {
    color: #e8153a;
    background:
        linear-gradient(135deg, rgba(232, 21, 58, 0.14), rgba(255, 255, 255, 0.8)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        0 14px 32px rgba(232, 21, 58, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.badge-blue {
    color: #0891b2;
    background:
        linear-gradient(135deg, rgba(6, 182, 212, 0.16), rgba(255, 255, 255, 0.8)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        0 14px 32px rgba(6, 182, 212, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.badge-blue::before {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    box-shadow: 0 0 0 5px rgba(6, 182, 212, 0.12), 0 0 16px rgba(6, 182, 212, 0.5);
}

.badge-orange {
    color: #ea8a00;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(255, 255, 255, 0.82)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        0 14px 32px rgba(245, 158, 11, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.badge-orange::before {
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.12), 0 0 16px rgba(245, 158, 11, 0.5);
}

.badge-avm {
    color: #5b4b8a;
    background:
        linear-gradient(135deg, rgba(91, 75, 138, 0.16), rgba(255, 255, 255, 0.82)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        0 14px 32px rgba(91, 75, 138, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.badge-avm::before {
    background: linear-gradient(135deg, #6f5ca8, #433463);
    box-shadow: 0 0 0 5px rgba(91, 75, 138, 0.12), 0 0 16px rgba(91, 75, 138, 0.5);
}

.flex-center {
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #e8153a, #fb7185);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 5px rgba(232, 21, 58, 0.1), 0 0 16px rgba(232, 21, 58, 0.55);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 21, 58, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(232, 21, 58, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232, 21, 58, 0);
    }
}

/* Layout Mapping */
.card-main {
    grid-column: 1 / 4;
    grid-row: 1;
}

.card-career {
    grid-column: 4 / 7;
    grid-row: 1;
}

/* Spans entire right column */
.card-food {
    grid-column: 1 / 3;
    grid-row: 2;
}

.card-tv {
    grid-column: 3 / 5;
    grid-row: 2;
}

.card-avm {
    grid-column: 5 / 7;
    grid-row: 2;
}

/* Typography */
.card-content-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-logo {
    margin-bottom: 0;
    /* Reset since it's in card-top now */
    min-width: 0;
    max-width: 100%;
    flex-wrap: nowrap;
    row-gap: 0;
}

.card-bottom {
    margin-top: auto;
    padding-top: 18px;
    padding-bottom: 16px;
}

.platform-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.platform-desc {
    color: var(--color-text-soft);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Beautiful Pill Buttons inside cards */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 24px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.btn-pill svg {
    transition: transform 0.3s;
}

.text-green {
    color: var(--color-green);
}

.text-red {
    color: var(--color-red);
}

.text-blue {
    color: var(--color-kariyer);
}

.text-orange {
    color: var(--color-orange);
}

.text-avm {
    color: var(--color-avm);
}

.platform-card:hover {
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 1);
    background:
        linear-gradient(145deg, #ffffff 0%, #ffffff 58%, #f8fafc 100%),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 1), transparent 45%);
    border-color: rgba(255, 255, 255, 1);
    transform: perspective(1200px) translateY(-5px) !important;
}

.card-main:hover {
    background:
        linear-gradient(145deg, #ffffff 0%, #f7fffb 62%, #ecfdf5 100%),
        radial-gradient(circle at 100% 0%, rgba(0, 200, 83, 0.18), transparent 44%);
}

.card-tv:hover {
    background:
        linear-gradient(145deg, #ffffff 0%, #fff7f8 62%, #fff1f2 100%),
        radial-gradient(circle at 100% 0%, rgba(232, 21, 58, 0.18), transparent 44%);
}

.card-career:hover {
    background:
        linear-gradient(145deg, #ffffff 0%, #f6feff 62%, #ecfeff 100%),
        radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.18), transparent 44%);
}

.card-food:hover {
    background:
        linear-gradient(145deg, #ffffff 0%, #fffdfa 62%, #fffbeb 100%),
        radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.2), transparent 44%);
}

.card-avm:hover {
    background:
        linear-gradient(145deg, #ffffff 0%, #f9f7ff 62%, #f2ecff 100%),
        radial-gradient(circle at 100% 0%, rgba(91, 75, 138, 0.2), transparent 44%);
}

.platform-card:hover .card-glow {
    opacity: 0.75;
}

.platform-card:hover .btn-pill {
    background: var(--color-text);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.platform-card:hover .btn-pill.text-green {
    background: var(--color-green);
}

.platform-card:hover .btn-pill.text-red {
    background: var(--color-red);
}

.platform-card:hover .btn-pill.text-blue {
    background: var(--color-kariyer);
}

.platform-card:hover .btn-pill.text-orange {
    background: var(--color-orange);
}

.platform-card:hover .btn-pill.text-avm {
    background: linear-gradient(135deg, #6f5ca8 0%, #433463 100%);
}

.platform-card:hover .btn-pill svg {
    transform: translateX(4px);
}

/* ========================================
   Vision Section - Deep Cinematic Dark
   ======================================== */
.vision {
    padding: 180px 24px 156px;
    background:
        radial-gradient(ellipse at 50% -10%, rgba(37, 99, 235, 0.22) 0%, rgba(6, 182, 212, 0.08) 24%, transparent 58%),
        radial-gradient(ellipse at 50% 110%, rgba(0, 200, 83, 0.16) 0%, rgba(0, 200, 83, 0.05) 24%, transparent 60%),
        linear-gradient(180deg, #020617 0%, #050814 45%, #030712 100%);
    color: #fff;
    text-align: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Gigantic Ambient Glow */
.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1600px, 84vw);
    height: 560px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.46) 0%, rgba(6, 182, 212, 0.16) 28%, transparent 72%);
    transform: translateX(-50%) translateY(-52%);
    filter: blur(6px);
    opacity: 0.95;
    pointer-events: none;
    z-index: 1;
}

/* Floor Ambient Glow */
.vision::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: min(1400px, 78vw);
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(0, 200, 83, 0.22) 0%, rgba(6, 182, 212, 0.06) 26%, transparent 72%);
    transform: translateX(-50%) translateY(52%);
    filter: blur(8px);
    pointer-events: none;
    z-index: 1;
}

/* Technical Overlay Grid */
.vision-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.95;
    mask-image: radial-gradient(circle at center, black 42%, transparent 96%);
    -webkit-mask-image: radial-gradient(circle at center, black 42%, transparent 96%);
    pointer-events: none;
    z-index: 1;
}

.vision-container {
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.vision-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-dark {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.68), rgba(30, 41, 59, 0.44));
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: rgba(226, 232, 240, 0.82);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.vision-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 6vw, 6.4rem);
    font-weight: 800;
    line-height: 0.94;
    margin-bottom: 30px;
    letter-spacing: -0.05em;
    text-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.gradient-text-alt {
    background: linear-gradient(90deg, #7dd3fc 0%, #60a5fa 30%, #34d399 72%, #00c853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 18px 32px rgba(6, 182, 212, 0.18));
}

.vision-desc {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: rgba(203, 213, 225, 0.82);
    max-width: 720px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 52px;
}

/* Minimalist Stats */
.vision-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.08), transparent 40%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 190px;
    padding: 18px 36px;
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.7rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 0%, #dbe4ef 55%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.stat-divider {
    width: 1px;
    height: 64px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 44px 24px 32px;
    text-align: center;
    color: var(--color-text-soft);
    position: relative;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 200, 83, 0.12), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(245, 247, 250, 1) 0%, rgba(239, 244, 251, 0.96) 100%);
    overflow: hidden;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.6));
    box-shadow:
        0 16px 34px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--color-text);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.76));
    box-shadow:
        0 22px 44px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.footer-link-brand {
    gap: 0;
    border-color: rgba(0, 200, 83, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7)),
        radial-gradient(circle at top right, rgba(0, 200, 83, 0.14), transparent 50%);
    box-shadow:
        0 18px 40px rgba(0, 200, 83, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: -0.04em;
}

.footer-link-care {
    color: var(--color-text);
    font-weight: 800;
}

.footer-link-var {
    color: var(--color-green);
    font-weight: 800;
}

.footer p {
    font-size: 0.96rem;
    font-weight: 500;
    color: rgba(71, 85, 105, 0.92);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-legal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: rgba(71, 85, 105, 0.95);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.footer-legal-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 450;
    width: min(calc(100% - 48px), 1180px);
    padding: 18px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7)),
        radial-gradient(circle at 0% 50%, rgba(0, 200, 83, 0.12), transparent 36%),
        radial-gradient(circle at 100% 50%, rgba(6, 182, 212, 0.12), transparent 40%);
    box-shadow:
        0 34px 90px rgba(15, 23, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-50%, 24px, 0);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(-50%, 0, 0);
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-green);
}

.cookie-consent__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c853, #06b6d4);
    box-shadow: 0 0 0 6px rgba(0, 200, 83, 0.1);
}

.cookie-consent__text {
    max-width: 620px;
}

.cookie-consent__title {
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--color-text);
}

.cookie-consent__desc {
    color: var(--color-text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__button,
.cookie-consent__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    cursor: pointer;
}

.cookie-consent__button {
    border: 0;
}

.cookie-consent__button--accept {
    color: #fff;
    background: linear-gradient(135deg, #00c853 0%, #06b6d4 100%);
    box-shadow: 0 18px 38px rgba(6, 182, 212, 0.22);
}

.cookie-consent__button--reject,
.cookie-consent__link {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-page-main {
    position: relative;
    z-index: 5;
    padding: 148px 24px 96px;
}

.legal-hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1.1fr);
    gap: 40px;
    align-items: center;
}

.legal-hero-copy {
    max-width: 620px;
}

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.07em;
    color: var(--color-text);
    margin-bottom: 24px;
}

.legal-hero-desc {
    color: var(--color-text-soft);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 34px;
}

.legal-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.legal-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 16px 36px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
}

.legal-meta-pill span {
    color: var(--color-green);
}

.legal-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.legal-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 18px 32px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.legal-hero-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #00c853 0%, #06b6d4 55%, #2563eb 100%);
}

.legal-hero-btn-secondary {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.95);
}

.legal-visual-card {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        0 44px 120px rgba(15, 23, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.legal-visual-card img {
    width: 100%;
    height: 100%;
    min-height: 660px;
    object-fit: cover;
    display: block;
}

.legal-visual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.08) 0%, rgba(2, 6, 23, 0.72) 100%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 46%);
}

.legal-visual-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.legal-visual-caption p {
    max-width: 360px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.06em;
}

.legal-visual-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legal-content-shell {
    max-width: 1400px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.legal-toc-card {
    position: sticky;
    top: 132px;
    border-radius: 32px;
    padding: 30px 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
        radial-gradient(circle at 100% 0%, rgba(0, 200, 83, 0.08), transparent 50%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 26px 70px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.legal-toc-title {
    margin-bottom: 20px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-green);
}

.legal-toc-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.legal-toc-link::after {
    content: '↘';
    color: rgba(71, 85, 105, 0.85);
}

.legal-article-stack {
    display: grid;
    gap: 24px;
}

.legal-info-card,
.legal-reference-panel {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 42px 40px 44px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
        radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.1), transparent 50%);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 28px 80px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.legal-step-label {
    display: inline-flex;
    margin-bottom: 36px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-green);
}

.legal-info-card h2,
.legal-reference-panel h2 {
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: var(--color-text);
}

.legal-info-card p,
.legal-reference-panel p,
.legal-check-list li {
    color: var(--color-text-soft);
    font-size: 0.98rem;
    line-height: 1.85;
}

.legal-check-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.legal-check-list li {
    position: relative;
    padding-left: 24px;
}

.legal-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c853, #06b6d4);
    box-shadow: 0 0 0 5px rgba(0, 200, 83, 0.1);
}

.legal-inline-link {
    color: var(--color-green);
    font-weight: 800;
}

/* ========================================
   404 Page
   ======================================== */
.error-page-main {
    position: relative;
    z-index: 5;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
}

.error-panel {
    position: relative;
    width: min(100%, 980px);
    overflow: hidden;
    border-radius: 42px;
    padding: 72px 56px 60px;
    text-align: center;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 200, 83, 0.12), transparent 35%),
        radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.14), transparent 36%),
        radial-gradient(circle at 50% 120%, rgba(232, 21, 58, 0.08), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.94);
    box-shadow:
        0 48px 120px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
}

.error-title {
    max-width: 760px;
    margin: 0 auto 22px;
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.08em;
    color: var(--color-text);
}

.error-desc {
    max-width: 640px;
    margin: 0 auto 40px;
    color: var(--color-text-soft);
    font-size: 1rem;
    line-height: 1.85;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ========================================
   Platform Modal Guide
   ======================================== */
.platform-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.platform-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.platform-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background:
        radial-gradient(circle at center, rgba(15, 23, 42, 0.16), rgba(2, 6, 23, 0.78)),
        rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
}

.platform-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 1080px);
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(360px, 0.9fr);
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9));
    box-shadow: 0 44px 120px rgba(2, 6, 23, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-modal.is-open .platform-modal__panel {
    transform: translateY(0) scale(1);
}

.platform-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.platform-modal__close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.platform-modal__close span:first-child {
    transform: rotate(45deg);
}

.platform-modal__close span:last-child {
    transform: rotate(-45deg);
}

.platform-modal__media {
    position: relative;
    min-height: 540px;
    overflow: hidden;
}

.platform-modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.platform-modal__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.12) 0%, rgba(2, 6, 23, 0.82) 100%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 50%);
}

.platform-modal__status {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.platform-modal__status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00c853, #06b6d4);
    box-shadow: 0 0 0 6px rgba(0, 200, 83, 0.12);
}

.platform-modal__content {
    padding: 52px 48px 44px;
}

.platform-modal__eyebrow {
    margin-bottom: 16px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-green);
}

.platform-modal__eyebrow .brand-mark {
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.platform-modal__eyebrow .brand-mark-addon {
    font-size: 0.72em;
    padding: 0.2em 0.38em 0.22em;
}

.platform-modal__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: var(--color-text);
    margin-bottom: 18px;
}

.platform-modal__desc {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--color-text-soft);
    margin-bottom: 28px;
}

.platform-modal__desc .brand-mark,
.platform-modal__list .brand-mark {
    font-size: 1.08em;
    font-weight: 800;
}

.platform-modal__desc .brand-mark-addon,
.platform-modal__list .brand-mark-addon {
    font-size: 0.76em;
    padding: 0.18em 0.34em 0.2em;
}

.platform-modal__list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
}

.platform-modal__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.72));
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--color-text);
    font-size: 0.96rem;
    line-height: 1.6;
}

.platform-modal__list-text {
    display: block;
    min-width: 0;
}

.platform-modal__list li::before {
    content: '';
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00c853, #2563eb);
    box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.08);
    flex-shrink: 0;
}

.platform-modal__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-modal__visit,
.platform-modal__ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
}

.platform-modal__visit {
    color: #fff;
    background: linear-gradient(135deg, #00c853 0%, #06b6d4 45%, #2563eb 100%);
    box-shadow: 0 22px 44px rgba(6, 182, 212, 0.22);
}

.platform-modal__ghost {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 1024px) {
    .ecosystem-canvas {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
        height: auto;
    }

    .card-main,
    .card-career,
    .card-tv,
    .card-food,
    .card-avm {
        grid-column: 1 / -1;
        /* Full width */
        grid-row: auto;
    }

    .card-career {
        min-height: 380px;
    }

    .platform-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 84px;
    }

    .noise-overlay {
        opacity: 0.02;
    }

    .mesh-blob {
        filter: blur(80px);
        opacity: 0.48;
    }

    .mesh-green {
        width: 80vw;
        height: 80vw;
        top: -8%;
        left: -24%;
    }

    .mesh-turquoise {
        width: 90vw;
        height: 90vw;
        right: -30%;
        bottom: 14%;
    }

    .mesh-red {
        width: 76vw;
        height: 76vw;
        top: 34%;
        left: 20%;
    }

    .mesh-orange {
        width: 84vw;
        height: 84vw;
        top: -18%;
        right: -24%;
    }

    .header {
        top: 0;
        padding: calc(12px + env(safe-area-inset-top)) 12px 8px;
    }

    .header.scrolled {
        top: 0;
        padding: calc(8px + env(safe-area-inset-top)) 12px 8px;
    }

    .header-container {
        width: 100%;
        padding: 10px 10px 10px 18px;
        border: 1px solid rgba(255, 255, 255, 0);
        border-radius: 999px;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
    }

    .header.scrolled .header-container {
        border-color: rgba(255, 255, 255, 0.8);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 100%),
            radial-gradient(circle at 20% 50%, rgba(0, 200, 83, 0.08), transparent 38%),
            radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.08), transparent 38%);
        box-shadow:
            0 18px 40px rgba(15, 23, 42, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-logo {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
        line-height: 1;
        margin-bottom: 18px;
    }

    .hero {
        min-height: auto;
        padding: 108px 16px 32px;
        align-items: center;
        text-align: center;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 88px;
        left: 50%;
        width: min(420px, 88vw);
        height: min(420px, 88vw);
        border-radius: 50%;
        background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(37, 99, 235, 0.10) 35%, transparent 70%);
        transform: translateX(-50%);
        filter: blur(8px);
        pointer-events: none;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        margin-top: 8px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .badge {
        margin-inline: auto;
        margin-bottom: 24px;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        padding: 6px 14px;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
        max-width: 36ch;
        margin: 0 auto 24px;
        color: #516074;
        text-align: center;
    }

    .hero-actions {
        width: 100%;
        max-width: 420px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 0 auto 20px;
    }

    .hero-cta {
        width: 100%;
        min-height: 56px;
        padding: 15px 22px;
        font-size: 0.96rem;
    }

    .hero-cta-primary {
        justify-content: space-between;
        box-shadow: 0 18px 38px rgba(6, 182, 212, 0.26);
    }

    .hero-cta-secondary {
        background: rgba(15, 23, 42, 0.04);
        border-color: rgba(15, 23, 42, 0.06);
    }

    .hero-mobile-showcase {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        max-width: 420px;
        margin-top: 6px;
        margin-inline: auto;
    }

    .hero-mini-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 16px 14px;
        border-radius: 26px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22)),
            radial-gradient(circle at top left, rgba(6, 182, 212, 0.14), transparent 55%);
        border: 1px solid rgba(255, 255, 255, 0.75);
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        text-align: center;
    }

    .hero-mini-value {
        font-family: var(--font-display);
        font-size: 1.55rem;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.04em;
        color: var(--color-text);
    }

    .hero-mini-label {
        font-size: 0.72rem;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-text-soft);
    }

    .hero-scroll {
        display: none;
    }

    .marquee-section {
        padding: 28px 0;
        margin-bottom: 8px;
    }

    .marquee-content {
        gap: 24px;
        padding-right: 24px;
        font-size: 1.35rem;
        opacity: 0.12;
        animation-duration: 18s;
    }

    .ecosystem-section {
        overflow: hidden;
        margin: 0 10px;
        padding: 64px 8px 80px;
        border-radius: 36px;
        background:
            radial-gradient(circle at 50% 0%, rgba(0, 200, 83, 0.12) 0%, transparent 38%),
            radial-gradient(circle at 100% 30%, rgba(6, 182, 212, 0.12) 0%, transparent 32%),
            radial-gradient(circle at 0% 70%, rgba(245, 158, 11, 0.08) 0%, transparent 34%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.06) 100%);
    }

    .ecosystem-section::before {
        content: '';
        position: absolute;
        inset: 12px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.72);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 40%),
            radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.55) 0%, transparent 40%);
        pointer-events: none;
    }

    .section-header {
        position: relative;
        z-index: 1;
        text-align: center;
        margin-bottom: 34px;
        padding: 0 10px;
    }

    .section-title {
        font-size: 2.35rem;
        line-height: 0.98;
        letter-spacing: -0.05em;
        margin-bottom: 12px;
        background: linear-gradient(90deg, #0f172a 0%, #0f172a 38%, #00c853 58%, #2563eb 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .section-desc {
        max-width: 34ch;
        font-size: 0.98rem;
        line-height: 1.75;
        margin: 0 auto;
        color: rgba(71, 85, 105, 0.94);
    }

    .manifesto-section {
        padding: 56px 10px 24px;
    }

    .section-header--narrow {
        max-width: none;
    }

    .manifesto-grid,
    .metrics-grid,
    .feature-grid,
    .roadmap-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 0;
    }

    .manifesto-card {
        border-radius: 24px;
        padding: 28px 24px 28px;
    }

    .manifesto-card::before {
        left: 24px;
        right: 24px;
    }

    .manifesto-index {
        margin-bottom: 28px;
        font-size: 0.72rem;
    }

    .manifesto-card h3 {
        font-size: 1.65rem;
        margin-bottom: 14px;
    }

    .manifesto-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .metrics-section {
        padding: 0 10px 58px;
    }

    .metric-panel {
        border-radius: 24px;
        padding: 26px 24px 24px;
    }

    .metric-panel::before {
        left: 24px;
        right: 24px;
    }

    .metric-value {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .metric-label {
        max-width: 280px;
        font-size: 0.7rem;
        letter-spacing: 0.14em;
        line-height: 1.65;
    }

    .features-section,
    .roadmap-section,
    .press-section,
    .volunteer-section,
    .faq-section {
        padding: 0 10px 60px;
    }

    .feature-tile {
        min-height: 252px;
        border-radius: 30px;
        padding: 28px 24px 30px;
    }

    .feature-tag {
        margin-bottom: 42px;
        font-size: 1.2rem;
    }

    .feature-tile h3 {
        font-size: 1.72rem;
        margin-bottom: 14px;
    }

    .feature-tile p {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .roadmap-timeline::before {
        top: 18px;
        bottom: 18px;
        left: 29px;
        right: auto;
        width: 8px;
        height: auto;
    }

    .roadmap-timeline::after {
        top: 18px;
        left: 29px;
        width: 8px;
        height: 0;
        transition: height 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .roadmap-timeline.in-view::after {
        width: 8px;
        height: calc(100% - 36px);
    }

    .roadmap-step {
        border-radius: 30px;
        padding: 28px 24px 30px 72px;
    }

    .roadmap-step::before {
        top: 34px;
        left: 24px;
        width: 18px;
        height: 18px;
        box-shadow:
            0 0 0 7px rgba(0, 200, 83, 0.1),
            0 14px 28px rgba(15, 23, 42, 0.1);
    }

    .roadmap-step::after {
        top: 24px;
        left: 14px;
        width: 38px;
        height: 38px;
    }

    .roadmap-phase {
        margin: 0 0 24px;
        font-size: 0.66rem;
    }

    .roadmap-step h3 {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .roadmap-step p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .roadmap-meta {
        margin-top: 22px;
        min-height: 44px;
        padding: 12px 16px;
        font-size: 0.68rem;
    }

    .roadmap-shell {
        padding: 0;
        border-radius: 0;
    }

    .roadmap-line {
        display: none;
    }

    .roadmap-line-fill {
        inset: 0 0 auto 0;
        width: 100%;
        height: 0;
        transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .roadmap-shell.in-view .roadmap-line-fill {
        width: 100%;
        height: 100%;
    }

    .roadmap-line-dot {
        left: 50%;
        width: 14px;
        height: 14px;
        border-width: 3px;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 6px rgba(15, 23, 42, 0.04);
    }

    .roadmap-line-dot-1 {
        top: 0%;
    }

    .roadmap-line-dot-2 {
        top: 33.33%;
    }

    .roadmap-line-dot-3 {
        top: 66.66%;
    }

    .roadmap-line-dot-4 {
        top: 100%;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-left: 0;
    }

    .roadmap-card {
        min-height: auto;
        padding: 24px 22px 22px;
        border-radius: 24px;
    }

    .roadmap-card::before {
        content: none;
    }

    .roadmap-card:hover {
        box-shadow:
            0 24px 70px rgba(15, 23, 42, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .roadmap-card-head {
        margin-bottom: 30px;
        gap: 14px;
    }

    .roadmap-step-no {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }

    .roadmap-chip {
        min-height: auto;
        padding: 0;
        font-size: 0.6rem;
    }

    .roadmap-chip::before {
        content: none;
    }

    .roadmap-card h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .roadmap-card p {
        font-size: 0.95rem;
        line-height: 1.72;
    }

    .roadmap-points {
        margin-top: 22px;
        gap: 10px;
    }

    .roadmap-points li {
        font-size: 0.88rem;
        line-height: 1.5;
        padding-left: 20px;
    }

    .roadmap-points li::before {
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.04);
    }

    .press-panel {
        grid-template-columns: 1fr;
        gap: 24px;
        border-radius: 32px;
        padding: 32px 24px 26px;
    }

    .press-copy .section-title {
        text-align: center;
        max-width: none;
    }

    .press-copy .section-desc {
        margin: 0 auto;
        max-width: 34ch;
    }

    .press-cards {
        gap: 14px;
    }

    .press-card {
        border-radius: 24px;
        padding: 22px 20px;
    }

    .press-card p {
        font-size: 1.18rem;
        line-height: 1.18;
    }

    .volunteer-section {
        padding-bottom: 64px;
    }

    .volunteer-panel {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        border-radius: 32px;
        padding: 34px 24px 24px;
    }

    .volunteer-panel::before {
        background-size: 64px 100%, 100% 100%, 100% 100%;
    }

    .volunteer-title {
        font-size: 2.55rem;
        line-height: 0.96;
    }

    .volunteer-desc {
        margin-top: 16px;
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .volunteer-link {
        width: 100%;
        min-height: 64px;
        justify-content: space-between;
        padding: 16px 22px;
        font-size: 0.98rem;
    }

    .faq-list {
        gap: 14px;
    }

    .faq-item {
        border-radius: 26px;
    }

    .faq-item summary {
        align-items: flex-start;
        gap: 16px;
        padding: 22px 20px;
        font-size: 1.02rem;
        line-height: 1.3;
    }

    .faq-item summary::after {
        width: 38px;
        height: 38px;
        font-size: 1.45rem;
    }

    .faq-item p {
        padding: 0 20px 22px;
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .ecosystem-canvas {
        position: relative;
        z-index: 1;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .platform-card {
        isolation: isolate;
        padding: 24px 22px 22px;
        border-radius: 32px;
        min-height: 320px;
        transform: none;
        border: 1px solid rgba(255, 255, 255, 0.78);
        box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(26px);
        -webkit-backdrop-filter: blur(26px);
    }

    .platform-card::before {
        background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.2) 32%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.9) 100%);
    }

    .platform-card::after {
        opacity: 0.035;
    }

    .platform-card .card-glow {
        top: 14%;
        left: 82%;
        width: 320px;
        height: 320px;
        opacity: 0.9;
        transform: translate(-50%, -50%);
        filter: blur(42px);
    }

    .card-main {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(236, 253, 245, 0.82) 100%);
    }

    .card-tv {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 241, 242, 0.84) 100%);
    }

    .card-career {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(236, 254, 255, 0.84) 100%);
    }

    .card-food {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 251, 235, 0.84) 100%);
    }

    .card-avm {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 240, 255, 0.86) 100%);
    }

    .card-bg-abstract {
        opacity: 1;
    }

    .bg-main {
        background:
            radial-gradient(circle at 100% 0%, rgba(0, 200, 83, 0.2) 0%, transparent 48%),
            radial-gradient(circle at 0% 100%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    }

    .bg-tv {
        background:
            radial-gradient(circle at 100% 0%, rgba(232, 21, 58, 0.16) 0%, transparent 48%),
            radial-gradient(circle at 0% 100%, rgba(244, 63, 94, 0.08) 0%, transparent 50%);
    }

    .bg-career {
        background:
            radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.18) 0%, transparent 48%),
            radial-gradient(circle at 0% 100%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    }

    .bg-food {
        background:
            radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.18) 0%, transparent 48%),
            radial-gradient(circle at 0% 100%, rgba(251, 146, 60, 0.08) 0%, transparent 50%);
    }

    .bg-avm {
        background:
            radial-gradient(circle at 100% 0%, rgba(91, 75, 138, 0.18) 0%, transparent 48%),
            radial-gradient(circle at 0% 100%, rgba(120, 92, 180, 0.08) 0%, transparent 50%);
    }

    .card-career {
        min-height: 340px;
    }

    .card-top {
        margin-bottom: 38px;
        gap: 12px;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .platform-logo {
        max-width: calc(100% - 132px);
        flex-wrap: wrap;
        row-gap: 8px;
        font-size: 1.48rem;
        filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.06));
    }

    .card-bottom {
        padding-bottom: 0;
    }

    .card-badge {
        display: inline-flex;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.72);
        border-color: rgba(15, 23, 42, 0.06);
        font-size: 0.64rem;
        letter-spacing: 0.12em;
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
    }

    .badge-green {
        background: linear-gradient(135deg, rgba(0, 200, 83, 0.14), rgba(255, 255, 255, 0.82));
    }

    .badge-red {
        background: linear-gradient(135deg, rgba(232, 21, 58, 0.12), rgba(255, 255, 255, 0.82));
    }

    .badge-blue {
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.14), rgba(255, 255, 255, 0.82));
    }

    .badge-orange {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(255, 255, 255, 0.82));
    }

    .badge-avm {
        background: linear-gradient(135deg, rgba(91, 75, 138, 0.14), rgba(255, 255, 255, 0.82));
    }

    .platform-title {
        font-size: 1.48rem;
        line-height: 1.08;
        margin-bottom: 12px;
        letter-spacing: -0.04em;
    }

    .platform-desc {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 26px;
        color: rgba(71, 85, 105, 0.92);
    }

    .btn-pill {
        width: 100%;
        justify-content: space-between;
        min-height: 60px;
        padding: 14px 14px 14px 22px;
        font-size: 0.96rem;
        border-radius: 22px;
        border: 0;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
        color: #fff;
    }

    .btn-pill svg {
        width: 36px;
        height: 36px;
        padding: 9px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.22);
        flex-shrink: 0;
    }

    .btn-pill.text-green {
        background: linear-gradient(135deg, #00c853 0%, #06b6d4 100%);
    }

    .btn-pill.text-red {
        background: linear-gradient(135deg, #e8153a 0%, #fb7185 100%);
    }

    .btn-pill.text-blue {
        background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    }

    .btn-pill.text-orange {
        background: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
    }

    .btn-pill.text-avm {
        background: linear-gradient(135deg, #6f5ca8 0%, #433463 100%);
    }

    .vision {
        margin: 0 10px;
        padding: 88px 18px 26px;
        border-radius: 36px;
        background:
            radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.34) 0%, rgba(37, 99, 235, 0.08) 24%, transparent 48%),
            radial-gradient(circle at 50% 100%, rgba(0, 200, 83, 0.18) 0%, rgba(0, 200, 83, 0.05) 24%, transparent 45%),
            linear-gradient(180deg, #050816 0%, #090d15 45%, #070b10 100%);
        box-shadow: 0 30px 70px rgba(3, 7, 18, 0.35);
    }

    .vision::before {
        top: 10%;
        width: 130vw;
        height: 360px;
        background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.28) 0%, rgba(37, 99, 235, 0.14) 34%, transparent 72%);
        transform: translateX(-50%) translateY(-50%);
    }

    .vision::after {
        width: 120vw;
        height: 300px;
        background: radial-gradient(ellipse at center, rgba(0, 200, 83, 0.24) 0%, rgba(0, 200, 83, 0.08) 34%, transparent 72%);
    }

    .vision-grid-overlay {
        background-size: 42px 42px;
        opacity: 0.8;
        mask-image: radial-gradient(circle at center, black 45%, transparent 98%);
        -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 98%);
    }

    .vision-container {
        max-width: 100%;
    }

    .badge-dark {
        margin-bottom: 22px;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.16);
        color: rgba(226, 232, 240, 0.82);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 14px 28px rgba(15, 23, 42, 0.4);
    }

    .vision-title {
        font-size: clamp(2.5rem, 12vw, 3.8rem);
        line-height: 0.98;
        margin-bottom: 22px;
        letter-spacing: -0.05em;
    }

    .vision-title .gradient-text-alt {
        display: inline-block;
        margin-top: 4px;
        background: linear-gradient(90deg, #67e8f9 0%, #60a5fa 35%, #34d399 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 14px 28px rgba(6, 182, 212, 0.16));
    }

    .vision-desc {
        max-width: 34ch;
        font-size: 0.98rem;
        line-height: 1.75;
        margin: 0 auto 28px;
        color: rgba(203, 213, 225, 0.78);
    }

    .vision-stats {
        width: 100%;
        gap: 14px;
        padding: 14px;
        border-radius: 32px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
            radial-gradient(circle at top left, rgba(96, 165, 250, 0.08), transparent 40%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 24px 60px rgba(2, 6, 23, 0.4);
    }

    .stat-item {
        flex: 1;
        min-width: 0;
        padding: 18px 10px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-num {
        font-size: 2.4rem;
    }

    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
        color: rgba(148, 163, 184, 0.84);
        text-align: center;
    }

    .stat-divider {
        height: 68px;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    }

    .footer {
        position: relative;
        margin-top: 12px;
        padding: 18px 10px 12px;
        background: transparent;
    }

    .footer::before {
        content: '';
        position: absolute;
        inset: 0 10px 12px;
        border-radius: 32px;
        background:
            radial-gradient(circle at top left, rgba(0, 200, 83, 0.14), transparent 38%),
            radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 38%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.54) 100%);
        border: 1px solid rgba(255, 255, 255, 0.88);
        box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
        pointer-events: none;
    }

    .footer-inner {
        position: relative;
        z-index: 1;
        margin: 0 10px 12px;
        padding: 28px 18px 24px;
        max-width: none;
        border-top: 0;
        border-radius: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .footer-brand {
        margin-bottom: 18px;
        font-size: 1.5rem;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-link {
        min-height: 50px;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.56);
        border-color: rgba(15, 23, 42, 0.06);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        font-size: 0.86rem;
    }

    .footer-link-brand {
        grid-column: 1 / -1;
        border-color: rgba(0, 200, 83, 0.14);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64));
        box-shadow: 0 16px 34px rgba(0, 200, 83, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .footer p {
        max-width: 30ch;
        margin: 0 auto;
        font-size: 0.88rem;
        line-height: 1.6;
        color: rgba(71, 85, 105, 0.96);
    }

    .footer-legal-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-legal-link {
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.5);
        font-size: 0.72rem;
        line-height: 1.3;
        text-align: center;
    }

    .cookie-consent {
        width: calc(100% - 20px);
        bottom: 10px;
        padding: 16px;
        border-radius: 26px;
    }

    .cookie-consent__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .cookie-consent__text {
        max-width: none;
    }

    .cookie-consent__badge {
        margin-bottom: 10px;
        font-size: 0.66rem;
    }

    .cookie-consent__title {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .cookie-consent__desc {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .cookie-consent__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .cookie-consent__button,
    .cookie-consent__link {
        width: 100%;
        min-height: 50px;
        padding: 12px 16px;
        font-size: 0.82rem;
    }

    .cookie-consent__button--accept {
        grid-column: 1 / -1;
    }

    .legal-page-main {
        padding: 104px 14px 54px;
    }

    .legal-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .legal-hero-copy {
        max-width: none;
        text-align: center;
    }

    .legal-hero-title {
        font-size: 2.8rem;
        line-height: 0.95;
        margin-bottom: 16px;
    }

    .legal-hero-desc {
        max-width: 38ch;
        margin: 0 auto 24px;
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .legal-meta-row,
    .legal-hero-actions {
        justify-content: center;
    }

    .legal-meta-row {
        margin-bottom: 24px;
        gap: 10px;
    }

    .legal-meta-pill {
        min-height: 48px;
        padding: 10px 16px;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    .legal-hero-btn {
        width: 100%;
        min-height: 58px;
        padding: 16px 24px;
        font-size: 0.94rem;
    }

    .legal-visual-card,
    .legal-visual-card img {
        min-height: 390px;
    }

    .legal-visual-card {
        border-radius: 32px;
    }

    .legal-visual-caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .legal-visual-caption p {
        max-width: 280px;
        font-size: 1.5rem;
        line-height: 1.05;
    }

    .legal-visual-badge {
        min-height: 42px;
        padding: 10px 16px;
        font-size: 0.62rem;
    }

    .legal-content-shell {
        margin-top: 24px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .legal-toc-card {
        position: static;
        top: auto;
        border-radius: 28px;
        padding: 24px 22px 8px;
    }

    .legal-toc-link {
        padding: 14px 0;
        font-size: 0.96rem;
    }

    .legal-article-stack {
        gap: 16px;
    }

    .legal-info-card,
    .legal-reference-panel {
        border-radius: 28px;
        padding: 30px 22px 32px;
    }

    .legal-step-label {
        margin-bottom: 28px;
        font-size: 0.68rem;
    }

    .legal-info-card h2,
    .legal-reference-panel h2 {
        font-size: 1.95rem;
        line-height: 0.98;
        margin-bottom: 14px;
    }

    .legal-info-card p,
    .legal-reference-panel p,
    .legal-check-list li {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .legal-check-list {
        margin-top: 20px;
        gap: 12px;
    }

    .error-page-main {
        min-height: 100svh;
        padding: 100px 14px 28px;
    }

    .error-panel {
        border-radius: 32px;
        padding: 42px 24px 28px;
    }

    .error-title {
        font-size: 2.9rem;
        line-height: 0.96;
        margin-bottom: 16px;
    }

    .error-desc {
        max-width: 34ch;
        margin: 0 auto 28px;
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .error-actions {
        gap: 12px;
    }

    .btn-nav-desktop {
        display: none;
    }

    .btn-nav-mobile {
        display: inline-flex;
        width: 100%;
        margin-top: 8px;
        background: var(--color-text);
        color: #fff;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(84vw, 360px);
        height: 100svh;
        padding: 102px 24px 24px;
        flex-direction: column;
        gap: 14px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        border-left: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: -20px 0 50px rgba(15, 23, 42, 0.08);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 110;
        border-radius: 0;
    }

    .nav-links.is-open {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        padding: 16px 18px;
        border-radius: 20px;
        background: rgba(15, 23, 42, 0.04);
        color: var(--color-text);
        font-size: 1rem;
        font-weight: 700;
    }

    .nav-toggle {
        display: inline-flex;
        position: relative;
        z-index: 120;
    }

    .platform-modal {
        padding: 14px;
    }

    .platform-modal__panel {
        width: 100%;
        max-height: calc(100dvh - 28px);
        grid-template-columns: 1fr;
        border-radius: 28px;
        overflow-y: auto;
    }

    .platform-modal__media {
        min-height: 260px;
        height: 260px;
    }

    .platform-modal__close {
        top: 12px;
        right: 12px;
        width: 48px;
        height: 48px;
    }

    .platform-modal__status {
        left: 16px;
        bottom: 16px;
        padding: 12px 16px;
        font-size: 0.7rem;
    }

    .platform-modal__content {
        padding: 28px 18px 22px;
    }

    .platform-modal__title {
        font-size: 2rem;
        line-height: 1;
    }

    .platform-modal__desc {
        font-size: 0.96rem;
        line-height: 1.75;
        margin-bottom: 22px;
    }

    .platform-modal__list {
        gap: 12px;
        margin-bottom: 22px;
    }

    .platform-modal__list li {
        padding: 14px 16px;
        border-radius: 20px;
        font-size: 0.92rem;
    }

    .platform-modal__actions {
        flex-direction: column;
        gap: 10px;
    }

    .platform-modal__visit,
    .platform-modal__ghost {
        width: 100%;
        min-height: 56px;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 104px;
    }

    .card-badge {
        font-size: 0.64rem;
        padding: 6px 10px;
    }

    .logo-hub {
        display: block;
        margin-left: 0;
        padding-left: 0;
        margin-top: 8px;
        border-left: 0;
    }
}

@media (hover: none),
(pointer: coarse) {
    .platform-card:hover {
        transform: none !important;
        box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    .platform-card:hover .card-glow {
        opacity: 0.9;
    }

    .platform-card:hover .btn-pill {
        border-color: transparent;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
        color: #fff;
    }

    .platform-card:hover .btn-pill.text-green {
        background: linear-gradient(135deg, #00c853 0%, #06b6d4 100%);
    }

    .platform-card:hover .btn-pill.text-red {
        background: linear-gradient(135deg, #e8153a 0%, #fb7185 100%);
    }

    .platform-card:hover .btn-pill.text-blue {
        background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    }

    .platform-card:hover .btn-pill.text-orange {
        background: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
    }

    .platform-card:active {
        transform: scale(0.985) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
