/* ============================================
   LOCAL HUB — ULTRA PREMIUM COMING SOON
   style.css
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --c-bg:         #03050f;
    --c-surface:    #080c1a;
    --c-card:       rgba(10, 15, 35, 0.65);
    --c-border:     rgba(255, 255, 255, 0.07);
    --c-border-hi:  rgba(255, 255, 255, 0.15);

    --c-white:      #ffffff;
    --c-muted:      rgba(255, 255, 255, 0.55);
    --c-soft:       rgba(255, 255, 255, 0.35);

    /* Brand Palette */
    --c-indigo:     #6366f1;
    --c-violet:     #8b5cf6;
    --c-cyan:       #06b6d4;
    --c-emerald:    #10b981;
    --c-rose:       #f43f5e;
    --c-amber:      #f59e0b;

    /* Gradients */
    --grad-brand:   linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #06b6d4 100%);
    --grad-gold:    linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --grad-aurora:  linear-gradient(135deg, rgba(99,102,241,0.6) 0%, rgba(139,92,246,0.4) 50%, rgba(6,182,212,0.6) 100%);
    --grad-text:    linear-gradient(135deg, #f0f4ff 0%, #c4b5fd 40%, #67e8f9 100%);

    /* Shadows */
    --shadow-card:  0 32px 80px rgba(0,0,0,0.6), 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
    --shadow-glow:  0 0 60px rgba(99,102,241,0.25), 0 0 120px rgba(139,92,246,0.15);
    --shadow-btn:   0 8px 32px rgba(99,102,241,0.4), 0 2px 8px rgba(99,102,241,0.2);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body:    'Space Grotesk', sans-serif;

    /* Transitions */
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-exit:    cubic-bezier(0.36, 0, 0.66, 0);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--c-bg);
    color: var(--c-white);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* ---------- Particle Canvas ---------- */
#particle-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ---------- Aurora Background ---------- */
.bg-aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 15%, rgba(99,102,241,0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(6,182,212,0.3) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 50% 50%, rgba(139,92,246,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 80% 10%, rgba(244,63,94,0.15) 0%, transparent 50%);
    animation: auroraShift 18s ease-in-out infinite alternate;
    filter: blur(60px);
}

@keyframes auroraShift {
    0%   { transform: scale(1) translate(0%, 0%); opacity: 1; }
    25%  { transform: scale(1.06) translate(3%, -2%); opacity: 0.85; }
    50%  { transform: scale(0.96) translate(-2%, 3%); opacity: 1; }
    75%  { transform: scale(1.04) translate(-3%, -1%); opacity: 0.9; }
    100% { transform: scale(1) translate(2%, 1%); opacity: 1; }
}

/* ---------- Grid Overlay ---------- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ---------- Noise Film Grain ---------- */
.noise-overlay {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: noiseAnim 0.15s steps(1) infinite;
}

@keyframes noiseAnim {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(-4%, -4%); }
    40%  { transform: translate(4%, -2%); }
    60%  { transform: translate(-2%, 6%); }
    80%  { transform: translate(6%, 2%); }
    100% { transform: translate(-2%, -4%); }
}

/* ---------- Floating Orbs ---------- */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat linear infinite alternate;
}

.orb-1 {
    width: 500px; height: 500px;
    top: -10%; left: -10%;
    background: radial-gradient(circle, rgba(99,102,241,0.4) 0%, transparent 70%);
    animation-duration: 22s;
}
.orb-2 {
    width: 400px; height: 400px;
    bottom: -5%; right: -5%;
    background: radial-gradient(circle, rgba(6,182,212,0.35) 0%, transparent 70%);
    animation-duration: 17s;
    animation-delay: -7s;
}
.orb-3 {
    width: 300px; height: 300px;
    top: 40%; left: 55%;
    background: radial-gradient(circle, rgba(244,63,94,0.2) 0%, transparent 70%);
    animation-duration: 25s;
    animation-delay: -14s;
}
.orb-4 {
    width: 250px; height: 250px;
    top: 20%; right: 20%;
    background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
    animation-duration: 19s;
    animation-delay: -3s;
}

@keyframes orbFloat {
    0%   { transform: translate(0%, 0%) rotate(0deg); }
    33%  { transform: translate(4%, -4%) rotate(60deg); }
    66%  { transform: translate(-3%, 5%) rotate(120deg); }
    100% { transform: translate(2%, -2%) rotate(180deg); }
}

/* ---------- Page Wrapper ---------- */
.page-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---------- Top Bar ---------- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: rgba(3, 5, 15, 0.5);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid var(--c-border);
    animation: slideDown 0.8s var(--ease-smooth) both;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--c-white);
}

.brand-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--c-border);
    overflow: hidden;
    transition: all 0.3s var(--ease-spring);
}

.brand-icon:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--c-indigo);
    background: rgba(99, 102, 241, 0.1);
}

