/* ========================================
   ÇareVarAVM - Coming Soon Page
   Warm Purple-Navy Premium Theme
   ======================================== */

/* CSS Custom Properties */
:root {
    --color-bg: #f8f9fc;
    --color-bg-secondary: #f0f1f5;
    --color-bg-card: rgba(255, 255, 255, 0.9);
    --color-text: #1a1a2e;
    --color-text-soft: #3a3a52;
    --color-gray: #6b7094;
    --color-gray-dark: #d1d5e0;
    --color-green: #00c853;
    --color-green-dark: #00a844;
    --color-green-glow: rgba(0, 200, 83, 0.12);
    --color-red: #e8153a;
    --color-red-dark: #c41230;
    --color-red-glow: rgba(232, 21, 58, 0.1);
    --color-accent-gradient: linear-gradient(135deg, var(--color-green), #00a86b);
    --color-red-gradient: linear-gradient(135deg, var(--color-red), #ff5252);
    --color-border: rgba(0, 0, 0, 0.06);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-glow-green: 0 4px 20px rgba(0, 200, 83, 0.15);
    --shadow-glow-red: 0 4px 20px rgba(232, 21, 58, 0.12);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-green) var(--color-bg);
}

body {
    font-family: var(--font-primary);
    background-color: #f7f9fa;
    /* Sleek light foundation */
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-green);
    border-radius: 3px;
}

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

/* ========================================
   Global Premium Background (Studio & Broadcast Rings)
   ======================================== */
.global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 100%, #ffffff 0%, #f4f6fa 100%);
}

.glow-red {
    position: absolute;
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(232, 21, 58, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatGlow 18s ease-in-out infinite alternate;
}

.glow-green {
    position: absolute;
    width: 90vw;
    height: 90vw;
    max-width: 900px;
    max-height: 900px;
    bottom: -30%;
    left: -15%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    animation: floatGlow 22s ease-in-out infinite alternate-reverse;
}

.broadcast-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vw;
    height: 150vw;
    min-width: 1200px;
    min-height: 1200px;
    transform: translate(-50%, -50%);
    background-image:
        repeating-radial-gradient(circle,
            transparent 0,
            transparent 80px,
            rgba(0, 0, 0, 0.015) 81px,
            transparent 82px);
    opacity: 0.8;
    animation: rippleRings 30s linear infinite;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-5%, 8%) scale(1.1);
    }
}

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

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

/* ========================================
   TV Effects & Overlays
   ======================================== */

.tv-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    animation: noiseShift 0.1s steps(3) infinite;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.012) 2px,
            rgba(0, 0, 0, 0.012) 4px);
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@keyframes noiseShift {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-5px, 3px);
    }

    66% {
        transform: translate(3px, -2px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(248, 249, 252, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 48px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.55rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    line-height: 0.92;
}

.logo-care,
.logo-var,
.logo-tv {
    font-weight: 900;
    letter-spacing: -0.04em;
}

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

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

.logo-tv {
    color: #ffffff;
    background: var(--color-red);
    padding: 0.1em 0.18em 0.06em;
    border-radius: 0.12em;
    margin-left: 0.15em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232, 21, 58, 0.3);
    line-height: 1;
    transform: none;
    vertical-align: middle;
}


.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray);
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: 0.02em;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: var(--transition-smooth);
    border-radius: 1px;
}

/* duplicate removed - already defined above */

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(248, 249, 252, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.mobile-link:hover {
    color: var(--color-green);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    z-index: 2;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(0, 200, 83, 0.25);
    background: rgba(0, 200, 83, 0.06);
    color: var(--color-green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 8px rgba(0, 230, 118, 0);
    }
}

.hero-title {
    margin-bottom: 32px;
}

.title-line {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0;
}

.title-big {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8.5rem);
    line-height: 0.9;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* TV Frame Design */
.tv-frame {
    position: relative;
    width: 340px;
    height: 220px;
    margin: 60px auto 40px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tv-frame:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
}

.tv-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(0, 200, 83, 0.15) 0%, rgba(232, 21, 58, 0.08) 50%, transparent 80%);
    filter: blur(25px);
    z-index: 0;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.tv-frame:hover .tv-glow {
    opacity: 1;
    transform: scale(1.05);
}

.tv-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #101018 0%, #08080c 100%);
    border-radius: 12px;
    border: 1px solid #444455;
    overflow: hidden;
    box-shadow:
        0 0 0 4px #22222a,
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px #000,
        inset 0 0 50px rgba(0, 0, 0, 0.8);
    animation: tvFlicker 6s ease-in-out infinite;
    z-index: 2;
}

.tv-gif {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.85;
    /* Blend beautifully with the dark screen */
    pointer-events: none;
}

.tv-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 40%, transparent 45%);
    pointer-events: none;
    z-index: 5;
}

.tv-noise-inner {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    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)' opactiy='0.5'/%3E%3C/svg%3E");
    opacity: 0.15;
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: tvStatic 0.3s steps(4) infinite;
    z-index: 1;
}

@keyframes tvStatic {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-5%, 5%);
    }

    20% {
        transform: translate(-10%, -10%);
    }

    30% {
        transform: translate(5%, 10%);
    }

    40% {
        transform: translate(-5%, 5%);
    }

    50% {
        transform: translate(-15%, 10%);
    }

    60% {
        transform: translate(10%, 0);
    }

    70% {
        transform: translate(0, 10%);
    }

    80% {
        transform: translate(-10%, -5%);
    }

    90% {
        transform: translate(10%, 5%);
    }

    100% {
        transform: translate(5%, -5%);
    }
}

@keyframes tvFlicker {

    0%,
    95%,
    100% {
        opacity: 1;
        filter: brightness(1);
    }

    96% {
        opacity: 0.85;
        filter: brightness(1.2);
    }

    97% {
        opacity: 1;
        filter: brightness(1);
    }

    98% {
        opacity: 0.9;
        filter: brightness(1.1);
    }
}

