:root {
    --coral: #E8525A;
    --coral-dark: #D13E47;
    --gold: #FFC033;
    --navy-1: #14142A;
    --navy-2: #1A1A2E;
    --navy-3: #16213E;
    --navy-4: #0F3460;
    --ink: #1c1c2e;
    --muted: #6B7280;
    --line: rgba(255,255,255,0.10);
    --card: rgba(255,255,255,0.06);
    --radius: 22px;
    --maxw: 1140px;
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background: var(--navy-1);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Nav ===== */
nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    background: rgba(20,20,42,0.72);
    border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -0.3px; }
.brand .logo {
    width: 34px; height: 34px; border-radius: 9px;
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    display: grid; place-items: center; box-shadow: 0 6px 18px rgba(232,82,90,0.35);
}
.brand .logo svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; color: rgba(255,255,255,0.72); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
    background: #fff; color: var(--navy-1) !important; padding: 9px 18px; border-radius: 999px;
    font-weight: 700 !important; font-size: 14px !important; transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(255,255,255,0.18); }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ===== Hero ===== */
.hero { position: relative; padding: 96px 0 90px; text-align: center; }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(900px 480px at 50% -8%, rgba(232,82,90,0.28), transparent 60%),
        radial-gradient(700px 500px at 85% 30%, rgba(255,192,51,0.12), transparent 55%),
        radial-gradient(700px 600px at 10% 50%, rgba(15,52,96,0.55), transparent 60%);
}
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--card); border: 1px solid var(--line);
    padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.82); margin-bottom: 26px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.hero h1 {
    font-size: clamp(38px, 6vw, 66px); line-height: 1.05; font-weight: 850;
    letter-spacing: -1.8px; margin: 0 auto 22px; max-width: 14ch;
    background: linear-gradient(180deg, #fff 40%, #c8d0e8);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead {
    font-size: clamp(17px, 2.4vw, 21px); color: rgba(255,255,255,0.72);
    max-width: 56ch; margin: 0 auto 38px; font-weight: 400;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 16px;
    transition: transform .2s, box-shadow .2s; cursor: pointer; border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff;
    box-shadow: 0 12px 32px rgba(232,82,90,0.42);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(232,82,90,0.5); }
.btn-ghost { background: var(--card); color: #fff; border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; }

/* ===== Stats ===== */
.stats { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.stat {
    background: var(--card); border: 1px solid var(--line); border-radius: 18px;
    padding: 20px 28px; min-width: 150px;
}
.stat b { display: block; font-size: 30px; font-weight: 850; letter-spacing: -1px; }
.stat span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== Sections ===== */
section.block { padding: 88px 0; }
.eyebrow {
    text-align: center; color: var(--coral); font-weight: 800; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
    text-align: center; font-size: clamp(28px, 4vw, 42px); font-weight: 850;
    letter-spacing: -1px; margin-bottom: 16px;
}
.section-sub { text-align: center; color: rgba(255,255,255,0.62); max-width: 52ch; margin: 0 auto 56px; font-size: 17px; }

/* ===== Features grid ===== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }
.feature {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px; transition: transform .25s, border-color .25s, background .25s;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(232,82,90,0.4); background: rgba(255,255,255,0.08); }
.feature .ico {
    width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
    margin-bottom: 18px; background: linear-gradient(135deg, rgba(232,82,90,0.22), rgba(232,82,90,0.08));
}
.feature .ico svg { width: 26px; height: 26px; stroke: var(--coral); }
.feature h3 { font-size: 19px; font-weight: 750; margin-bottom: 8px; letter-spacing: -0.3px; }
.feature p { font-size: 15px; color: rgba(255,255,255,0.64); }

/* ===== Premium ===== */
.premium-wrap {
    background: linear-gradient(135deg, var(--navy-2), var(--navy-4));
    border: 1px solid var(--line); border-radius: 30px; padding: 56px 44px;
    position: relative; overflow: hidden;
}
.premium-wrap::after {
    content: ""; position: absolute; top: -40%; right: -10%; width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(255,192,51,0.20), transparent 65%);
}
.premium-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 820px) { .premium-grid { grid-template-columns: 1fr; gap: 32px; } }
.premium-grid .crown {
    display: inline-flex; align-items: center; gap: 9px; color: var(--gold);
    font-weight: 800; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.premium-grid h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 850; letter-spacing: -1px; margin-bottom: 14px; }
.premium-grid p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 24px; }
.plist { list-style: none; display: grid; gap: 13px; }
.plist li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: rgba(255,255,255,0.9); }
.plist .check {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    background: rgba(76,175,125,0.18); display: grid; place-items: center;
}
.plist .check svg { width: 14px; height: 14px; stroke: #4CAF7D; }

.price-card {
    background: rgba(0,0,0,0.28); border: 1px solid rgba(255,192,51,0.3); border-radius: 24px;
    padding: 32px; text-align: center; backdrop-filter: blur(8px);
}
.price-card .tag { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.price-card .amount { font-size: 46px; font-weight: 850; letter-spacing: -1.5px; margin: 8px 0 2px; }
.price-card .amount small { font-size: 17px; font-weight: 600; color: rgba(255,255,255,0.6); }
.price-card .per { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 22px; }
.price-card .divider { height: 1px; background: var(--line); margin: 20px 0; }
.price-card .alt { font-size: 14px; color: rgba(255,255,255,0.6); }
.price-card .alt b { color: #fff; font-weight: 700; }

/* ===== CTA band ===== */
.cta-band { text-align: center; padding: 86px 0; }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 850; letter-spacing: -1.2px; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 18px; margin-bottom: 34px; }

/* ===== Footer ===== */
footer { border-top: 1px solid var(--line); padding: 52px 0 40px; background: rgba(0,0,0,0.25); }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 320px; }
.foot-brand p { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 14px; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.foot-col a { display: block; color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--coral); }
.foot-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,0.45); font-size: 13px; }

/* ===== Legal pages ===== */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 24px 90px; }
.legal-head { margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.legal-head a.back { color: var(--coral); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 850; letter-spacing: -1px; }
.legal .eff { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 10px; }
.legal h2 { font-size: 22px; font-weight: 750; margin: 38px 0 12px; letter-spacing: -0.4px; color: #fff; }
.legal p, .legal li { color: rgba(255,255,255,0.74); font-size: 16px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal li { margin-bottom: 8px; }
.legal a.inline { color: var(--coral); font-weight: 600; }
.legal strong { color: #fff; font-weight: 700; }
.lang-switch { display: inline-flex; gap: 4px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-top: 22px; }
.lang-switch a { padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); }
.lang-switch a.active { background: var(--coral); color: #fff; }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
