/* ============================================
   COMING SOON — Premium Landing Page
   ============================================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #060608;
    --bg-secondary: #0a0a12;
    --bg-tertiary: #101018;
    --text-primary: #f5f5f7;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --accent-1: #818cf8;
    --accent-2: #c084fc;
    --accent-3: #22d3ee;
    --accent-4: #f472b6;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.07);
    --shadow-glow: 0 0 40px rgba(129, 140, 248, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.5);

    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-1), var(--accent-2));
    border-radius: 10px;
}

/* === SELECTION === */
::selection {
    background: rgba(129, 140, 248, 0.3);
    color: var(--text-primary);
}

/* === PAGE LOADER === */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    width: 60px;
    height: 60px;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: var(--accent-1);
    animation: spin 1.2s linear infinite;
}

.loader-ring--2 {
    inset: 8px;
    border-top-color: var(--accent-2);
    animation-duration: 1.6s;
    animation-direction: reverse;
}

.loader-ring--3 {
    inset: 16px;
    border-top-color: var(--accent-3);
    animation-duration: 2s;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === ANIMATED BACKGROUND === */
.bg-wrapper {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at top, #0d0d18 0%, var(--bg-primary) 60%);
}

.particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gradient-mesh {
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(circle at 20% 30%, rgba(129, 140, 248, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(192, 132, 252, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.06) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite alternate;
}

@keyframes meshMove {
    0%   { transform: translate(0, 0) rotate(0deg); }
    50%  { transform: translate(3%, -2%) rotate(2deg); }
    100% { transform: translate(-2%, 3%) rotate(-2deg); }
}

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb--1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.4), transparent 70%);
    top: -100px; left: -100px;
    animation-delay: 0s;
}

.orb--2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.35), transparent 70%);
    top: 40%; right: -80px;
    animation-delay: -3s;
}

.orb--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 70%);
    bottom: -50px; left: 30%;
    animation-delay: -6s;
}

.orb--4 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.2), transparent 70%);
    top: 20%; left: 50%;
    animation-delay: -9s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -40px) scale(1.05); }
    66%      { transform: translate(-20px, 30px) scale(0.95); }
}

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

/* === CUSTOM CURSOR === */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent-1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s var(--ease-smooth), opacity 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(129, 140, 248, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.2s var(--ease-smooth), width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-ring.hovering {
    width: 56px;
    height: 56px;
    border-color: rgba(192, 132, 252, 0.6);
    background: rgba(129, 140, 248, 0.05);
}

/* === SCROLL PROGRESS === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3));
    z-index: 9998;
    transition: width 0.1s linear;
}

/* === GLASSMORPHISM === */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

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

/* === LAYOUT === */
main {
    position: relative;
    z-index: 1;
}

section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* === SECTION LABELS === */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 100px;
    background: rgba(129, 140, 248, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
}

.hero__content {
    max-width: 760px;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    background: rgba(129, 140, 248, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-1);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-1);
    box-shadow: 0 0 10px var(--accent-1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    position: relative;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: none;
    overflow: hidden;
    transition: all 0.4s var(--ease-bounce);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 4px 20px rgba(129, 140, 248, 0.4), 0 0 0 0 rgba(129, 140, 248, 0.4);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(129, 140, 248, 0.5), 0 0 0 4px rgba(129, 140, 248, 0.1);
}

.btn--primary:active {
    transform: translateY(-1px);
}

.btn--secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: var(--glass-hover);
    border-color: rgba(129, 140, 248, 0.3);
    transform: translateY(-3px);
}

.btn__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s var(--ease-out);
    pointer-events: none;
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

.btn__spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn--loading .btn__text { opacity: 0.5; }
.btn--loading .btn__spinner { display: block; position: absolute; }

/* === SCROLL INDICATOR === */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-1), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === COUNTDOWN === */
.countdown-section {
    text-align: center;
}

.countdown__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 2rem auto 0;
}

.countdown__card {
    padding: 2rem 1rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.countdown__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.countdown__card:hover::before {
    opacity: 1;
}

.countdown__number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s var(--ease-bounce);
}