.tv-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2;
}

.channel-indicator {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 0.1em;
    animation: blinkRec 1.5s ease-in-out infinite;
    z-index: 3;
}

.channel-indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-red);
    box-shadow: 0 0 6px var(--color-red);
}

@keyframes blinkRec {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.tv-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    z-index: 4;
}

.tv-bar {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-green), var(--color-red));
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
    z-index: 4;
}

.tv-glitch {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 0%,
            rgba(0, 200, 83, 0.04) 50%,
            transparent 100%);
    background-size: 100% 8px;
    animation: glitchScan 4s linear infinite;
    z-index: 3;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes glitchScan {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.tv-stand-neck {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 18px;
    background: linear-gradient(to bottom, #181820, #0a0a0f);
    z-index: 1;
    clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
}

.tv-stand-base {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, #bbbcc0, #ffffff, #bbbcc0);
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 200, 83, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-gray-dark);
}

.btn-secondary:hover {
    border-color: var(--color-green);
    color: var(--color-green-dark);
    transform: translateY(-2px);
}

.btn-apply {
    background: linear-gradient(135deg, var(--color-red), #ff5252);
    color: #ffffff;
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(232, 21, 58, 0.2);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 21, 58, 0.35);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-gray);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    animation: floatScroll 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid var(--color-gray-dark);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--color-green);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(8px);
        opacity: 0;
    }
}

@keyframes floatScroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

/* ========================================
   Section Shared Styles
   ======================================== */

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

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

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-green-dark);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 100px;
    background: rgba(0, 200, 83, 0.06);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.text-gradient {
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-red {
    background: var(--color-red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   About Section
   ======================================== */

.about {
    position: relative;
    padding: 120px 0;
    z-index: 2;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.about-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.06) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: blobFloat 15s ease-in-out infinite;
}

.about-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 21, 58, 0.05) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: blobFloat 12s ease-in-out infinite reverse;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    position: relative;
    perspective: 1000px;
}

.about-card-inner {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), #00bfa5);
    opacity: 0;
    transition: var(--transition-smooth);
    transform: scaleX(0);
    transform-origin: left;
}

.about-card:hover .about-card-inner {
    transform: translateY(-8px);
    border-color: rgba(0, 200, 83, 0.15);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 200, 83, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-card:hover .about-card-inner::after {
    opacity: 1;
    transform: scaleX(1);
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    position: relative;
    margin-bottom: 24px;
}

.card-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 200, 83, 0.4);
    opacity: 0;
    transition: var(--transition-smooth);
    animation: rotateDash 10s linear infinite;
}

.about-card:hover .card-icon-wrapper::before {
    opacity: 1;
}

.card-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.02));
    color: var(--color-green-dark);
    position: relative;
    z-index: 2;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.about-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 200, 83, 0.05));
    color: var(--color-green);
    transform: scale(1.05);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    flex-grow: 1;
}

/* ========================================
   Features Section
   ======================================== */

.features {
    position: relative;
    padding: 120px 0;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 23, 68, 0.02) 50%, transparent 100%);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    position: relative;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    padding-left: 16px;
}

.feature-item:hover .feature-number {
    color: var(--color-red);
    text-shadow: 0 0 30px rgba(255, 23, 68, 0.3);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gray-dark);
    min-width: 100px;
    transition: var(--transition-smooth);
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
    max-width: 600px;
}

.feature-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-red-gradient);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-line {
    width: 100%;
}

/* ========================================
   Countdown Section - Cinematic Redesign
   ======================================== */

.countdown-section {
    position: relative;
    padding: 100px 0 120px;
    z-index: 2;
    overflow: hidden;
}

.countdown-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.countdown-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.countdown-blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.countdown-blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 21, 58, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

.countdown-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -15px) scale(1.05);
    }

    66% {
        transform: translate(-10px, 10px) scale(0.95);
    }
}

.countdown-wrapper {
    text-align: center;
    padding: 64px 48px 56px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.countdown-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), #00bfa5, var(--color-red), #ff5252, var(--color-green));
    background-size: 200% 100%;
    animation: gradientSlide 4s linear infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.countdown-header {
    margin-bottom: 48px;
}

.countdown-icon-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.05));
    color: var(--color-green-dark);
    margin-bottom: 20px;
    position: relative;
}

.countdown-icon-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(0, 200, 83, 0.15);
    animation: ringPulse 2.5s ease-in-out infinite;
}

@keyframes ringPulse {

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

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.countdown-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.countdown-subtitle {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 400;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.countdown-unit-inner {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, #f5f6fa 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.countdown-unit-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
}

.countdown-unit:hover .countdown-unit-inner {
    transform: translateY(-4px);
    box-shadow:
        0 8px 24px rgba(0, 200, 83, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.04),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 200, 83, 0.15);
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-gray);
    text-transform: uppercase;
}

.countdown-separator {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 32px;
}

.countdown-separator span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    animation: separatorBlink 1.2s ease-in-out infinite;
}

.countdown-separator span:last-child {
    animation-delay: 0.6s;
}

@keyframes separatorBlink {

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

    50% {
        opacity: 0.2;
        transform: scale(0.8);
    }
}

.countdown-progress {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.countdown-progress-bar {
    height: 100%;
    width: 15%;
    background: linear-gradient(90deg, var(--color-green), #00bfa5);
    border-radius: 4px;
    animation: progressShimmer 3s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% {
        width: 10%;
        opacity: 0.6;
    }

    50% {
        width: 20%;
        opacity: 1;
    }

    100% {
        width: 10%;
        opacity: 0.6;
    }
}

/* ========================================
   Join Section - Cinematic Redesign
   ======================================== */

.join {
    position: relative;
    padding: 120px 0;
    z-index: 2;
    overflow: hidden;
}

.join-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.join-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.join-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 21, 58, 0.08) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: blobFloat 12s ease-in-out infinite;
}

.join-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.06) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: blobFloat 9s ease-in-out infinite reverse;
}

