/* ===== DESIGN TOKENS (from DESIGN.md) ===== */
:root {
    /* Backgrounds */
    --bg: #07070d;
    --bg-elevated: #0e0e18;
    --bg-card: #111120;
    --surface: #16162a;

    /* Borders (teal-tinted) */
    --border: rgba(0, 200, 170, 0.10);
    --border-hover: rgba(0, 200, 170, 0.25);

    /* Text */
    --text: #eaeaef;
    --text-muted: #8888a0;
    --text-dim: #55556a;

    /* Accent (teal/cyan) */
    --accent: #00c8aa;
    --accent-light: #00e6c8;
    --accent-glow: rgba(0, 200, 170, 0.4);
    --accent-glow-strong: rgba(0, 230, 200, 0.6);

    /* Feedback */
    --success: #48bb78;
    --error: #f56565;
    --warning: #ecc94b;
    --gold: #f0c850;
    --gold-dim: rgba(240, 200, 80, 0.15);

    /* Glow tokens */
    --glow-teal-near: 0 0 20px rgba(0, 200, 170, 0.18);
    --glow-teal-far: 0 0 50px rgba(0, 200, 170, 0.06);
    --glow-gold-near: 0 0 18px rgba(240, 200, 80, 0.12);

    /* Faction glows */
    --faction-ember: #e8934a;
    --faction-ice: #48c8f0;
    --faction-void: #9b6bf7;
    --faction-shadow: #e84a6a;

    /* Fonts */
    --font-display: 'JetBrains Mono', monospace;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-hud: 'Share Tech Mono', monospace;

    /* Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Radius */
    --radius-sm: 4px;
    --radius-lg: 6px;

    /* Teal primary (buttons) */
    --teal: rgba(0, 200, 170, 0.85);
    --teal-hover: rgba(0, 220, 190, 0.95);
    --teal-glow: rgba(0, 200, 170, 0.3);
    --teal-border: rgba(0, 200, 170, 0.4);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

code {
    font-family: var(--font-mono);
    background: var(--surface);
    padding: 0.15em 0.4em;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
    color: var(--accent-light);
}

/* ===== NOISE OVERLAY ===== */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-family: var(--font-hud);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 48px;
    color: var(--text);
}

.text-glow {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn--primary {
    background: var(--teal);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px var(--teal-glow);
}

.btn--primary:hover {
    background: var(--teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--teal-glow), 0 0 60px rgba(0, 200, 170, 0.15);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    background: transparent;
    color: #00d4aa;
    border: 1px solid var(--teal-border);
    box-shadow: 0 0 15px rgba(0, 200, 170, 0.08);
}

.btn--outline:hover {
    background: rgba(0, 200, 170, 0.08);
    border-color: #00d4aa;
    box-shadow: 0 0 25px var(--teal-glow);
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 36px;
    font-size: 15px;
}

.btn__icon {
    flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    filter: blur(80px);
    opacity: 0.4;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.3; transform: translate(-50%, -55%) scale(0.9); }
    100% { opacity: 0.5; transform: translate(-50%, -55%) scale(1.1); }
}

.hero__content {
    position: relative;
    z-index: 2;
    animation: hero-in 1s var(--ease-out) both;
}

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

.hero__logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 0 40px var(--accent-glow-strong));
    animation: logo-float 6s ease-in-out infinite;
}

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

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light), #7dffef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-family: var(--font-hud);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll span {
    display: block;
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--accent-light), transparent);
    border-radius: 2px;
    animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
    100% { opacity: 1; transform: scaleY(1); }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about__text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about__text strong {
    color: var(--text);
}

.about__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    transition: all 0.3s var(--ease-out);
}

.about__card:hover {
    border-color: var(--border-hover);
    filter: drop-shadow(0 0 15px rgba(0, 200, 170, 0.12));
    transform: translateX(4px);
}

.about__card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 170, 0.15), rgba(0, 230, 200, 0.08));
    color: var(--accent-light);
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.about__card-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== STEPS ===== */
.steps {
    padding: 120px 0;
    position: relative;
    background: var(--bg-elevated);
}

.steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.steps__timeline {
    position: relative;
    max-width: 640px;
}

.steps__line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light), transparent);
    opacity: 0.3;
}

.steps__item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px 0;
    position: relative;
}

.steps__number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-light);
    background: var(--bg);
    border: 1.5px solid var(--border-hover);
    position: relative;
    z-index: 2;
    transition: all 0.3s var(--ease-out);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.steps__item:hover .steps__number {
    filter: drop-shadow(0 0 15px var(--accent-glow));
    border-color: var(--accent);
}

.steps__body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.steps__body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.steps__note {
    margin-top: 10px;
    color: var(--text-dim);
    font-size: 0.875rem;
    line-height: 1.55;
}

