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

:root {
    --orange: #FF4E00;
    --cream: #F5F0E8;
    --dark: #0D0C0A;
    --mid: #141310;
    --muted: rgba(245,240,232,0.4);
}

body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

body::after {
    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.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
}

nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(13,12,10,0.9), transparent);
    backdrop-filter: blur(2px);
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: var(--orange);
}

.nav-right {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(255,78,0,0.12) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(255,78,0,0.06) 0%, transparent 50%);
}

.hero-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    font-family: 'Anton', sans-serif;
    font-size: clamp(10rem, 30vw, 28rem);
    color: rgba(245,240,232,0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.02em;
    animation: wordFloat 8s ease-in-out infinite;
}

@keyframes wordFloat {
    0%, 100% { transform: translate(-50%, -48%); }
    50% { transform: translate(-50%, -52%); }
}

.ball-visual {
    position: absolute;
    top: 10%;
    right: 5%;
    width: clamp(280px, 40vw, 560px);
    height: clamp(280px, 40vw, 560px);
    animation: ballSpin 40s linear infinite;
    opacity: 0.85;
}

@keyframes ballSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
}

.pre-label {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    opacity: 0;
    animation: up 0.7s 0.2s ease forwards;
}

.hero-headline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 11vw, 10rem);
    line-height: 0.88;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    opacity: 0;
    animation: up 0.7s 0.4s ease forwards;
}

.hero-headline em {
    font-style: italic;
    color: var(--orange);
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 420px;
    opacity: 0;
    animation: up 0.7s 0.6s ease forwards;
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: up 0.7s 1s ease forwards;
}

.scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ATMOSPHERE */
.atmosphere {
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-top: 1px solid rgba(245,240,232,0.06);
}

.atm-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto;
}

.atm-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.ring-1 {
    width: 100%; height: 100%;
    border-color: rgba(255,78,0,0.15);
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
    width: 78%; height: 78%;
    top: 11%; left: 11%;
    border-color: rgba(255,78,0,0.25);
    animation: ringPulse 4s 0.5s ease-in-out infinite;
}

.ring-3 {
    width: 56%; height: 56%;
    top: 22%; left: 22%;
    border-color: rgba(255,78,0,0.4);
    animation: ringPulse 4s 1s ease-in-out infinite;
}

.ring-core {
    position: absolute;
    width: 34%; height: 34%;
    top: 33%; left: 33%;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: #fff;
    box-shadow: 0 0 60px rgba(255,78,0,0.6), 0 0 120px rgba(255,78,0,0.2);
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.7; }
}

.atm-text h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.9;
    margin-bottom: 32px;
}

.atm-text h2 span { color: var(--orange); }

.atm-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(245,240,232,0.08);
    padding-top: 32px;
}

.stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--orange);
}

.stat-desc {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
}

/* MARQUEE */
.marquee-section {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid rgba(245,240,232,0.06);
    border-bottom: 1px solid rgba(245,240,232,0.06);
    background: var(--mid);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeRoll 20s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
    margin-top: 12px;
}

@keyframes marqueeRoll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-item {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.05em;
    padding: 0 40px;
    color: rgba(245,240,232,0.06);
}

.marquee-item.lit { color: var(--orange); }
.marquee-item.outline { -webkit-text-stroke: 1px rgba(245,240,232,0.1); color: transparent; }

/* FEATURES */
.features {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(245,240,232,0.06);
}

.feature-card {
    background: var(--dark);
    padding: 48px 36px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover { background: #111; }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon { font-size: 2rem; margin-bottom: 24px; display: block; }

.feature-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 16px;
    line-height: 1;
}

.feature-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
}

/* QUOTE */
.quote-section {
    padding: 100px 48px;
    text-align: center;
    background: var(--orange);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -10%; left: -2%;
    font-family: 'Anton', sans-serif;
    font-size: 30rem;
    color: rgba(0,0,0,0.08);
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 0.95;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.quote-attr {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    position: relative;
    z-index: 1;
}

/* PILLARS */
.pillars {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.pillars-left h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.9;
    position: sticky;
    top: 120px;
}

.pillars-left h2 em { color: var(--orange); font-style: normal; }

.pillar-item {
    padding: 36px 0;
    border-bottom: 1px solid rgba(245,240,232,0.08);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: start;
    transition: padding-left 0.3s;
    cursor: default;
}

.pillar-item:hover { padding-left: 8px; }

.pillar-num {
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    color: var(--orange);
    padding-top: 4px;
}

.pillar-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 10px;
}

.pillar-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
}

/* FINAL CTA */
.final-cta {
    padding: 160px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(245,240,232,0.06);
}

.final-cta::before {
    content: 'GAME';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Anton', sans-serif;
    font-size: clamp(10rem, 35vw, 32rem);
    color: rgba(245,240,232,0.02);
    pointer-events: none;
    white-space: nowrap;
}

.final-cta h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3.5rem, 10vw, 9rem);
    line-height: 0.88;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.final-cta h2 span { color: var(--orange); }

.final-cta p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 400px;
    margin: 0 auto 56px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-block;
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    padding: 24px 80px;
    background: linear-gradient(135deg, #FF6A00, #FF4E00, #e63200);
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: transform 0.2s, box-shadow 0.2s;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    box-shadow: 0 0 0 0 rgba(255,78,0,0.5), 0 8px 32px rgba(255,78,0,0.45);
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.cta-btn::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #FF6A00, transparent, #FF4E00);
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 40px 8px rgba(255,78,0,0.5), 0 20px 60px rgba(255,78,0,0.5);
    animation: none;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 20px 2px rgba(255,78,0,0.3), 0 8px 32px rgba(255,78,0,0.3); }
    50% { box-shadow: 0 0 40px 10px rgba(255,78,0,0.55), 0 12px 40px rgba(255,78,0,0.5); }
}

.scroll-hint { display: none; }

/* APP STRIP */
.app-strip {
    background: var(--mid);
    padding: 48px;
    text-align: center;
    border-bottom: 1px solid rgba(245,240,232,0.06);
}

.app-strip-label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

/* APP DOWNLOAD BUTTONS */
.app-download {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #FF6A00, #FF4E00, #e63200);
    border: none;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px 4px rgba(255,78,0,0.4), 0 8px 32px rgba(255,78,0,0.4);
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.app-btn::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #FF6A00, transparent, #FF4E00);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.app-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 50px 12px rgba(255,78,0,0.55), 0 20px 60px rgba(255,78,0,0.5);
    animation: none;
}

.app-btn-text {
    text-align: left;
}

.app-btn-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    line-height: 1;
    display: block;
    margin-bottom: 3px;
}

.app-btn-label {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: #fff;
    line-height: 1;
    display: block;
}

.app-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.app-divider span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.2);
}

.app-divider::before,
.app-divider::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(245,240,232,0.1);
}

footer {
    padding: 28px 48px;
    border-top: 1px solid rgba(245,240,232,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--orange);
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

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

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.on { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .hero { padding: 0 24px 60px; }
    .atmosphere { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
    .atm-visual { max-width: 300px; }
    .features { padding: 60px 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .pillars { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
    .pillars-left h2 { position: static; }
    .final-cta { padding: 80px 24px; }
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
    .ball-visual { opacity: 0.2; }
}
