:root {
    --thm-base: #25b85d;
    --thm-base-rgb: 37, 184, 93;
    --thm-dark: #0f1f17;
    --thm-dark-2: #163024;
    --thm-gray: #797c7f;
    --thm-white: #ffffff;
    --thm-yellow: #e9b021;
    --thm-purple: #964c9a;
    --thm-red: #e1262d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--thm-dark) 0%, var(--thm-dark-2) 100%);
    color: var(--thm-white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Decorative background shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
.bg-shape.shape-1 {
    top: -150px; left: -150px;
    width: 500px; height: 500px;
    background: var(--thm-base);
}
.bg-shape.shape-2 {
    bottom: -200px; right: -200px;
    width: 600px; height: 600px;
    background: var(--thm-purple);
    opacity: 0.25;
}
.bg-shape.shape-3 {
    top: 40%; right: 10%;
    width: 250px; height: 250px;
    background: var(--thm-yellow);
    opacity: 0.15;
}

/* Floating dots that nod to the InnBucks logo */
.dot {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}
.dot.d1 { top: 12%; left: 8%;  width: 14px; height: 14px; background: var(--thm-yellow); animation-delay: 0s; }
.dot.d2 { top: 22%; right: 12%; width: 18px; height: 18px; background: var(--thm-purple); animation-delay: 1.2s; }
.dot.d3 { bottom: 18%; left: 14%; width: 12px; height: 12px; background: var(--thm-base);   animation-delay: 2.4s; }
.dot.d4 { bottom: 28%; right: 8%; width: 16px; height: 16px; background: var(--thm-red);    animation-delay: 3.6s; }

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

.wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
}

header.site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.logo-mark {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 10px 18px 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}
.logo-mark .dots {
    display: grid;
    grid-template-columns: repeat(2, 14px);
    gap: 4px;
}
.logo-mark .dots span {
    width: 14px; height: 14px; border-radius: 50%;
}
.logo-mark .dots span:nth-child(1) { background: var(--thm-yellow); }
.logo-mark .dots span:nth-child(2) { background: var(--thm-purple); }
.logo-mark .dots span:nth-child(3) { background: var(--thm-base); }
.logo-mark .dots span:nth-child(4) { background: var(--thm-red); }
.logo-mark .name {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.4px;
    color: var(--thm-white);
    margin-left: 12px;
}
.logo-mark .name span { color: var(--thm-base); }

main.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(var(--thm-base-rgb), 0.12);
    border: 1px solid rgba(var(--thm-base-rgb), 0.35);
    color: var(--thm-base);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.pill .ping {
    width: 8px; height: 8px;
    background: var(--thm-base);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 0.7);
    animation: ping 2s infinite;
}
@keyframes ping {
    0%   { box-shadow: 0 0 0 0   rgba(var(--thm-base-rgb), 0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(var(--thm-base-rgb), 0); }
    100% { box-shadow: 0 0 0 0   rgba(var(--thm-base-rgb), 0); }
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
h1 .accent {
    background: linear-gradient(120deg, var(--thm-base), #5ee08a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    line-height: 1.65;
    margin-bottom: 40px;
}

/* Countdown */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(72px, 110px));
    gap: 14px;
    margin-bottom: 44px;
}
.count-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 8px;
    backdrop-filter: blur(6px);
}
.count-box .num {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--thm-white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.count-box .label {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* Notify form */
.notify {
    width: 100%;
    max-width: 480px;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 999px;
    margin-bottom: 28px;
}
.notify input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--thm-white);
    font-size: 15px;
    padding: 0 18px;
    font-family: inherit;
}
.notify input::placeholder { color: rgba(255, 255, 255, 0.5); }
.notify button {
    background: var(--thm-base);
    color: var(--thm-white);
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, background 0.15s ease;
}
.notify button:hover { background: #1ea14f; transform: translateY(-1px); }

.notify-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
}

/* Social */
.socials {
    display: flex;
    gap: 12px;
}
.socials a {
    width: 42px; height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.2s ease;
}
.socials a:hover {
    background: var(--thm-base);
    border-color: var(--thm-base);
    color: var(--thm-white);
    transform: translateY(-2px);
}
.socials svg { width: 16px; height: 16px; }

footer.site-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}
footer.site-footer a {
    color: var(--thm-base);
    text-decoration: none;
}

@media (max-width: 480px) {
    .countdown { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .count-box { padding: 14px 4px; }
    .notify { flex-direction: column; border-radius: 18px; padding: 12px; }
    .notify input { padding: 12px 14px; }
    .notify button { width: 100%; padding: 14px 24px; }
}
