:root {
    --bg-1: #020617;
    --bg-2: #0f172a;
    --bg-3: #111827;
    --cyan: #06b6d4;
    --blue: #3b82f6;
    --violet: #8b5cf6;
    --text: #ffffff;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --line: rgba(255,255,255,.1);
    --panel: rgba(255,255,255,.055);
    --panel-hover: rgba(255,255,255,.09);
    --error: #fca5a5;
    --success: #86efac;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background:
        radial-gradient(circle at 85% 3%, rgba(59, 130, 246, .22), transparent 32rem),
        radial-gradient(circle at 8% 45%, rgba(139, 92, 246, .16), transparent 28rem),
        linear-gradient(135deg, var(--bg-1), var(--bg-2) 52%, var(--bg-3));
    overflow-x: hidden;
}

a {
    color: var(--cyan);
    text-decoration: none;
}

a:hover {
    color: #67e8f9;
}

.page-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.background-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob,
.shape,
.particle {
    position: absolute;
    display: block;
}

.blob {
    border-radius: 999px;
    filter: blur(55px);
    animation: pulseGlow 4.5s ease-in-out infinite;
}

.blob-one {
    width: 24rem;
    height: 24rem;
    top: -9rem;
    right: -8rem;
    background: linear-gradient(135deg, rgba(59,130,246,.22), rgba(6,182,212,.12));
}

.blob-two {
    width: 20rem;
    height: 20rem;
    top: 32%;
    left: -8rem;
    background: linear-gradient(135deg, rgba(139,92,246,.18), rgba(79,70,229,.12));
    animation-delay: .5s;
    animation-duration: 5.2s;
}

.blob-three {
    width: 24rem;
    height: 24rem;
    bottom: -9rem;
    right: 25%;
    background: linear-gradient(45deg, rgba(6,182,212,.10), rgba(59,130,246,.08));
}

.shape-diamond {
    top: 6rem;
    left: 25%;
    width: 8rem;
    height: 8rem;
    border: 2px solid rgba(59,130,246,.30);
    border-radius: 1rem;
    transform: rotate(45deg);
    animation: spinSlow 20s linear infinite;
}

.shape-circle {
    bottom: 24%;
    right: 30%;
    width: 6rem;
    height: 6rem;
    border: 1px solid rgba(139,92,246,.22);
    border-radius: 999px;
    animation: pulseGlow 3s ease-in-out infinite;
}

.shape-rounded {
    top: 48%;
    left: 50%;
    width: 12rem;
    height: 12rem;
    border: 1px solid rgba(6,182,212,.12);
    border-radius: 2rem;
    transform: translate(-50%, -50%);
}

.particle {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(34,211,238,.45);
    animation: floatUp linear infinite;
}

.particle-one { left: 16%; top: 75%; animation-duration: 5s; }
.particle-two { left: 36%; top: 62%; animation-duration: 6s; animation-delay: .4s; }
.particle-three { left: 58%; top: 80%; animation-duration: 7s; animation-delay: .8s; }
.particle-four { left: 74%; top: 58%; animation-duration: 6.5s; animation-delay: 1.2s; }
.particle-five { left: 88%; top: 72%; animation-duration: 5.8s; animation-delay: 1.6s; }

.content-wrap {
    position: relative;
    z-index: 2;
    width: min(100% - 2rem, 48rem);
    margin: 0 auto;
    padding: 5rem 0 3rem;
    text-align: center;
}

.accent-line {
    width: 4rem;
    height: 4px;
    margin: 0 auto 3rem;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.site-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.25rem;
    padding: .55rem .95rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    color: var(--soft);
    background: rgba(255,255,255,.045);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-section {
    margin-bottom: 4rem;
}

.hero-section h1 {
    margin: 0 0 1.5rem;
    font-size: clamp(4.6rem, 12vw, 7.2rem);
    line-height: .92;
    font-weight: 300;
    letter-spacing: -.075em;
}

.coming-word {
    position: relative;
    display: inline-block;
    padding-bottom: .4rem;
}

.coming-word::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .1rem;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
    box-shadow: 0 0 18px rgba(6,182,212,.55);
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    max-width: 42rem;
    margin: 0 auto 2rem;
    color: #d1d5db;
    font-size: clamp(1.08rem, 2.5vw, 1.5rem);
    line-height: 1.65;
    font-weight: 300;
}

.hero-section h2,
.why-section h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.6rem, 7vw, 3.4rem);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -.04em;
}

.hero-note,
.why-section p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
    font-weight: 300;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.count-card {
    position: relative;
    padding: 1.5rem 1rem;
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: var(--panel);
    backdrop-filter: blur(18px);
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.count-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(6,182,212,.11), rgba(59,130,246,.06));
    opacity: 0;
    transition: opacity .25s ease;
}

.count-card:hover {
    border-color: rgba(6,182,212,.32);
    background: var(--panel-hover);
    transform: translateY(-2px);
}

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

