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

:root {
    --orange: #F97316;
    --dark: #0d0d0d;
    --dark2: #161616;
    --muted: rgba(255,255,255,0.35);
    --card: rgba(255,255,255,0.04);
}

body {
    background-color: var(--dark);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 10;
}

/* Ambient glow */
body::after {
    content: '';
    position: fixed;
    width: min(600px, 90vw);
    height: min(600px, 90vw);
    background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    max-width: 100%;
    width: 100%;
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

/* Logo */
.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    opacity: 0.9;
    animation: fadeUp 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Pill badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(249,115,22,0.4);
    background: rgba(249,115,22,0.08);
    color: var(--orange);
    font-size: clamp(0.6rem, 2vw, 0.72rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.8rem, 3vw, 1rem);
    border-radius: 100px;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    animation: fadeUp 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px var(--orange);
    animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Heading */
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: #fff;
    animation: fadeUp 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

h1 span {
    color: var(--orange);
    display: block;
}

/* Divider */
.divider {
    width: clamp(32px, 8vw, 48px);
    height: 2px;
    background: var(--orange);
    margin: clamp(1.5rem, 4vw, 2.5rem) auto;
    animation: fadeUp 0.9s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Body text */
p {
    color: var(--muted);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 300;
    line-height: 1.7;
    max-width: min(360px, 90vw);
    animation: fadeUp 0.9s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Progress bar */
.progress-wrap {
    margin-top: clamp(2rem, 5vw, 3rem);
    width: min(280px, 85vw);
    animation: fadeUp 0.9s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: clamp(0.6rem, 2vw, 0.7rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.progress-track {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    overflow: hidden;
}

/* Card row */
.cards {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-top: clamp(2rem, 5vw, 3rem);
    animation: fadeUp 0.9s 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1rem, 3vw, 1.5rem);
    text-align: left;
    min-width: clamp(80px, 20vw, 120px);
    flex: 1;
    max-width: 140px;
}

.card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--orange);
    line-height: 1;
}

.card-label {
    font-size: clamp(0.5rem, 1.5vw, 0.65rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* Footer */
footer {
    position: fixed;
    bottom: clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(0.55rem, 1.5vw, 0.7rem);
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.06em;
    text-align: center;
    z-index: 2;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive */
@media (max-width: 768px) {
    body { padding: 0.75rem; }
    .wrapper { padding: 0 0.5rem; }
    h1 { line-height: 0.85; font-size: 5rem; }
    .cards { gap: 0.75rem; }
    .card { min-width: 90px; padding: 1rem; }
}

@media (max-width: 480px) {
    body { padding: 0.5rem; justify-content: flex-start; padding-top: 2rem; }
    .logo { margin-bottom: 1.5rem; }
    .badge { margin-bottom: 1rem; }
    h1 { line-height: 0.9; font-size: 5rem; }
    .divider { margin: 1.5rem auto; }
    p { max-width: 95%; }
    .progress-wrap { margin-top: 2rem; }
    .cards { margin-top: 2rem; gap: 0.5rem; }
    .card { min-width: 80px; padding: 0.75rem; }
    .card-num { font-size: 1.5rem; }
    footer { position: relative; bottom: auto; margin-top: 3rem; padding: 1rem; }
}

@media (max-width: 320px) {
    h1 { font-size: 5rem; }
    .cards { flex-direction: column; width: 100%; max-width: 200px; }
    .card { max-width: 100%; min-width: auto; }
}

@media (min-width: 1200px) {
    .wrapper { max-width: 800px; }
}
