/* ===== Bang! RP — Landing ===== */
:root {
    --coral: #FF8C5A;
    --coral-dark: #e9743f;
    --gold: #F2B53C;
    --bg: #0d0705;
    --bg2: #1a0f0a;
    --bg3: #241510;
    --cream: #FDEAD7;
    --muted: #b89a86;
    --line: rgba(255, 140, 90, .14);
    --radius: 16px;
    --shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', system-ui, sans-serif;
    background: var(--bg);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    color: #2a1206; font-weight: 700; padding: .85rem 1.6rem;
    border-radius: 999px; border: none; cursor: pointer; font-size: 1rem;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 8px 24px rgba(255, 140, 90, .3);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 140, 90, .45); }
.btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid var(--line); box-shadow: none; }
.btn--ghost:hover { border-color: var(--coral); background: rgba(255, 140, 90, .08); }
.btn--sm { padding: .55rem 1.1rem; font-size: .9rem; }

/* Nav */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 1rem 0; transition: background .3s ease, padding .3s ease, border-color .3s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(13, 7, 5, .9); backdrop-filter: blur(12px); padding: .6rem 0; border-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.3rem; letter-spacing: .5px; }
.nav__logo img { height: 68px; }
.nav__logo span { display: none; } /* [BangRP] el logo apaisado ya lleva el texto */
.nav__logo b { color: var(--coral); }
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .96rem; transition: color .15s; }
.nav__links a:hover { color: var(--cream); }
.nav__intranet { color: var(--gold) !important; font-weight: 600 !important; }
.nav__burger { display: none; background: none; border: none; color: var(--cream); font-size: 1.6rem; cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 7rem 0 4rem; }
.hero__bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(900px 500px at 75% 20%, rgba(255, 140, 90, .22), transparent 60%),
        radial-gradient(700px 500px at 15% 80%, rgba(242, 181, 60, .14), transparent 55%),
        linear-gradient(180deg, var(--bg2), var(--bg));
}
.hero__badge {
    display: inline-block; padding: .4rem 1rem; border-radius: 999px;
    background: rgba(255, 140, 90, .12); border: 1px solid var(--line);
    color: var(--coral); font-weight: 600; font-size: .82rem; margin-bottom: 1.5rem;
}
.hero__title { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800; line-height: 1.05; letter-spacing: -1px; }
.hero__title span { background: linear-gradient(135deg, var(--coral), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--muted); max-width: 620px; margin: 1.5rem 0 2.2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats b { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero__stats span { color: var(--muted); font-size: .9rem; }

/* Sections */
.section { padding: 6rem 0; }
.section--alt { background: var(--bg2); }
.section__kicker { color: var(--coral); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; margin-bottom: .6rem; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.5px; margin-bottom: 2.5rem; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 640px; }
.lead--center { text-align: center; margin: -1.5rem auto 2.5rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.step { background: var(--bg3); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; position: relative; transition: transform .15s, border-color .15s; }
.step:hover { transform: translateY(-4px); border-color: var(--coral); }
.step__num { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; color: #2a1206; background: linear-gradient(135deg, var(--coral), var(--gold)); margin-bottom: 1rem; }
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .95rem; }
.step a { color: var(--coral); }

/* Split */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.checklist { list-style: none; margin-top: 1.5rem; display: grid; gap: .8rem; }
.checklist li { padding-left: 2rem; position: relative; color: var(--cream); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.4rem; height: 1.4rem; background: rgba(255,140,90,.15); color: var(--coral); border-radius: 6px; display: grid; place-items: center; font-weight: 700; font-size: .8rem; }
.glass-card { background: linear-gradient(160deg, rgba(255,140,90,.1), rgba(36,21,16,.6)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.glass-card__row { display: flex; justify-content: space-between; align-items: center; padding: .9rem .4rem; border-bottom: 1px solid var(--line); }
.glass-card__row:last-child { border-bottom: none; }
.glass-card__row span { color: var(--muted); }
.glass-card__row b { color: var(--gold); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.card { background: var(--bg3); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; transition: transform .15s, border-color .15s; }
.card:hover { transform: translateY(-4px); border-color: var(--coral); }
.card__ico { font-size: 2.4rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; }

/* Rules */
.rules { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.rule { background: var(--bg3); border: 1px solid var(--line); border-left: 3px solid var(--coral); border-radius: 12px; padding: 1.4rem 1.5rem; }
.rule b { color: var(--gold); font-size: 1.05rem; display: block; margin-bottom: .3rem; }
.rule p { color: var(--muted); font-size: .92rem; }
.rule code { background: rgba(255,140,90,.15); color: var(--coral); padding: .1rem .4rem; border-radius: 5px; font-size: .85rem; }

/* CTA */
.cta { padding: 6rem 0; text-align: center; background:
    radial-gradient(700px 400px at 50% 0%, rgba(255, 140, 90, .18), transparent 60%), var(--bg2); }
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
.cta p { color: var(--muted); margin: .8rem 0 2rem; }
.cta__box { display: inline-flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; background: var(--bg3); border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.4rem; }
.cta__box span { color: var(--muted); font-size: .9rem; }
.cta__box code { color: var(--gold); font-weight: 600; font-family: monospace; font-size: 1rem; }
.cta__buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 3rem 0 1.5rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer__brand span { font-weight: 800; font-size: 1.2rem; }
.footer__brand b { color: var(--coral); }
.footer__brand p { color: var(--muted); font-size: .9rem; margin-top: .4rem; }
.footer__links { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer__links a { color: var(--muted); font-size: .92rem; }
.footer__links a:hover { color: var(--coral); }
.footer__copy { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 2.5rem; opacity: .7; }

/* Responsive */
@media (max-width: 820px) {
    .nav__links { position: fixed; top: 0; right: -100%; height: 100vh; width: 75%; max-width: 320px;
        flex-direction: column; justify-content: center; gap: 2rem; background: var(--bg2);
        border-left: 1px solid var(--line); transition: right .3s ease; padding: 2rem; }
    .nav__links.open { right: 0; }
    .nav__burger { display: block; }
    .split { grid-template-columns: 1fr; }
}