.steps__note a {
    color: var(--accent-light);
}

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
    position: relative;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    filter: drop-shadow(0 0 20px rgba(0, 200, 170, 0.1));
}

/* Scanlines on feature cards */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 2px,
        rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 170, 0.12), rgba(0, 230, 200, 0.06));
    color: var(--accent-light);
    margin-bottom: 24px;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== LOADER CTA — Alternative Path ===== */
.loader-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.loader-cta__glow {
    position: absolute;
    width: 720px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    filter: blur(110px);
    opacity: 0.35;
    pointer-events: none;
}

.loader-cta__grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Terminal-like frame around the loader icon */
.loader-cta__frame {
    position: relative;
    padding: 28px 28px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    transition: all 0.4s var(--ease-out);
}

.loader-cta__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 2px,
        rgba(255, 255, 255, 0.018) 2px, rgba(255, 255, 255, 0.018) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.loader-cta__frame:hover {
    border-color: var(--border-hover);
    filter: drop-shadow(0 0 28px rgba(0, 200, 170, 0.18));
    transform: translateY(-4px);
}

.loader-cta__frame-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-hud);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.loader-cta__frame-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.85); }
}

.loader-cta__frame-tag {
    font-weight: 400;
}

.loader-cta__icon {
    display: block;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    filter: drop-shadow(0 0 32px rgba(0, 212, 170, 0.42));
    position: relative;
    z-index: 2;
    animation: icon-float 6s ease-in-out infinite;
}

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

.loader-cta__frame-foot {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.loader-cta__frame-foot code {
    font-family: var(--font-mono);
    font-size: 11px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    padding: 5px 10px;
    color: var(--accent-light);
    letter-spacing: 0.5px;
    border-radius: 0;
}

/* Body: copy + chips + CTA */
.loader-cta__body .section-title {
    margin-bottom: 20px;
}

.loader-cta__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 540px;
}

.loader-cta__lead strong {
    color: var(--text);
    font-weight: 600;
}

.loader-cta__chips {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 36px;
    padding: 0;
}

.loader-cta__chip {
    font-family: var(--font-hud);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(0, 200, 170, 0.06);
    border: 1px solid var(--border-hover);
    padding: 8px 14px;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.loader-cta__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .loader-cta__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .loader-cta__visual {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

    .loader-cta__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .loader-cta__chips,
    .loader-cta__actions {
        justify-content: center;
    }

    .loader-cta__glow {
        width: 400px;
        height: 240px;
        right: -60px;
    }
}

@media (max-width: 768px) {
    .loader-cta {
        padding: 80px 0;
    }

    .loader-cta__icon {
        width: 128px;
        height: 128px;
    }
}

/* ===== FACTIONS ===== */
.factions {
    padding: 120px 0;
    position: relative;
    background: var(--bg-elevated);
}

.factions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.factions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.faction-card {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

/* Scanlines on faction cards */
.faction-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 2px,
        rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.faction-card:hover {
    transform: translateY(-4px);
}

/* Faction-specific colors */
.faction-card--ember { --f-glow: var(--faction-ember); background: #1a1410; }
.faction-card--ice { --f-glow: var(--faction-ice); background: #0c1520; }
.faction-card--void { --f-glow: var(--faction-void); background: #14102a; }
.faction-card--shadow { --f-glow: var(--faction-shadow); background: #1a1015; }

.faction-card:hover {
    border-color: var(--f-glow);
    filter: drop-shadow(0 0 20px color-mix(in srgb, var(--f-glow) 30%, transparent));
}

.faction-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--f-glow);
    box-shadow: 0 0 12px var(--f-glow);
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.faction-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--f-glow);
}

.faction-card__country {
    font-family: var(--font-hud);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.faction-card__desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta__glow {
    position: absolute;
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, var(--teal-glow) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.3;
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

/* CTA scanlines */
.cta__content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 2px,
        rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.cta__badge {
    display: inline-block;
    font-family: var(--font-hud);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #07070d;
    background: var(--teal);
    padding: 6px 16px;
    margin-bottom: 24px;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 16px;
}

.cta__desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.cta__note {
    font-family: var(--font-hud);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 32px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__logo {
    border-radius: var(--radius-sm);
}

.footer__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-family: var(--font-hud);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer__links a:hover {
    color: #00d4aa;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .factions__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .factions__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .steps__line {
        left: 24px;
    }

    .steps__number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .steps__item {
        gap: 20px;
        padding: 24px 0;
    }

    .cta__content {
        padding: 40px 24px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__logo {
        width: 150px;
        height: 150px;
    }

    .hero__tagline {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .hero__glow {
        width: 350px;
        height: 350px;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .about,
    .steps,
    .features,
    .factions,
    .cta {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .btn--large {
        padding: 14px 24px;
        font-size: 13px;
    }

    .cta__actions,
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
}