.join-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.join-roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.role-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    cursor: default;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 200, 83, 0.15);
}

.role-card-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(0, 200, 83, 0.03));
    border-radius: 12px;
    flex-shrink: 0;
}

.role-card-info h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.role-card-info p {
    font-size: 0.75rem;
    color: var(--color-gray);
    line-height: 1.3;
}

/* Join CTA Card */
.join-cta {
    display: flex;
    justify-content: center;
}

.join-cta-card {
    position: relative;
    max-width: 520px;
    width: 100%;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, var(--color-green), #00bfa5, var(--color-red), #ff5252);
    background-size: 300% 300%;
    animation: borderGlow 5s ease-in-out infinite;
    box-shadow:
        0 8px 32px rgba(232, 21, 58, 0.1),
        0 8px 32px rgba(0, 200, 83, 0.1);
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.join-cta-border {
    display: none;
}

.join-cta-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 21px;
    padding: 48px 40px;
    text-align: center;
}

.join-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-red);
    margin-bottom: 24px;
    padding: 6px 14px;
    background: rgba(232, 21, 58, 0.06);
    border-radius: 100px;
    border: 1px solid rgba(232, 21, 58, 0.12);
}

.rec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-red);
    box-shadow: 0 0 8px var(--color-red);
    animation: blinkRec 1.5s ease-in-out infinite;
}

.join-cta-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 21, 58, 0.08), rgba(232, 21, 58, 0.03));
    color: var(--color-red);
    margin: 0 auto 24px;
    position: relative;
}

.join-cta-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(232, 21, 58, 0.12);
    animation: rotateDash 15s linear infinite;
}

@keyframes rotateDash {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.join-cta-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.join-cta-content p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.btn-apply {
    background: linear-gradient(135deg, var(--color-red), #ff5252);
    color: #ffffff;
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(232, 21, 58, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.6s;
}

.btn-apply:hover::before {
    left: 100%;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 21, 58, 0.35);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    position: relative;
    padding: 60px 0 40px;
    z-index: 2;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0.92;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-gray);
    transition: var(--transition-smooth);
}

.social-link:hover {
    border-color: var(--color-green);
    color: var(--color-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-green);
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--color-gray-dark);
    margin: 0 auto 20px;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--color-gray);
}

/* ========================================
   Scroll Animations
   ======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design - Comprehensive Mobile
   ======================================== */

/* Global overflow prevention */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

.hide-mobile {
    display: inline;
}

