/* =============================================
   linobud - Coming Soon
   Gen-Z AI Aesthetic CSS
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --bg-primary: #05050d;
    --bg-secondary: #0d0d1a;
    --purple-primary: #7c3aed;
    --purple-light: #a78bfa;
    --cyan-primary: #06b6d4;
    --cyan-light: #67e8f9;
    --pink-accent: #ec4899;
    --green-accent: #10b981;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(139, 92, 246, 0.4);
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ---------- Particle Canvas ---------- */
#particle-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---------- Noise Overlay ---------- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    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)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* ---------- Gradient Orbs ---------- */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat linear infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-duration: 20s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 30s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(20px, 20px) scale(1.02);
    }
}

/* ---------- Grid Overlay ---------- */
.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* ---------- Container ---------- */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 clamp(20px, 5vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Header ---------- */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: border-color 0.3s;
}

.logo:hover .logo-icon {
    border-color: var(--glass-border-hover);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 30%, var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-accent);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ---------- Main Content ---------- */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0 40px;
    gap: 28px;
}

/* ---------- Badge ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeSlideDown 0.8s ease forwards;
}

.badge-icon {
    font-size: 0.7rem;
    opacity: 0.7;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- Headline ---------- */
.headline {
    display: flex;
    flex-direction: column;
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    animation: fadeSlideUp 0.9s ease 0.15s both;
}

.line-1,
.line-3 {
    color: var(--text-primary);
}

.line-3 {
    font-size: clamp(2.2rem, 7vw, 6rem);
    color: var(--text-primary);
    opacity: 0.85;
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--cyan-light) 50%, var(--pink-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.blink-cursor {
    display: inline-block;
    font-family: var(--font-mono);
    animation: blink 1.1s step-end infinite;
    -webkit-text-fill-color: var(--cyan-primary);
    color: var(--cyan-primary);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ---------- Subtext ---------- */
.subtext {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    animation: fadeSlideUp 0.9s ease 0.3s both;
}

.break-desktop {
    display: inline;
}

/* ---------- Countdown ---------- */
.countdown-wrapper {
    animation: fadeSlideUp 0.9s ease 0.4s both;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 18px 24px;
    min-width: 80px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.time-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), transparent 60%);
    pointer-events: none;
}

.time-block:hover {
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.time-value {
    font-family: var(--font-mono);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    background: linear-gradient(135deg, #fff, var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-unit {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

.time-separator {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    animation: blink 1.1s step-end infinite;
    margin-bottom: 14px;
}

/* ---------- Email Signup ---------- */
.signup-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    animation: fadeSlideUp 0.9s ease 0.5s both;
}

.signup-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.email-form {
    display: flex;
    width: 100%;
    gap: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 6px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.email-form:focus-within {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1), 0 0 40px rgba(124, 58, 237, 0.08);
}

.input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
}

.input-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-main);
    caret-color: var(--purple-light);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--purple-primary), #5b21b6);
    border: none;
    border-radius: 10px;
    padding: 13px 22px;
    color: white;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #8b5cf6, var(--purple-primary));
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4), 0 4px 15px rgba(124, 58, 237, 0.3);
    transform: translateY(-1px);
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(3px);
}

.success-msg {
    display: none;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #34d399;
    font-weight: 500;
    animation: fadeSlideUp 0.4s ease;
}

.success-msg.show {
    display: flex;
}

/* ---------- Feature Pills ---------- */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    animation: fadeSlideUp 0.9s ease 0.6s both;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: default;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-pill:hover {
    border-color: rgba(139, 92, 246, 0.4);
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.feature-icon {
    font-size: 0.9rem;
}

/* ---------- Team Section ---------- */
.team-section {
    width: 100%;
    padding: 28px 0 18px;
    animation: fadeSlideUp 0.9s ease 0.65s both;
}

.team-shell {
    position: relative;
    border-radius: 32px;
    border: 1px solid rgba(240, 171, 252, 0.25);
    background:
        radial-gradient(160% 120% at 110% -10%, rgba(56, 189, 248, 0.2), transparent 46%),
        radial-gradient(150% 130% at -10% 120%, rgba(244, 114, 182, 0.18), transparent 48%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(17, 24, 39, 0.65) 48%, rgba(15, 23, 42, 0.8));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: clamp(20px, 3vw, 36px);
    overflow: hidden;
    box-shadow: 0 30px 65px rgba(3, 7, 18, 0.4);
}

.team-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(236, 72, 153, 0.08), transparent 45%),
        linear-gradient(285deg, rgba(56, 189, 248, 0.12), transparent 50%);
    pointer-events: none;
}