.count-card strong,
.count-card span {
    position: relative;
    z-index: 1;
    display: block;
}

.count-card strong {
    margin-bottom: .45rem;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    font-weight: 300;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.count-card span {
    color: #64748b;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.waitlist-frame {
    position: relative;
    margin-bottom: 4rem;
}

.waitlist-frame::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 1.65rem;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
    filter: blur(18px);
    opacity: .32;
    animation: pulseGlow 4s ease-in-out infinite;
}

.waitlist-card {
    position: relative;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.5rem;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(22px);
    text-align: left;
}

.form-heading {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.icon-box {
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .8rem;
    background: linear-gradient(135deg, rgba(6,182,212,.20), rgba(59,130,246,.10));
}

svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-box svg {
    color: #22d3ee;
}

.form-heading h2 {
    margin: 0 0 .35rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.2;
    font-weight: 300;
}

.form-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}

.subscribe-form {
    display: grid;
    gap: 1rem;
}

.input-wrap {
    position: relative;
}

.input-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: .9rem;
    background: linear-gradient(90deg, rgba(6,182,212,.18), rgba(59,130,246,.10));
    filter: blur(12px);
    opacity: 0;
    transition: opacity .25s ease;
}

.input-wrap:focus-within::before,
.input-wrap:hover::before {
    opacity: 1;
}

.input-wrap svg {
    position: absolute;
    z-index: 1;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.input-wrap input {
    position: relative;
    width: 100%;
    min-height: 3.5rem;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .9rem;
    outline: none;
    color: var(--text);
    background: rgba(255,255,255,.055);
    font: inherit;
    transition: border-color .25s ease, background .25s ease;
}

.input-wrap input::placeholder {
    color: #64748b;
}

.input-wrap input:focus {
    border-color: rgba(6,182,212,.48);
    background: rgba(255,255,255,.09);
}

button {
    min-height: 3.5rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    border: 0;
    border-radius: .9rem;
    color: #fff;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 38px rgba(6,182,212,.18);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

button:hover {
    filter: brightness(1.08);
    box-shadow: 0 20px 44px rgba(6,182,212,.28);
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0) scale(.99);
}

button svg {
    width: 1.2rem;
    height: 1.2rem;
    transition: transform .2s ease;
}

button:hover svg {
    transform: translateY(2px);
}

.notice {
    padding: 1rem;
    border-radius: .9rem;
    text-align: center;
    font-weight: 600;
}

.notice-success {
    color: var(--success);
    border: 1px solid rgba(34,197,94,.32);
    background: linear-gradient(90deg, rgba(34,197,94,.12), rgba(16,185,129,.08));
}

.notice-error {
    color: var(--error);
    border: 1px solid rgba(239,68,68,.32);
    background: linear-gradient(90deg, rgba(239,68,68,.12), rgba(236,72,153,.08));
}

.privacy-line {
    margin: 1.5rem 0 0;
    text-align: center;
    color: #64748b;
    font-size: .82rem;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-card {
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    background: rgba(255,255,255,.055);
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.feature-card:hover {
    border-color: rgba(6,182,212,.32);
    background: rgba(255,255,255,.09);
    transform: translateY(-2px);
}

.feature-card div {
    margin-bottom: .55rem;
    font-size: 2rem;
    transition: transform .25s ease;
}

.feature-card:hover div {
    transform: scale(1.08);
}

.feature-card h3 {
    margin: 0;
    color: #e5e7eb;
    font-size: .95rem;
}

.feature-card p {
    margin: .25rem 0 0;
    color: #64748b;
    font-size: .8rem;
    font-weight: 300;
}

.why-section {
    margin-top: 5rem;
    padding-bottom: 1rem;
}

.why-section p {
    margin: 0 0 1rem;
}

.powered-by {
    font-size: .95rem !important;
}

.reveal-block {
    animation: fadeUp .9s ease both;
}

.reveal-delay-one { animation-delay: .12s; }
.reveal-delay-two { animation-delay: .22s; }
.reveal-delay-three { animation-delay: .32s; }
.reveal-delay-four { animation-delay: .42s; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    12% { opacity: .3; }
    50% { opacity: .55; }
    90% { opacity: .25; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

@keyframes spinSlow {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: .95; }
    50% { opacity: .62; }
}

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

@media (max-width: 720px) {
    .content-wrap {
        width: min(100% - 1.25rem, 48rem);
        padding-top: 3.25rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-heading {
        align-items: flex-start;
    }
}

@media (max-width: 420px) {
    .content-wrap {
        padding-top: 2.5rem;
    }

    .hero-section h1 {
        font-size: 4.25rem;
    }

    .countdown-grid {
        gap: .75rem;
    }

    .count-card {
        padding: 1.15rem .75rem;
    }

    .waitlist-card {
        border-radius: 1.25rem;
    }
}
