@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --green: #95bf47;
    --green-dark: #008060;
    --black: #000;
    --hero-bg-start: #003020;
    --hero-bg-mid: #004c3f;
    --hero-bg-end: #002a1e;
    --white: #fff;
    --muted: rgba(255,255,255,0.55);
    --pill: 100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    background: linear-gradient(160deg, var(--hero-bg-start) 0%, var(--hero-bg-mid) 50%, var(--hero-bg-end) 100%);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

#bgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hero-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
    animation: glowFloat 9s ease-in-out infinite;
}
.g1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(149,191,71,0.10) 0%, transparent 70%);
    top: -200px; left: -200px;
}
.g2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,128,96,0.13) 0%, transparent 70%);
    bottom: -150px; right: -100px;
    animation-delay: -4s;
}
.g3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(149,191,71,0.07) 0%, transparent 70%);
    top: 40%; left: 50%;
    animation-delay: -2s;
    animation-duration: 12s;
}
@keyframes glowFloat {
    0%, 100% { transform: scale(1) translate(0, 0); }
    33%  { transform: scale(1.1) translate(20px, -30px); }
    66%  { transform: scale(0.95) translate(-15px, 20px); }
}

/* ── NAVBAR ── */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 48px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.shopify-icon { color: var(--green); font-size: 24px; }

/* ── MAIN ── */
.main {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 24px 60px;
    gap: 0;
}

/* ── BADGE ── */
.badge-wrap { margin-bottom: 28px; }
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(149,191,71,0.12);
    border: 1px solid rgba(149,191,71,0.3);
    color: var(--green);
    padding: 7px 18px;
    border-radius: var(--pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(149,191,71,0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(149,191,71,0); }
}

/* ── HEADLINE ── */
.headline {
    font-size: clamp(46px, 7.5vw, 96px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.05;
    margin-bottom: 22px;
    color: #fff;
}
.green-text { color: var(--green); }

.sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--muted);
    line-height: 1.65;
    max-width: 580px;
    font-weight: 400;
    margin-bottom: 56px;
}

/* ── COUNTDOWN ── */
.countdown {
    display: flex;
    align-items: flex-start;
    margin-bottom: 56px;
}
.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
}
.cd-num {
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.cd-num.flip {
    animation: flipNum 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes flipNum {
    0%   { transform: translateY(-8px); opacity: 0; color: var(--green); }
    100% { transform: translateY(0);    opacity: 1; color: #fff; }
}
.cd-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.cd-div {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.12);
    margin-top: 22px;
    flex-shrink: 0;
}

/* ── NOTIFY FORM ── */
.notify-form {
    width: 100%;
    max-width: 500px;
    margin-bottom: 16px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.form-inner {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--pill);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.form-inner:focus-within {
    border-color: rgba(149,191,71,0.5);
    box-shadow: 0 0 0 4px rgba(149,191,71,0.1);
}
.form-inner input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 15px 22px;
    font-size: 15px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.form-inner input::placeholder { color: rgba(255,255,255,0.35); }
.form-inner button {
    background: var(--green);
    color: var(--black);
    border: none;
    padding: 15px 26px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border-radius: 0 var(--pill) var(--pill) 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.form-inner button:hover {
    background: #a8d455;
}
.form-note {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 12px;
    font-weight: 500;
}

/* ── SUCCESS MESSAGE ── */
.success-msg {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(149,191,71,0.12);
    border: 1px solid rgba(149,191,71,0.3);
    color: var(--green);
    padding: 14px 28px;
    border-radius: var(--pill);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.success-msg i { font-size: 18px; }
.success-msg.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes popIn {
    from { opacity: 0; transform: scale(0.9) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── SOCIAL LINKS ── */
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}
.social-links a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.social-links a:hover {
    color: var(--green);
    border-color: rgba(149,191,71,0.4);
    background: rgba(149,191,71,0.08);
    transform: translateY(-2px);
}

/* ── FOOTER ── */
.footer {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}
.footer a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer a:hover { color: rgba(255,255,255,0.7); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    animation: revUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.d1 { animation-delay: 0.12s; }
.d2 { animation-delay: 0.24s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.50s; }
.d5 { animation-delay: 0.64s; }
@keyframes revUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .headline { letter-spacing: -2px; }
    .cd-block { padding: 0 14px; }
    .cd-num { font-size: 40px; letter-spacing: -2px; }
    .cd-div { height: 40px; margin-top: 16px; }
    .sub br { display: none; }
    .form-inner { flex-direction: column; border-radius: 16px; }
    .form-inner button { border-radius: 0 0 16px 16px; justify-content: center; }
}