.team-meta {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.team-kicker-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.team-kicker {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(248, 113, 113, 0.45);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #fecaca;
    background: rgba(248, 113, 113, 0.12);
}

.team-chip {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    color: #bfdbfe;
    border: 1px dashed rgba(125, 211, 252, 0.45);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(56, 189, 248, 0.08);
}

.team-heading {
    font-family: var(--font-display);
    margin-top: 14px;
    font-size: clamp(1.5rem, 4.1vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 800;
    max-width: 720px;
    text-wrap: balance;
}

.team-subtext {
    margin-top: 12px;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 700px;
}

.team-metrics {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 700px;
}

.metric-card {
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(15, 23, 42, 0.35));
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.metric-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
}

.team-core-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.core-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(5, 5, 13, 0.52);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    min-height: 380px;
    transform-style: preserve-3d;
    grid-column: span 4;
}

.core-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(2 6 23 / 0%), rgb(2 6 23 / 34%) 65%, rgba(2, 6, 23, 0.95));
    z-index: 1;
    pointer-events: none;
}

.core-card:hover {
    transform: translateY(-6px) rotate(-0.6deg);
    border-color: rgba(125, 211, 252, 0.6);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.6);
}

.core-card-featured {
    grid-column: span 6;
}

.sticker {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #0f172a;
    font-weight: 700;
    background: #fef08a;
    border-radius: 999px;
    padding: 7px 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.core-photo {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

.core-content {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    transform: translateZ(14px);
}

.core-tag {
    display: inline-block;
    margin-bottom: 8px;
    border: 1px solid rgba(186, 230, 253, 0.6);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #e0f2fe;
    background: rgba(56, 189, 248, 0.17);
}

.core-name {
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.core-role {
    margin-top: 4px;
    font-size: 0.8rem;
    color: #dbeafe;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.core-bio {
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.52;
    color: #cbd5e1;
}

.team-divider {
    margin: 24px 0 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.5), rgba(244, 114, 182, 0.5), transparent);
}

.squad-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.squad-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f8fafc;
    font-weight: 700;
}

.squad-note {
    font-size: 0.78rem;
    color: #94a3b8;
}

.squad-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.squad-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(145deg, rgba(2, 6, 23, 0.45), rgba(30, 41, 59, 0.55));
    padding: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.squad-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 181, 253, 0.68);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.45);
}

.squad-photo-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(140deg, rgba(167, 139, 250, 0.95), rgba(103, 232, 249, 0.75));
    padding: 2px;
}

.squad-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.squad-name {
    margin-top: 10px;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--text-primary);
}

.squad-role {
    margin-top: 5px;
    font-size: 0.76rem;
    color: var(--text-secondary);
}

.squad-chip {
    margin-top: 10px;
    display: inline-flex;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e2e8f0;
    border: 1px solid rgba(125, 211, 252, 0.42);
    border-radius: 999px;
    padding: 4px 9px;
    background: rgba(56, 189, 248, 0.1);
}

.squad-card.reveal-in {
    animation: revealCard 0.65s ease forwards;
}

@keyframes revealCard {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Footer ---------- */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 30px 0 40px;
    animation: fadeSlideUp 0.9s ease 0.7s both;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.social-link:hover {
    border-color: rgba(139, 92, 246, 0.4);
    color: var(--purple-light);
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.footer-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---------- Animations ---------- */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .header {
        padding: 20px 0;
    }

    .status-pill {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .main-content {
        padding: 40px 0 30px;
        gap: 22px;
    }

    .countdown {
        gap: 8px;
    }

    .time-block {
        padding: 14px 16px;
        min-width: 65px;
        border-radius: 12px;
    }

    .time-separator {
        font-size: 1.4rem;
    }

    .email-form {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
    }

    .input-wrapper {
        padding: 10px 14px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .break-desktop {
        display: none;
    }

    .features {
        gap: 8px;
    }

    .feature-pill {
        font-size: 0.78rem;
        padding: 7px 14px;
    }

    .team-shell {
        border-radius: 20px;
    }

    .team-metrics {
        grid-template-columns: 1fr;
    }

    .team-core-grid {
        grid-template-columns: 1fr;
    }

    .core-card {
        min-height: 340px;
        grid-column: auto;
    }

    .core-card-featured {
        grid-column: auto;
    }

    .core-photo {
        min-height: 340px;
    }

    .squad-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .squad-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .headline {
        letter-spacing: -0.03em;
    }

    .countdown {
        gap: 6px;
    }

    .time-block {
        padding: 12px 12px;
        min-width: 58px;
        border-radius: 10px;
    }

    .time-value {
        font-size: 1.4rem;
    }

    .time-unit {
        font-size: 0.6rem;
    }

    .time-separator {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .team-kicker {
        font-size: 0.7rem;
    }

    .team-subtext {
        font-size: 0.86rem;
    }

    .team-heading {
        font-size: 1.5rem;
    }

    .team-kicker {
        font-size: 0.64rem;
        padding: 6px 10px;
    }

    .team-chip {
        font-size: 0.64rem;
        padding: 6px 10px;
    }

    .core-card {
        min-height: 320px;
    }

    .core-photo {
        min-height: 320px;
    }

    .core-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .squad-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.4);
    border-radius: 2px;
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(124, 58, 237, 0.35);
    color: white;
}