.logo-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: lowercase;
}

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

.live-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.75);
}

.live-dot {
    width: 7px;
    height: 7px;
    background: var(--c-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--c-cyan);
    animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--c-cyan); }
    50% { opacity: 0.5; box-shadow: 0 0 20px var(--c-cyan), 0 0 40px var(--c-cyan); }
}

.domain-tag {
    font-size: 0.8rem;
    color: var(--c-muted);
    letter-spacing: 0.5px;
    font-family: var(--font-display);
}

/* ---------- Hero / Main ---------- */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 40px;
    gap: 40px;
    min-height: 100vh;
    position: relative;
}

/* ---------- Decorative Lines ---------- */
.deco-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0.4;
    flex-shrink: 0;
}

.deco-lines .line {
    width: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
}

.left-lines .line:nth-child(1) { height: 120px; animation: lineGrow 3s ease-in-out 0.2s infinite alternate; }
.left-lines .line:nth-child(2) { height: 80px;  animation: lineGrow 3s ease-in-out 0.6s infinite alternate; }
.left-lines .line:nth-child(3) { height: 50px;  animation: lineGrow 3s ease-in-out 1.0s infinite alternate; }

.right-lines .line:nth-child(1) { height: 50px;  animation: lineGrow 3s ease-in-out 0.4s infinite alternate; }
.right-lines .line:nth-child(2) { height: 80px;  animation: lineGrow 3s ease-in-out 0.8s infinite alternate; }
.right-lines .line:nth-child(3) { height: 120px; animation: lineGrow 3s ease-in-out 1.2s infinite alternate; }

@keyframes lineGrow {
    from { transform: scaleY(0.5); opacity: 0.2; }
    to   { transform: scaleY(1); opacity: 0.6; }
}

@media (max-width: 900px) { .deco-lines { display: none; } }

/* ---------- Glass Card ---------- */
.glass-card {
    background: var(--c-card);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border: 1px solid var(--c-border);
    border-radius: 32px;
    padding: 60px 56px;
    max-width: 720px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    animation: cardReveal 1.2s var(--ease-smooth) 0.3s both;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: default;
}

@keyframes cardReveal {
    from { opacity: 0; transform: translateY(40px) scale(0.97) perspective(2000px); filter: blur(8px); }
    to   { opacity: 1; transform: translateY(0) scale(1) perspective(2000px);       filter: blur(0); }
}

/* Holographic Border Animation */
.holo-border {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: conic-gradient(
        from var(--holo-angle, 0deg),
        transparent 0deg,
        rgba(99,102,241,0.6) 60deg,
        rgba(139,92,246,0.8) 120deg,
        rgba(6,182,212,0.6) 180deg,
        rgba(244,63,94,0.4) 240deg,
        rgba(251,191,36,0.5) 300deg,
        transparent 360deg
    );
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: holoBorder 4s linear infinite;
    pointer-events: none;
}

@keyframes holoBorder {
    to { --holo-angle: 360deg; }
}

@property --holo-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

/* Inner Glow */
.card-inner-glow {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(99,102,241,0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Shimmer Sweep */
.glass-card::after {
    content: '';
    position: absolute;
    top: 0; left: -200%;
    width: 300%; height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
    animation: shimmerSweep 7s linear infinite;
    pointer-events: none;
}

@keyframes shimmerSweep {
    0%   { left: -200%; }
    100% { left: 200%; }
}

/* ---------- Status Pill ---------- */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    animation: fadeUp 0.8s var(--ease-smooth) 0.8s both;
}

.pill-dot {
    width: 6px;
    height: 6px;
    background: var(--c-amber);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--c-amber);
    animation: pillPulse 2s ease-in-out infinite;
}

@keyframes pillPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Logo Lockup ---------- */
.logo-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s var(--ease-smooth) 0.9s both;
}

.logo-symbol {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.4));
    animation: logoFloat 4s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    100% { transform: translateY(-6px) scale(1.05) rotate(3deg); }
}

.logo-text-group { text-align: left; }

.logo-main {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

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

.logo-domain {
    font-size: 0.75rem;
    color: var(--c-soft);
    letter-spacing: 0.5px;
    margin-top: 3px;
}

/* ---------- Headline ---------- */
.headline-block {
    margin-bottom: 48px;
    animation: fadeUp 0.8s var(--ease-smooth) 1.0s both;
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c-indigo);
    margin-bottom: 14px;
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 18px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.headline-static {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.headline-morph {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.4s ease;
}

.headline-morph.fade {
    opacity: 0;
    transform: translateY(10px);
}

.subheadline {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--c-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ---------- Countdown ---------- */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s var(--ease-smooth) 1.1s both;
}

.count-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 18px 22px;
    min-width: 90px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}

.count-item:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: var(--c-border-hi);
}

.count-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    pointer-events: none;
}

.count-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.15s;
}

.count-number.flip {
    animation: numFlip 0.3s ease;
}