.countdown__card:hover .countdown__number {
    transform: scale(1.08);
}

.countdown__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* Number flip animation */
.countdown__number.flip {
    animation: numberFlip 0.5s var(--ease-out);
}

@keyframes numberFlip {
    0%   { transform: rotateX(0deg); opacity: 1; }
    50%  { transform: rotateX(90deg); opacity: 0; }
    100% { transform: rotateX(0deg); opacity: 1; }
}

/* === SUBSCRIBE === */
.subscribe-section {
    text-align: center;
    max-width: 600px;
}

.subscribe__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.subscribe__subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.subscribe__form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.input-wrapper {
    position: relative;
    flex: 1;
    min-width: 260px;
    max-width: 380px;
}

.input-field {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s var(--ease-smooth);
    backdrop-filter: blur(10px);
    cursor: none;
}

.input-field:focus {
    border-color: rgba(129, 140, 248, 0.5);
    box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.1), 0 0 20px rgba(129, 140, 248, 0.1);
}

.input-field.error {
    border-color: rgba(244, 114, 182, 0.5);
    box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.1);
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(-8px); }
    75%      { transform: translateX(8px); }
}

.input-label {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s var(--ease-smooth);
    background: transparent;
    padding: 0 0.4rem;
}

.input-field:focus + .input-label,
.input-field:not(:placeholder-shown) + .input-label {
    top: 0;
    font-size: 0.7rem;
    color: var(--accent-1);
    background: var(--bg-primary);
    transform: translateY(-50%);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    transition: width 0.4s var(--ease-out);
    transform: translateX(-50%);
}

.input-field:focus ~ .input-line {
    width: 80%;
}

.btn--submit {
    white-space: nowrap;
}

.form-message {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    min-height: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    color: var(--accent-3);
}

.form-message.error {
    color: var(--accent-4);
}

/* Success checkmark */
.success-check {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--accent-3);
    position: relative;
    vertical-align: middle;
    margin-right: 0.5rem;
    animation: checkPop 0.4s var(--ease-bounce);
}

.success-check::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid var(--accent-3);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: checkDraw 0.3s 0.2s var(--ease-out) both;
}

@keyframes checkPop {
    0%   { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkDraw {
    0%   { height: 0; }
    100% { height: 12px; }
}

/* === FEATURES === */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(129, 140, 248, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(129, 140, 248, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(129, 140, 248, 0.1);
}

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

.feature-card:focus-visible {
    outline: 2px solid var(--accent-1);
    outline-offset: 4px;
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s var(--ease-bounce);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(129, 140, 248, 0.3));
}

.feature-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature-card__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* === SOCIAL === */
.social__icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-bounce);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s var(--ease-smooth);
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    opacity: 0;
    transition: opacity 0.4s;
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.1);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 30px rgba(129, 140, 248, 0.3);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover svg {
    transform: scale(1.15);
    position: relative;
    z-index: 1;
}

.social-icon:focus-visible {
    outline: 2px solid var(--accent-1);
    outline-offset: 4px;
}

/* === FOOTER === */
.footer {
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer__tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer__links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    position: relative;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-1);
    transition: width 0.3s var(--ease-out);
}

.footer__link:hover {
    color: var(--text-primary);
}

.footer__link:hover::after {
    width: 100%;
}

.footer__copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    width: 100%;
}

/* === REVEAL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .countdown__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .subscribe__form {
        flex-direction: column;
        align-items: center;
    }

    .input-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .btn--submit {
        width: 100%;
        max-width: 380px;
    }

    .footer__links {
        gap: 1.2rem;
    }

    .social__icons {
        gap: 0.8rem;
    }

    .social-icon {
        width: 46px;
        height: 46px;
    }

    .hero__cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    /* Disable custom cursor on touch */
    .cursor-dot, .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }

    .input-field {
        cursor: text;
    }

    .btn {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .countdown__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown__card {
        padding: 1.5rem 0.5rem;
    }

    .hero__badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gradient-mesh,
    .orb,
    .hero__content,
    .particles-canvas {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
