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

:root {
    --acid:  #C7F034;
    --ink:   #111111;
    --blue:  #2B44FF;
    --coral: #FF5A36;
    --field: #F7FFDA;
}

html, body { margin: 0; padding: 0; }
html { scroll-padding-top: 70px; }   /* keep anchor targets clear of the sticky nav */

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

body {
    background: var(--acid);
    color: var(--ink);
    font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
::selection { background: var(--blue); color: #fff; }
input::placeholder, textarea::placeholder { color: rgba(17,17,17,.4); }

/* Accessible keyboard focus (doesn't fire on mouse/touch) */
a:focus-visible, button:focus-visible, .nav-btn:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

/* ---------- Nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: var(--ink);
    color: var(--acid);
    border-bottom: 3px solid var(--ink);
    padding: 14px clamp(16px, 4vw, 40px);
    font-family: 'Space Mono', monospace;
}

.nav-brand { font-weight: 700; font-size: 15px; letter-spacing: 0.02em; text-transform: uppercase; }
.nav-right { display: flex; align-items: center; gap: 18px; }

.nav-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--acid);
    animation: blink 1.3s ease-in-out infinite;
}

.nav-btn {
    background: var(--acid);
    color: var(--ink);
    border: 2px solid var(--acid);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    transition: transform 0.1s;
}

.nav-btn:active { transform: translateY(1px); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(40px, 7vw, 84px) clamp(16px, 4vw, 40px) clamp(30px, 5vw, 60px);
    overflow: hidden;
}

.tag {
    display: inline-block;
    white-space: nowrap;
    background: var(--ink);
    color: var(--acid);
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 14px;
    margin-bottom: 26px;
    animation: popIn 0.6s cubic-bezier(.34,1.56,.64,1) both;
}

.sticker {
    position: absolute;
    top: -26px;
    right: -16px;
    z-index: 5;
    background: var(--coral);
    color: #fff;
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 0.02em;
    padding: 12px 16px;
    text-align: center;
    line-height: 1;
    transform: rotate(-7deg);
    animation: wiggle 3.5s ease-in-out infinite;
}

.hero-card {
    position: relative;
    background: #fff;
    border: 3px solid var(--ink);
    box-shadow: 10px 10px 0 var(--ink);
    padding: clamp(24px, 4vw, 48px);
    animation: popIn 0.7s cubic-bezier(.34,1.56,.64,1) 0.08s both;
}

.hero-kicker {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    padding-right: 72px;   /* clear the corner sticker */
}

.domain {
    margin: 0;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    font-size: clamp(46px, 12vw, 148px);
    line-height: 0.86;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

.domain-name, .domain-tld { display: inline-block; white-space: nowrap; }
.domain-tld { color: var(--blue); }

.caret {
    display: inline-block;
    width: 0.5ch;
    height: 0.85em;
    background: var(--coral);
    margin-left: 0.06em;
    vertical-align: -0.06em;
    animation: caret 1.05s step-end infinite;
}

.hero-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero-lede {
    max-width: 460px;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    line-height: 1.45;
    animation: popIn 0.7s cubic-bezier(.34,1.56,.64,1) 0.2s both;
}

.hero-cta {
    background: var(--blue);
    color: #fff;
    border: 3px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 15px 26px;
    white-space: nowrap;
    transition: transform 0.12s, box-shadow 0.12s;
    animation: popIn 0.7s cubic-bezier(.34,1.56,.64,1) 0.28s both;
}

.hero-cta:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.hero-cta:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

/* ---------- Chips ---------- */
.chips {
    padding: 0 clamp(16px, 4vw, 40px) clamp(20px, 3vw, 36px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.chip {
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    padding: 20px;
    transition: transform 0.12s, box-shadow 0.12s;
}

.chip:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }

.chip-white { background: #fff; }
.chip-blue  { background: var(--blue); color: #fff; }
.chip-coral { background: var(--coral); color: #fff; }

.chip-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 52px;
    line-height: 0.9;
}

.chip-num.sm { font-size: 34px; line-height: 0.95; padding-top: 6px; }

.chip-label {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.7;
}

.chip-white .chip-label { color: #555; opacity: 1; }

/* ---------- Marquee ---------- */
.marquee {
    background: var(--ink);
    color: var(--acid);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
}

.marquee-track { display: inline-flex; animation: marquee 24s linear infinite; }

.marquee-track span {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding-right: 2px;
}

/* ---------- Why ---------- */
.why {
    padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 40px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(28px, 4vw, 48px);
}

.why-wrap:nth-child(1) { animation: popIn 0.7s cubic-bezier(.34,1.56,.64,1) both; }
.why-wrap:nth-child(2) { animation: popIn 0.7s cubic-bezier(.34,1.56,.64,1) 0.12s both; }

.why-card {
    border: 3px solid var(--ink);
    padding: clamp(24px, 3vw, 34px);
}

.why-light { background: #fff; box-shadow: 8px 8px 0 var(--ink); transform: rotate(-1.5deg); }
.why-dark  { background: var(--ink); color: #fff; box-shadow: 8px 8px 0 var(--coral); transform: rotate(1.5deg); }

.why-tag {
    display: inline-block;
    background: var(--acid);
    border: 2px solid var(--ink);
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    margin-bottom: 20px;
}

.why-tag-coral { background: var(--coral); color: #fff; border-color: #fff; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; gap: 12px; font-size: 17px; font-weight: 500; line-height: 1.35; }
.arr { color: var(--blue); font-family: 'Archivo Black', sans-serif; }
.arr-lime { color: var(--acid); }

/* ---------- Claim / form ---------- */
.claim { padding: clamp(20px, 3vw, 40px) clamp(16px, 4vw, 40px) clamp(50px, 6vw, 84px); }

.claim-card {
    background: #fff;
    border: 3px solid var(--ink);
    box-shadow: 12px 12px 0 var(--ink);
    padding: clamp(26px, 4vw, 52px);
}

.claim-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: clamp(26px, 3vw, 40px);
}

.claim-head h2 {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 0.86;
}

.claim-note {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
    text-align: right;
}

.message {
    display: none;
    border: 3px solid var(--ink);
    padding: 16px 20px;
    margin-bottom: 22px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    animation: popIn 0.3s ease-out;
}

.message.success { background: var(--blue); }
.message.error   { background: var(--coral); }

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group:empty { display: none; }

label {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

input, textarea {
    border: 3px solid var(--ink);
    background: var(--field);
    border-radius: 0;
    padding: 13px 14px;
    color: var(--ink);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: box-shadow 0.12s;
}

input:focus, textarea:focus { outline: none; box-shadow: inset 0 0 0 3px var(--blue); }
textarea { resize: vertical; min-height: 90px; }

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: var(--ink);
    color: var(--acid);
    border: 3px solid var(--ink);
    box-shadow: 7px 7px 0 var(--coral);
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    letter-spacing: 0.02em;
    padding: 17px 34px;
    border-radius: 0;
    transition: transform 0.12s, box-shadow 0.12s;
}

.submit-btn:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--coral); }
.submit-btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--coral); }
.submit-btn:disabled { opacity: 0.75; cursor: not-allowed; transform: none; box-shadow: 7px 7px 0 var(--coral); }

/* ---------- Footer ---------- */
.footer {
    background: var(--ink);
    color: var(--acid);
    border-top: 3px solid var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px clamp(16px, 4vw, 40px);
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.foot-brand { font-weight: 700; }
.footer div:not(.foot-brand) { opacity: 0.75; }

/* ---------- Spinner ---------- */
.spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(199, 240, 52, 0.35);
    border-top-color: var(--acid);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.cf-turnstile { margin-top: 0.5rem; }

/* ---------- Animations ---------- */
@keyframes popIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.15; } }
@keyframes wiggle { 0%,100% { transform: rotate(-7deg); } 50% { transform: rotate(-3deg); } }
@keyframes caret { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 620px) {
    .sticker {
        top: -18px;
        right: -8px;
        font-size: 13px;
        padding: 8px 11px;
    }
    .nav-brand { font-size: 13px; }
    .nav-btn { padding: 7px 12px; font-size: 12px; }
    .nav-status { display: none; }   /* keep brand + button on one line */
    .why-light { transform: rotate(-1deg); }
    .why-dark  { transform: rotate(1deg); }
    .chip-num { font-size: 44px; }
    .chip-num.sm { font-size: 22px; }
}

@media (max-width: 400px) {
    .nav-right { gap: 12px; }
}