@keyframes numFlip {
    0%   { transform: translateY(-8px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.count-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-soft);
    margin-top: 6px;
}

.count-sep {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    opacity: 0.7;
    animation: sepBlink 1s step-start infinite;
}

@keyframes sepBlink {
    0%, 49% { opacity: 0.7; }
    50%, 100% { opacity: 0.2; }
}

/* ---------- Progress Bar ---------- */
.progress-track {
    margin-bottom: 40px;
    animation: fadeUp 0.8s var(--ease-smooth) 1.2s both;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--c-muted);
    margin-bottom: 10px;
}

.progress-val {
    font-family: var(--font-display);
    font-weight: 700;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.progress-bar-outer {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.progress-bar-inner {
    height: 100%;
    width: 0;
    border-radius: 100px;
    background: var(--grad-brand);
    box-shadow: 0 0 16px rgba(99,102,241,0.6);
    transition: width 2.4s cubic-bezier(0.34, 1.1, 0.64, 1);
    position: relative;
}

.progress-bar-inner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px rgba(99,102,241,0.8), 0 0 4px white;
}

/* ---------- Notify Section ---------- */
.notify-section {
    margin-bottom: 40px;
    animation: fadeUp 0.8s var(--ease-smooth) 1.3s both;
}

.notify-label {
    font-size: 0.8rem;
    color: var(--c-muted);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.notify-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.input-group {
    flex: 1;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-soft);
    pointer-events: none;
    transition: color 0.3s;
}

.email-input {
    width: 100%;
    height: 52px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 0 18px 0 48px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--c-white);
    outline: none;
    transition: all 0.3s var(--ease-smooth);
}

.email-input::placeholder {
    color: var(--c-soft);
}

.email-input:focus {
    border-color: var(--c-indigo);
    background: rgba(99,102,241,0.06);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.email-input:focus + .input-icon,
.input-group:focus-within .input-icon {
    color: var(--c-indigo);
}

.notify-btn {
    height: 52px;
    padding: 0 28px;
    background: var(--grad-brand);
    border: none;
    border-radius: 14px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-spring);
    box-shadow: var(--shadow-btn);
}

.notify-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 40px rgba(99,102,241,0.5), 0 4px 12px rgba(99,102,241,0.3);
}

.notify-btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    animation: btnShine 3s linear infinite;
}

@keyframes btnShine {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.btn-arrow { display: flex; align-items: center; }

/* Success message */
.form-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--c-emerald);
    animation: fadeUp 0.6s var(--ease-smooth);
}

.form-success.show { display: flex; }

/* ---------- Divider ---------- */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s var(--ease-smooth) 1.4s both;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--c-border);
}

.divider-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-soft);
    white-space: nowrap;
}

/* ---------- Social Buttons ---------- */
.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: fadeUp 0.8s var(--ease-smooth) 1.5s both;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--c-border);
    border-radius: 100px;
    text-decoration: none;
    color: var(--c-muted);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: var(--grad-brand);
    opacity: 0;
    transition: opacity 0.3s;
}

.social-btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 8px 24px rgba(99,102,241,0.3);
}

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

.social-btn svg,
.social-btn span {
    position: relative;
    z-index: 1;
}

/* ---------- Footer ---------- */
.page-footer {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(3,5,15,0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--c-border);
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeUp 0.8s var(--ease-smooth) 1.6s both;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    font-size: 0.72rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--c-border);
    border-radius: 100px;
    padding: 4px 12px;
    color: var(--c-muted);
    letter-spacing: 0.3px;
}

.footer-link {
    font-size: 0.78rem;
    color: var(--c-indigo);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover { color: var(--c-cyan); }

/* ---------- Responsive ---------- */
@media (max-width: 680px) {
    .top-bar { padding: 14px 20px; }
    .domain-tag { display: none; }
    .hero { padding: 100px 16px 30px; }
    .glass-card { padding: 40px 24px; border-radius: 24px; }
    .logo-lockup { flex-direction: column; gap: 12px; }
    .logo-text-group { text-align: center; }
    .logo-main { font-size: 2rem; }
    .headline-block { margin-bottom: 32px; }
    .headline { font-size: 2.2rem; gap: 10px; }
    .count-item { min-width: 70px; padding: 14px 14px; }
    .count-number { font-size: 2rem; }
    .notify-form { flex-direction: column; }
    .notify-btn { width: 100%; justify-content: center; }
    .page-footer { flex-direction: column; align-items: center; text-align: center; padding: 16px 20px; }
    .socials { gap: 8px; }
    .social-btn span { display: none; }
    .social-btn { padding: 10px 14px; }
}

@media (max-width: 480px) {
    .countdown { gap: 2px; }
    .count-item { min-width: 60px; padding: 12px 10px; }
    .count-number { font-size: 1.8rem; }
    .count-sep { font-size: 1.8rem; }
}
