/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --purple:     #7c3aed;
    --purple-lt:  #a78bfa;
    --blue:       #60a5fa;
    --bg-dark:    #0f0c29;
    --card-bg:    rgba(255,255,255,0.04);
    --border:     rgba(255,255,255,0.08);
    --text-muted: #94a3b8;
    --text-dim:   #64748b;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

/* ── Particles ── */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    bottom: -10px;
    background: var(--purple-lt);
    border-radius: 50%;
    opacity: 0.15;
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0%   { transform: translateY(0)   rotate(0deg);   opacity: 0.15; }
    100% { transform: translateY(-110vh) rotate(720deg); opacity: 0; }
}

/* ── Header ── */
.site-header {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--purple-lt);
    letter-spacing: 1px;
}
.logo-icon { font-size: 2.2rem; color: var(--purple); }
.tagline   { font-size: 0.8rem; color: var(--text-dim); letter-spacing: 0.6px; }

/* ── Hero ── */
.hero {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px 70px;
    max-width: 880px;
    width: 100%;
    gap: 32px;
}

/* ── Launch Badge ── */
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124,58,237,0.18);
    border: 1px solid rgba(124,58,237,0.4);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--purple-lt);
    font-weight: 600;
}
.badge-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.badge-dot.live { background: #f59e0b; }
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1);   }
    50%      { opacity: 0.5; transform: scale(1.4); }
}

/* ── Rocket ── */
.rocket-wrap {
    position: relative;
    width: 100px; height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rocket {
    font-size: 4rem;
    animation: rocketFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(124,58,237,0.6));
}
.rocket-glow {
    position: absolute;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(124,58,237,0.3), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}
@keyframes rocketFloat {
    0%,100% { transform: translateY(0)   rotate(-45deg); }
    50%      { transform: translateY(-14px) rotate(-45deg); }
}
@keyframes glowPulse {
    0%,100% { transform: scale(1);   opacity: 0.7; }
    50%      { transform: scale(1.3); opacity: 1;   }
}

/* ── Title ── */
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
}
.gradient-text {
    background: linear-gradient(90deg, var(--purple-lt), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 600px;
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 16px;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124,58,237,0.5);
    background: rgba(124,58,237,0.1);
}
.service-icon {
    width: 48px; height: 48px;
    background: rgba(124,58,237,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--purple-lt);
}
.service-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.service-card p  { font-size: 0.78rem; color: var(--text-muted); }

/* ── Countdown ── */
.countdown-section { text-align: center; }
.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.countdown {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 24px;
    min-width: 88px;
    transition: transform 0.2s;
}
.time-box:hover { transform: translateY(-4px); }
.time-box span {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--purple-lt);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.time-box label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sep {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 24px;
}

/* ── Progress ── */
.progress-wrap { width: 100%; max-width: 600px; }
.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.progress-bar {
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    height: 14px;
    overflow: visible;
    position: relative;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    border-radius: 999px;
    position: relative;
    transition: width 1s ease;
}
.progress-glow {
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--blue);
}

/* Milestones */
.milestones {
    position: relative;
    height: 42px;
    margin-top: 6px;
}
.milestone {
    position: absolute;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.m-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--text-dim);
    border: 2px solid var(--bg-dark);
    transition: background 0.3s;
}
.milestone.done .m-dot { background: #22c55e; }
.milestone span {
    font-size: 0.68rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.milestone.done span { color: #86efac; }

/* ── Notify ── */
.notify-section { width: 100%; max-width: 540px; }
.notify-section h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.sub-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.sub-count strong { color: var(--purple-lt); }
.notify-form { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.input-wrap {
    flex: 1;
    min-width: 210px;
    position: relative;
}
.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 0.9rem;
}
.notify-form input {
    width: 100%;
    padding: 14px 18px 14px 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.3s;
    font-family: inherit;
}
.notify-form input::placeholder { color: var(--text-dim); }
.notify-form input:focus        { border-color: var(--purple); }
.notify-form input.input-error  { border-color: #ef4444; animation: shake 0.3s; }
@keyframes shake {
    0%,100% { transform: translateX(0); }
    25%      { transform: translateX(-6px); }
    75%      { transform: translateX(6px); }
}
.notify-form button {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--purple), #4f46e5);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}
.notify-form button:hover:not(:disabled) {
    opacity: 0.88;
    transform: translateY(-2px);
}
.notify-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.notify-note { font-size: 0.78rem; color: var(--text-dim); text-align: center; }

/* ── Messages ── */
.msg {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 14px;
    text-align: left;
}
.msg.success { background: rgba(34,197,94,0.12);  border: 1px solid #22c55e; color: #86efac; }
.msg.error   { background: rgba(239,68,68,0.12);  border: 1px solid #ef4444; color: #fca5a5; }
.msg.info    { background: rgba(59,130,246,0.12); border: 1px solid #3b82f6; color: #93c5fd; }

/* ── What to Expect ── */
.expect-section { width: 100%; }
.expect-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 16px;
}
.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.expect-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.83rem;
    color: #cbd5e1;
    transition: border-color 0.25s, transform 0.25s;
}
.expect-item:hover {
    border-color: rgba(124,58,237,0.4);
    transform: translateY(-2px);
}
.expect-item i { color: var(--purple-lt); font-size: 1rem; min-width: 18px; }

/* ── Contact ── */
.contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
}
.contact-info a:hover { color: var(--purple-lt); }

/* ── Social ── */
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.25s;
    text-decoration: none;
}
.social-links a:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
    transform: translateY(-4px);
}

/* ── Footer ── */
.site-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 22px;
    font-size: 0.78rem;
    color: #334155;
    border-top: 1px solid var(--border);
}

/* ── Scroll Fade-in ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 680px) {
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .expect-grid    { grid-template-columns: repeat(2, 1fr); }
    .hero-title     { font-size: 2.1rem; }
}
@media (max-width: 480px) {
    .services-grid  { grid-template-columns: 1fr; }
    .expect-grid    { grid-template-columns: 1fr; }
    .hero-title     { font-size: 1.8rem; }
    .time-box       { min-width: 64px; padding: 12px 14px; }
    .time-box span  { font-size: 2rem; }
    .notify-form    { flex-direction: column; }
    .notify-form button { width: 100%; justify-content: center; }
    .milestones     { display: none; }
}

/* ── Honeypot — completely hidden from real users ── */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* ── Submit button disabled state ── */
.notify-form button:not(.ready) {
    opacity: 0.6;
    cursor: not-allowed;
}
.notify-form button.ready {
    opacity: 1;
    cursor: pointer;
}
.notify-form button.ready:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}