/* ---- Tablet: 1024px ---- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .join-roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-container {
        padding: 0 32px;
    }

    .hero-content {
        max-width: 700px;
    }

    .feature-number {
        font-size: 2.5rem;
        min-width: 80px;
    }

    .feature-item {
        gap: 28px;
    }
}

/* ---- Mobile: 768px ---- */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 14px 20px;
    }

    .navbar.scrolled {
        padding: 10px 20px;
    }

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

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Mobile Menu */
    .mobile-menu {
        height: 100dvh;
        /* Use dynamic viewport height for mobile browsers */
    }

    .mobile-link {
        font-size: 1.5rem;
    }

    /* Hero */
    .hero {
        min-height: 100dvh;
        padding: 90px 20px 50px;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
        margin-bottom: 28px;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .title-big {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
    }



    /* TV Frame */
    .tv-frame {
        width: min(280px, 85vw);
        height: min(180px, 55vw);
        margin: 24px auto 28px;
    }

    .tv-stand-neck {
        width: 70px;
        height: 12px;
        bottom: -12px;
    }

    .tv-stand-base {
        width: 140px;
        height: 3px;
        bottom: -15px;
    }

    .tv-text {
        font-size: 0.9rem;
    }

    .channel-indicator {
        top: 8px;
        right: 8px;
        font-size: 0.55rem;
    }

    .channel-indicator::before {
        width: 5px;
        height: 5px;
    }

    .tv-content {
        padding: 14px;
    }

    /* Hero subtitle & CTA */
    .hero-subtitle {
        font-size: 0.95rem;
        margin: 0 auto 28px;
        line-height: 1.7;
        max-width: 100%;
        padding: 0 8px;
    }

    .hide-mobile {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        /* Minimum touch target of 44px */
        min-height: 48px;
        padding: 14px 24px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Section Shared */
    .section-container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
        padding: 5px 12px;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .section-desc {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* About Section */
    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-card-inner {
        padding: 24px 20px;
    }

    .about-card:hover .about-card-inner {
        transform: none;
        /* Disable hover lift on touch devices */
        box-shadow:
            0 4px 24px rgba(0, 0, 0, 0.02),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border-color: rgba(0, 0, 0, 0.04);
    }

    .card-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

    .card-icon svg {
        width: 22px;
        height: 22px;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .card-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Features Section */
    .features {
        padding: 80px 0;
    }

    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 0;
    }

    .feature-item:hover {
        padding-left: 0;
    }

    .feature-number {
        font-size: 1.8rem;
        min-width: auto;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    /* Countdown */
    .countdown-section {
        padding: 60px 0;
    }

    .countdown-wrapper {
        padding: 36px 16px;
        border-radius: 20px;
    }

    .countdown-header {
        margin-bottom: 32px;
    }

    .countdown-icon-pulse {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .countdown-icon-pulse svg {
        width: 20px;
        height: 20px;
    }

    .countdown-title {
        font-size: 1.3rem;
    }

    .countdown-subtitle {
        font-size: 0.8rem;
    }

    .countdown-timer {
        gap: 8px;
        flex-wrap: nowrap;
        margin-bottom: 28px;
    }

    .countdown-unit {
        flex: 1;
        gap: 8px;
    }

    .countdown-unit-inner {
        width: 100%;
        height: 80px;
        border-radius: 14px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }

    .countdown-separator {
        padding-top: 20px;
        gap: 8px;
    }

    .countdown-separator span {
        width: 4px;
        height: 4px;
    }

    .countdown-progress {
        max-width: 280px;
    }

    /* Join Section */
    .join {
        padding: 80px 0;
    }

    .join-roles-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .role-card {
        padding: 14px 16px;
    }

    .role-card:hover {
        transform: none;
    }

    .role-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .role-card-info h4 {
        font-size: 0.85rem;
    }

    .role-card-info p {
        font-size: 0.7rem;
    }

    .join-cta-content {
        padding: 32px 24px;
    }

    .join-cta-icon {
        width: 60px;
        height: 60px;
    }

    .join-cta-content h3 {
        font-size: 1.25rem;
    }

    .join-cta-content p {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .btn-apply {
        padding: 16px 24px;
        font-size: 0.95rem;
        min-height: 52px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 32px;
    }

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

    .footer-tagline {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .footer-social {
        gap: 12px;
        margin-bottom: 24px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .footer-copy {
        font-size: 0.7rem;
    }

    /* Animations - Reduce motion on mobile for performance */
    .animate-on-scroll {
        transform: translateY(24px);
    }
}

/* ---- Small Mobile: 480px ---- */
@media (max-width: 480px) {
    .navbar {
        padding: 12px 16px;
    }

    .navbar.scrolled {
        padding: 10px 16px;
    }

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

    .hero {
        padding: 80px 16px 40px;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 5px 12px;
        margin-bottom: 24px;
        gap: 6px;
    }

    .badge-dot {
        width: 6px;
        height: 6px;
    }

    .title-big {
        font-size: clamp(2.2rem, 14vw, 3.5rem);
    }

    .tv-frame {
        width: min(240px, 80vw);
        height: min(155px, 52vw);
        margin: 20px auto 24px;
    }

    .tv-stand-neck {
        width: 50px;
        height: 10px;
        bottom: -10px;
    }

    .tv-stand-base {
        width: 110px;
        height: 3px;
        bottom: -13px;
    }

    .tv-text {
        font-size: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.65;
        padding: 0 4px;
    }

    .hero-cta {
        max-width: 100%;
        padding: 0 4px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .section-container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    .about-card-inner {
        padding: 22px 18px;
    }

    .card-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
    }

    .card-icon {
        border-radius: 12px;
    }

    .card-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Features */
    .features {
        padding: 60px 0;
    }

    .feature-item {
        padding: 20px 0;
        gap: 10px;
    }

    .feature-number {
        font-size: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.82rem;
    }

    /* Countdown */
    .countdown-section {
        padding: 48px 0;
    }

    .countdown-wrapper {
        padding: 28px 12px;
        border-radius: 16px;
    }

    .countdown-title {
        font-size: 1.1rem;
    }

    .countdown-subtitle {
        font-size: 0.75rem;
    }

    .countdown-unit-inner {
        height: 68px;
        border-radius: 12px;
    }

    .countdown-value {
        font-size: 1.6rem;
    }

    .countdown-label {
        font-size: 0.5rem;
    }

    /* Join */
    .join {
        padding: 60px 0;
    }

    .role-card {
        padding: 12px 14px;
    }

    .role-card-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .role-card-info h4 {
        font-size: 0.8rem;
    }

    .join-cta-content {
        padding: 28px 18px;
    }

    .join-cta-content h3 {
        font-size: 1.1rem;
    }

    .btn-apply {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 28px;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-social {
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    /* Mobile menu */
    .mobile-link {
        font-size: 1.3rem;
    }
}

/* ---- Extra Small: 360px ---- */
@media (max-width: 360px) {
    .navbar {
        padding: 10px 12px;
    }

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

    .hero {
        padding: 74px 12px 36px;
    }

    .hero-badge {
        font-size: 0.55rem;
        padding: 4px 10px;
        margin-bottom: 20px;
    }

    .title-big {
        font-size: clamp(2rem, 15vw, 2.8rem);
    }

    .tv-frame {
        width: min(210px, 82vw);
        height: min(136px, 53vw);
    }

    .tv-text {
        font-size: 0.7rem;
    }

    .hero-subtitle {
        font-size: 0.82rem;
    }

    .section-container {
        padding: 0 12px;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-tag {
        font-size: 0.55rem;
        padding: 4px 10px;
    }

    .countdown-timer {
        gap: 4px;
    }

    .countdown-unit-inner {
        height: 56px;
        border-radius: 10px;
    }

    .countdown-value {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.45rem;
    }

    .countdown-separator span {
        width: 3px;
        height: 3px;
    }

    .role-card {
        padding: 10px 12px;
        gap: 10px;
    }

    .about-card-inner {
        padding: 20px 16px;
    }

    .join-card-body {
        padding: 20px 14px;
    }

    .btn-apply {
        padding: 13px 16px;
        font-size: 0.85rem;
    }

    .feature-content p {
        font-size: 0.78rem;
    }
}

/* ---- Safe Area (Notch) Support ---- */
@supports (padding: env(safe-area-inset-top)) {
    .navbar {
        padding-top: max(14px, env(safe-area-inset-top));
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(28px, env(safe-area-inset-bottom));
    }

    .mobile-menu {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ---- Touch Device Optimizations ---- */
@media (hover: none) and (pointer: coarse) {

    /* Remove hover effects that don't work on touch */
    .about-card:hover {
        transform: none;
        box-shadow: none;
    }

    .about-card:hover::before {
        opacity: 0;
    }

    .join-card:hover {
        transform: none;
    }

    .join-card:hover .join-card-glow {
        opacity: 0;
    }

    .feature-item:hover {
        padding-left: 0;
    }

    .feature-item:hover .feature-number {
        color: var(--color-gray-dark);
        text-shadow: none;
    }

    .feature-item:hover .feature-line {
        width: 0;
    }

    .social-link:hover {
        transform: none;
        box-shadow: none;
    }

    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-apply:hover {
        transform: none;
    }

    /* Add active states instead for touch feedback */
    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    .about-card:active {
        border-color: rgba(0, 230, 118, 0.15);
    }

    .social-link:active {
        border-color: var(--color-green);
        color: var(--color-green);
    }

    .role-tag:active {
        border-color: rgba(0, 230, 118, 0.3);
        background: rgba(0, 230, 118, 0.05);
    }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {

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

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .tv-noise {
        display: none;
    }

    .scanlines {
        display: none;
    }
}

/* ---- Landscape Mobile ---- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 24px 40px;
    }

    .tv-frame {
        width: 200px;
        height: 130px;
        margin: 16px auto;
    }

    .hero-badge {
        margin-bottom: 16px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ========================================
   ÇareVarAVM Warm Purple-Navy Theme Overrides
   ======================================== */

:root {
    --color-bg: #f4f0ff;
    --color-bg-secondary: #ede7fb;
    --color-bg-card: rgba(255, 255, 255, 0.92);
    --color-text: #19162f;
    --color-text-soft: #433e63;
    --color-gray: #6c678d;
    --color-gray-dark: #d8d1ec;
    --color-green: #7c5cff;
    --color-green-dark: #5b40c7;
    --color-green-glow: rgba(124, 92, 255, 0.18);
    --color-red: #47317f;
    --color-red-dark: #2e2357;
    --color-red-glow: rgba(71, 49, 127, 0.18);
    --color-accent-gradient: linear-gradient(135deg, #7c5cff, #6a56d8 42%, #4d397e);
    --color-red-gradient: linear-gradient(135deg, #4d397e, #30255a);
    --color-border: rgba(62, 45, 112, 0.1);
    --shadow-glow-green: 0 14px 38px rgba(124, 92, 255, 0.22);
    --shadow-glow-red: 0 14px 40px rgba(71, 49, 127, 0.2);
}

body {
    background-color: var(--color-bg);
}

.global-bg {
    background:
        radial-gradient(circle at 18% 15%, rgba(207, 189, 255, 0.45) 0%, transparent 34%),
        radial-gradient(circle at 82% 24%, rgba(250, 202, 234, 0.28) 0%, transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(91, 64, 160, 0.16) 0%, transparent 40%),
        linear-gradient(180deg, #faf8ff 0%, #f4f0ff 50%, #ece6f8 100%);
}

.glow-red {
    background: radial-gradient(circle, rgba(71, 49, 127, 0.2) 0%, transparent 65%);
}

.glow-green {
    background: radial-gradient(circle, rgba(124, 92, 255, 0.18) 0%, transparent 70%);
}

.broadcast-rings {
    background-image:
        repeating-radial-gradient(circle,
            transparent 0,
            transparent 86px,
            rgba(82, 60, 144, 0.05) 87px,
            transparent 88px);
    opacity: 0.5;
}

.tv-noise,
.scanlines {
    display: none;
}

.navbar.scrolled {
    background: rgba(247, 244, 255, 0.92);
}

.hero-content {
    max-width: 1120px;
}

.title-line {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.title-big {
    font-size: clamp(3rem, 7vw, 5.8rem);
}

.logo-var {
    color: #7c5cff;
}

.logo-tv {
    color: #ffffff;
    background: linear-gradient(135deg, #7c5cff, #4d397e);
    padding: 0.2em 0.46em;
    border-radius: 999px;
    margin-left: 0.2em;
    box-shadow: 0 10px 24px rgba(92, 71, 171, 0.32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: none;
    vertical-align: middle;
    min-height: 1.45em;
}

.nav-logo .logo-tv,
.footer-logo .logo-tv {
    padding: 0.18em 0.44em;
    border-radius: 0.32em;
    margin-left: 0.18em;
    min-height: 1.05em;
}

.nav-logo .logo-care,
.nav-logo .logo-var,
.nav-logo .logo-tv,
.footer-logo .logo-care,
.footer-logo .logo-var,
.footer-logo .logo-tv {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    vertical-align: middle;
}

.hero-title .logo-tv {
    font-size: clamp(2rem, 4.8vw, 4.2rem);
    padding: 0.18em 0.44em;
    border-radius: 0.32em;
    margin-left: 0.24em;
    min-height: 1.05em;
}

.hero-badge,
.section-tag {
    border-color: rgba(124, 92, 255, 0.25);
    background: rgba(124, 92, 255, 0.09);
    color: var(--color-green-dark);
}

.badge-dot,
.scroll-wheel {
    background: var(--color-green);
}

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

.btn-primary {
    background: linear-gradient(135deg, #7c5cff, #6650ce 48%, #47317f);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(92, 71, 171, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 18px 36px rgba(92, 71, 171, 0.34);
}

.btn-secondary:hover {
    border-color: var(--color-green);
    color: var(--color-green-dark);
}

.tv-frame {
    width: min(720px, 92vw);
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 10.2;
    margin: 56px auto 36px;
}

.tv-frame:hover {
    transform: translateY(-6px) rotateX(1.2deg) rotateY(-1.2deg);
}

.tv-glow {
    inset: -30px;
    background: radial-gradient(circle at center, rgba(124, 92, 255, 0.28) 0%, rgba(71, 49, 127, 0.16) 48%, transparent 76%);
    filter: blur(32px);
}

.tv-screen {
    background: linear-gradient(160deg, #0d1c2b 0%, #11283a 34%, #0a1521 100%);
    border-radius: 28px;
    border: 1px solid rgba(199, 235, 240, 0.12);
    display: flex;
    flex-direction: column;
    box-shadow:
        0 0 0 3px rgba(12, 30, 45, 0.78),
        0 30px 70px rgba(7, 16, 26, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 80px rgba(2, 10, 18, 0.42);
    animation: none;
}

.tv-glass {
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 34%, transparent 46%);
    z-index: 6;
}

.tv-content.career-screen {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
    gap: 16px;
    padding: 20px 20px 28px;
    min-height: 100%;
}

.channel-indicator {
    position: static;
    top: auto;
    right: auto;
    gap: 8px;
    font-size: 0.66rem;
    color: #efe8ff;
    background: rgba(124, 92, 255, 0.16);
    border: 1px solid rgba(186, 170, 255, 0.26);
    padding: 7px 12px;
    border-radius: 999px;
    animation: none;
    margin-left: auto;
    white-space: nowrap;
}

.channel-indicator::before {
    background: #c5b3ff;
    box-shadow: 0 0 10px rgba(197, 179, 255, 0.7);
}

.screen-shell {
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 16px;
    flex: 1;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.screen-header-copy {
    min-width: 0;
}

.screen-heading {
    font-family: var(--font-display);
    font-size: 1.42rem;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.screen-topbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 0;
    margin-bottom: 0;
}

.screen-pill-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.screen-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(235, 248, 250, 0.88);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.screen-main {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
    gap: 14px;
    flex: 1;
    min-height: 0;
    align-items: stretch;
}

.screen-highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    border-radius: 24px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(146, 231, 235, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    min-width: 0;
}

.mock-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border-radius: 18px;
    background: rgba(4, 18, 29, 0.34);
    border: 1px solid rgba(145, 233, 237, 0.14);
}

.mock-search-text {
    color: rgba(229, 242, 244, 0.72);
    font-size: 0.82rem;
}

.mock-search-action {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(32, 199, 201, 0.12);
    color: #9ff9f3;
    font-size: 0.66rem;
    font-weight: 700;
    white-space: nowrap;
}

.screen-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #79f1ef;
}

.tv-text {
    font-size: 1.38rem;
    line-height: 1.3;
    text-align: left;
    text-shadow: none;
}

.screen-note {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(226, 241, 244, 0.82);
    max-width: none;
}

.screen-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 6px;
}

.screen-stat-card {
    padding: 14px 14px 13px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-stat-card strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.96rem;
    margin-bottom: 4px;
}

.screen-stat-card span {
    display: block;
    color: rgba(220, 236, 241, 0.76);
    font-size: 0.72rem;
    line-height: 1.5;
}

.job-board {
    display: grid;
    gap: 10px;
    align-content: start;
    min-width: 0;
}

.board-header {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8df3ef;
    padding: 0 2px;
}

.job-card {
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.job-card.featured {
    background: linear-gradient(135deg, rgba(32, 199, 201, 0.22) 0%, rgba(16, 42, 67, 0.18) 100%);
    border-color: rgba(123, 239, 238, 0.24);
}

.job-card.accent-card {
    background: linear-gradient(180deg, rgba(18, 68, 96, 0.32) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(97, 190, 214, 0.18);
}

.job-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #d8fbfb;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.job-card h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.job-card p {
    font-size: 0.84rem;
    color: rgba(223, 238, 241, 0.78);
    line-height: 1.65;
}

.job-card.compact h4 {
    font-size: 0.96rem;
    margin-bottom: 6px;
}

.job-card.compact p {
    font-size: 0.79rem;
    line-height: 1.55;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.job-meta span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #e3f5f6;
    font-size: 0.69rem;
    font-weight: 600;
}

.tv-bar {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 2px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #20c7c9 0%, #9af7f1 48%, #1b587c 100%);
    box-shadow: 0 0 18px rgba(32, 199, 201, 0.24);
}

.tv-glitch {
    background: linear-gradient(transparent 0%, rgba(32, 199, 201, 0.06) 50%, transparent 100%);
    opacity: 0.25;
}

.tv-stand-neck {
    width: 148px;
    height: 20px;
    bottom: -20px;
    background: linear-gradient(to bottom, #1e3548, #0f1a24);
}

.tv-stand-base {
    width: 280px;
    height: 8px;
    bottom: -26px;
    background: linear-gradient(90deg, #667f90, #d5e5ea, #667f90);
}

.features {
    background: linear-gradient(180deg, transparent 0%, rgba(246, 197, 58, 0.08) 50%, transparent 100%);
}

.feature-item:hover .feature-number {
    color: var(--color-red);
    text-shadow: 0 0 30px rgba(212, 107, 31, 0.18);
}

.feature-line {
    background: var(--color-accent-gradient);
}

.about-blob-2,
.countdown-blob-2,
.join-blob-1 {
    background: radial-gradient(circle, rgba(212, 107, 31, 0.1) 0%, transparent 70%);
}

.about-blob-1,
.countdown-blob-1,
.join-blob-2 {
    background: radial-gradient(circle, rgba(246, 197, 58, 0.12) 0%, transparent 70%);
}

.countdown-grid-overlay {
    background-image:
        linear-gradient(rgba(180, 126, 16, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 126, 16, 0.05) 1px, transparent 1px);
}

.countdown-wrapper {
    box-shadow:
        0 16px 50px rgba(17, 40, 58, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.countdown-title {
    color: var(--color-text);
}

.countdown-icon-pulse {
    color: var(--color-green-dark);
    background: rgba(246, 197, 58, 0.12);
}

.countdown-icon-pulse::before {
    border-color: rgba(246, 197, 58, 0.24);
}

.countdown-progress-bar {
    background: linear-gradient(90deg, #7c5cff, #8f79ff, #47317f);
}

.role-card:hover {
    border-color: rgba(246, 197, 58, 0.22);
}

.role-card-icon {
    color: var(--color-green-dark);
    background: linear-gradient(135deg, rgba(246, 197, 58, 0.18), rgba(246, 197, 58, 0.06));
}

.role-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

.join-cta-card {
    background: linear-gradient(135deg, #7c5cff, #7a63de, #5b40c7, #47317f);
    box-shadow:
        0 10px 32px rgba(246, 197, 58, 0.16),
        0 10px 32px rgba(212, 107, 31, 0.14);
}

.join-cta-badge {
    color: var(--color-green-dark);
    background: rgba(246, 197, 58, 0.12);
    border-color: rgba(246, 197, 58, 0.2);
}

.rec-dot {
    background: var(--color-green);
    box-shadow: 0 0 8px rgba(246, 197, 58, 0.7);
}

.join-cta-icon {
    color: var(--color-green-dark);
    background: linear-gradient(135deg, rgba(246, 197, 58, 0.16), rgba(246, 197, 58, 0.06));
}

.join-cta-icon::before {
    border-color: rgba(246, 197, 58, 0.22);
}

.btn-apply {
    background: linear-gradient(135deg, #7c5cff, #47317f);
    color: var(--color-text);
    box-shadow: 0 10px 24px rgba(236, 180, 37, 0.24);
}

.btn-apply:hover {
    box-shadow: 0 14px 30px rgba(236, 180, 37, 0.3);
}

.social-link:hover {
    border-color: rgba(246, 197, 58, 0.24);
    color: var(--color-green-dark);
}

@media (max-width: 900px) {
    .tv-frame {
        width: min(680px, 94vw);
        aspect-ratio: auto;
        min-height: 0;
    }

    .tv-screen {
        height: auto;
        min-height: 0;
    }

    .screen-header {
        flex-direction: column;
    }

    .channel-indicator {
        margin-left: 0;
    }

    .screen-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-content {
        max-width: 100%;
    }

    .title-line {
        justify-content: center;
        gap: 6px;
    }

    .title-big {
        font-size: clamp(2.3rem, 13vw, 3.8rem);
    }

    .hero-title .logo-tv {
        font-size: clamp(1.5rem, 8vw, 2.6rem);
        margin-left: 0;
    }

    .tv-frame {
        width: min(96vw, 390px);
        margin: 30px auto 20px;
    }

    .tv-content.career-screen {
        gap: 14px;
        padding: 16px 16px 18px;
    }

    .screen-shell {
        gap: 14px;
    }

    .screen-heading {
        font-size: 1.1rem;
    }

    .screen-kicker {
        font-size: 0.68rem;
    }

    .screen-topbar {
        gap: 8px;
    }

    .screen-highlight {
        padding: 16px;
        gap: 12px;
    }

    .mock-search {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 12px;
    }

    .tv-text {
        font-size: 1rem;
        line-height: 1.4;
    }

    .screen-note {
        font-size: 0.78rem;
        line-height: 1.6;
    }

    .screen-pill-group {
        gap: 8px;
    }

    .screen-pill {
        font-size: 0.62rem;
        padding: 5px 9px;
    }

    .channel-indicator {
        font-size: 0.56rem;
        padding: 5px 9px;
    }

    .screen-stat-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .screen-stat-card {
        padding: 12px;
    }

    .screen-stat-card strong {
        font-size: 0.88rem;
    }

    .job-card {
        padding: 13px;
    }

    .job-card h4 {
        font-size: 0.9rem;
    }

    .job-card.compact p,
    .job-card p {
        font-size: 0.74rem;
        line-height: 1.5;
    }

    .job-meta {
        margin-top: 10px;
    }

    .job-meta span {
        font-size: 0.64rem;
        padding: 5px 8px;
    }

    .tv-stand-neck,
    .tv-stand-base {
        display: none;
    }

    .tv-bar {
        margin-top: 0;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ========================================
   Homepage Hero Redesign
   ======================================== */

.hero {
    min-height: 100vh;
    padding: 132px 24px 88px;
}

.hero-title {
    margin-bottom: 28px;
}

.hero-brand-line {
    justify-content: center;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto 34px;
    text-align: center;
}

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

@media (max-width: 980px) {
    .hero {
        padding: 122px 20px 76px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 108px 14px 58px;
    }

    .hero-title {
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }

    .hero-cta {
        gap: 12px;
        justify-content: center;
    }

    .hero-cta .btn {
        justify-content: center;
    }
}

/* ========================================
   Mobile Polish & Performance
   ======================================== */

@media (max-width: 768px) {
    #particleCanvas {
        display: none;
    }

    .broadcast-rings {
        opacity: 0.24;
        animation: none;
    }

    .glow-red,
    .glow-green {
        filter: blur(60px);
    }

    .navbar,
    .navbar.scrolled {
        padding: 14px 16px;
    }

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

    .nav-logo .logo-tv,
    .footer-logo .logo-tv {
        padding: 0.18em 0.42em;
        border-radius: 0.3em;
        margin-left: 0.16em;
    }

    .mobile-menu {
        justify-content: flex-start;
        align-items: stretch;
        gap: 12px;
        padding: 92px 20px 24px;
        background: rgba(244, 251, 251, 0.96);
    }

    .mobile-link {
        font-size: 1rem;
        padding: 15px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(16, 42, 67, 0.08);
        box-shadow: 0 10px 26px rgba(17, 40, 58, 0.04);
    }

    .hero {
        min-height: auto;
        padding: 108px 16px 56px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        margin-bottom: 20px;
        padding: 6px 12px;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .title-line {
        justify-content: center;
        gap: 6px;
    }

    .title-big {
        font-size: clamp(2.3rem, 13.5vw, 3.7rem);
    }

    .hero-title {
        margin-bottom: 18px;
    }

    .hero-title .logo-tv {
        font-size: clamp(1.5rem, 8vw, 2.45rem);
        margin-left: 0;
        padding: 0.18em 0.42em;
    }

    .hero-subtitle {
        max-width: 33ch;
        font-size: 0.93rem;
        line-height: 1.75;
        margin: 0 auto 24px;
    }

    .hero-cta {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-cta .btn {
        width: 100%;
        min-height: 50px;
        justify-content: center;
        border-radius: 18px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-container {
        padding: 0 16px;
    }

    .about,
    .features,
    .join {
        padding: 74px 0;
    }

    .countdown-section {
        padding: 74px 0 82px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.45rem;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .section-desc {
        max-width: 34ch;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-card-inner {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .card-icon-wrapper {
        margin-bottom: 18px;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .card-desc {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 0;
    }

    .feature-number {
        min-width: 0;
        font-size: 2rem;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        max-width: none;
        font-size: 0.84rem;
        line-height: 1.65;
    }

    .countdown-wrapper {
        padding: 22px 16px;
        border-radius: 24px;
    }

    .countdown-header {
        margin-bottom: 22px;
    }

    .countdown-title {
        font-size: 1.35rem;
    }

    .countdown-subtitle {
        max-width: 28ch;
        margin: 0 auto;
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .countdown-timer {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 22px;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-unit {
        gap: 8px;
    }

    .countdown-unit-inner {
        width: 100%;
        height: 84px;
        border-radius: 16px;
    }

    .countdown-value {
        font-size: 1.55rem;
    }

    .countdown-label {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }

    .join-wrapper {
        gap: 28px;
    }

    .join-roles-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .role-card {
        padding: 14px;
        border-radius: 18px;
        align-items: center;
    }

    .role-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .role-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .role-card-info h4 {
        font-size: 0.88rem;
    }

    .role-card-info p {
        font-size: 0.72rem;
        line-height: 1.45;
    }

    .join-cta-card {
        border-radius: 22px;
    }

    .join-cta-content {
        padding: 28px 18px;
        border-radius: 20px;
    }

    .join-cta-content h3 {
        font-size: 1.18rem;
    }

    .join-cta-content p {
        font-size: 0.84rem;
        line-height: 1.7;
    }

    .btn-apply {
        min-height: 52px;
        border-radius: 16px;
    }

    .footer {
        padding: 56px 0 36px;
    }

    .footer-logo {
        font-size: 1.35rem;
    }

    .footer-tagline {
        font-size: 0.86rem;
    }

    .footer-social {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .btn,
    .mobile-link,
    .social-link {
        touch-action: manipulation;
    }
}

@media (max-width: 420px) {
    .navbar,
    .navbar.scrolled {
        padding: 12px;
    }

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

    .hero {
        padding: 100px 12px 48px;
    }

    .hero-badge {
        font-size: 0.56rem;
        padding: 5px 10px;
    }

    .title-big {
        font-size: clamp(2rem, 14.5vw, 3.1rem);
    }

    .hero-title .logo-tv {
        font-size: clamp(1.28rem, 7.5vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.86rem;
    }

    .section-container {
        padding: 0 12px;
    }

    .section-title {
        font-size: 1.24rem;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-unit-inner {
        height: 72px;
    }

    .countdown-value {
        font-size: 1.32rem;
    }

    .join-cta-content {
        padding: 24px 14px;
    }

    .mobile-menu {
        padding: 88px 16px 24px;
    }

    .mobile-link {
        font-size: 0.98rem;
        padding: 14px 15px;
    }
}

/* ========================================
   ÇareVarAVM Final Surface Polish
   ======================================== */

.about-card-inner,
.countdown-unit-inner,
.role-card,
.join-cta-content {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(246, 242, 255, 0.88) 45%,
            rgba(236, 229, 249, 0.86) 100%);
    border: 1px solid rgba(103, 82, 171, 0.14);
    box-shadow:
        0 22px 54px rgba(34, 24, 70, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.about-card:hover .about-card-inner,
.countdown-unit:hover .countdown-unit-inner,
.role-card:hover {
    border-color: rgba(124, 92, 255, 0.24);
    box-shadow:
        0 28px 68px rgba(53, 39, 102, 0.14),
        0 1px 0 rgba(255, 255, 255, 0.96) inset;
}

.about-card-inner::after {
    background: linear-gradient(90deg, #7c5cff, #6f58de, #47317f);
}

.card-icon {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(71, 49, 127, 0.08));
    color: #5b40c7;
}

.card-icon-wrapper::before {
    border-color: rgba(124, 92, 255, 0.28);
}

.feature-item {
    border-bottom-color: rgba(103, 82, 171, 0.12);
}

.feature-item:hover .feature-number {
    color: #47317f;
    text-shadow: 0 0 30px rgba(124, 92, 255, 0.18);
}

.countdown-wrapper {
    background: linear-gradient(160deg,
            rgba(255, 255, 255, 0.84) 0%,
            rgba(243, 238, 254, 0.74) 55%,
            rgba(229, 220, 247, 0.68) 100%);
    border-color: rgba(103, 82, 171, 0.14);
    box-shadow: 0 30px 80px rgba(34, 24, 70, 0.12);
}

.countdown-unit:hover .countdown-unit-inner {
    border-color: rgba(124, 92, 255, 0.22);
}

.about-blob-2,
.countdown-blob-2,
.join-blob-1 {
    background: radial-gradient(circle, rgba(71, 49, 127, 0.14) 0%, transparent 70%);
}

.about-blob-1,
.countdown-blob-1,
.join-blob-2 {
    background: radial-gradient(circle, rgba(124, 92, 255, 0.16) 0%, transparent 70%);
}

.role-card-icon {
    color: #5b40c7;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.16), rgba(71, 49, 127, 0.08));
}

.join-cta-card {
    background: linear-gradient(135deg, #7c5cff, #7d65e8, #5b40c7, #47317f);
    box-shadow:
        0 18px 42px rgba(124, 92, 255, 0.18),
        0 18px 42px rgba(71, 49, 127, 0.18);
}

.join-cta-badge {
    color: #5b40c7;
    background: rgba(124, 92, 255, 0.1);
    border-color: rgba(124, 92, 255, 0.18);
}

.rec-dot {
    background: #7c5cff;
    box-shadow: 0 0 8px rgba(124, 92, 255, 0.68);
}

.join-cta-icon {
    color: #6a56d8;
    box-shadow:
        0 14px 34px rgba(124, 92, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(239, 233, 249, 0.55) 100%);
}

.hero-badge {
    border-color: rgba(124, 92, 255, 0.22);
    background: rgba(124, 92, 255, 0.08);
    color: #5b40c7;
}

.badge-dot,
.scroll-wheel {
    background: #7c5cff;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.34);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 8px rgba(124, 92, 255, 0);
    }
}

.scroll-mouse {
    border-color: rgba(108, 103, 141, 0.7);
}
