:root {
    --bg-0: #050613;
    --bg-1: #0a0c1f;
    --bg-2: #0f1230;
    --text: #f1f3ff;
    --text-muted: #9aa1cf;
    --text-faint: #5e668f;

    --gold-1: #ffe18a;
    --gold-2: #ffcb3d;
    --gold-3: #ff9d2c;
    --gold-deep: #b76e10;
    --violet: #8b5cf6;
    --emerald: #2dd4a7;

    --line: rgba(255, 255, 255, 0.07);
    --line-strong: rgba(255, 255, 255, 0.16);

    --grad-gold: linear-gradient(135deg, #ffe18a 0%, #ffcb3d 35%, #ff9d2c 70%, #b76e10 100%);

    --shadow-card: 0 24px 60px -20px rgba(0, 0, 0, 0.85), 0 8px 24px -8px rgba(0, 0, 0, 0.5);
    --shadow-glow-gold: 0 0 0 1px rgba(255, 203, 61, 0.22), 0 20px 50px -14px rgba(255, 157, 44, 0.45);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --container: 1180px;
    --header-h: 76px;
    --age-h: 38px;

    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-head: 'Sora', 'Inter', system-ui, sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    -webkit-text-size-adjust: 100%;
    background: var(--bg-0);
}

body {
    margin: 0;
    min-height: 100svh;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-0);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(1100px 800px at 92% -10%, rgba(124, 58, 237, 0.30), transparent 65%),
        radial-gradient(900px 700px at -8% 6%, rgba(255, 157, 44, 0.18), transparent 65%),
        radial-gradient(900px 600px at 50% 115%, rgba(45, 212, 167, 0.12), transparent 65%),
        linear-gradient(180deg, #07091c 0%, #050613 50%, #050613 100%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(ellipse 90% 70% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.45) 100%);
    opacity: 0.7;
}

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

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-2);
    outline-offset: 3px;
    border-radius: 6px;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 32px);
}

/* ============================================================
   Age strip (top disclaimer)
   ============================================================ */
.age-strip {
    background: linear-gradient(180deg, rgba(255, 157, 44, 0.10), rgba(255, 157, 44, 0.04));
    border-bottom: 1px solid rgba(255, 203, 61, 0.22);
    min-height: var(--age-h);
    display: flex;
    align-items: center;
}

.age-strip__inner {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding: 8px clamp(16px, 4vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.age-strip__text {
    text-align: center;
}

.age-strip__badge {
    flex: 0 0 auto;
    background: var(--grad-gold);
    color: #1a1206;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 999px;
    letter-spacing: 0.4px;
    box-shadow: 0 0 0 0 rgba(255, 203, 61, 0.55);
    animation: badge-pulse 3.2s var(--ease) infinite;
}

.age-strip__text {
    margin: 0;
    font-size: clamp(11px, 1.3vw, 13px);
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
    height: var(--header-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 6, 19, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand__mark {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-glow-gold);
}

.brand__mark svg {
    display: block;
    border-radius: 50%;
}

.brand__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand__name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(18px, 2.4vw, 22px);
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--text);
}

.brand__tag {
    font-size: clamp(10px, 1.4vw, 12px);
    color: var(--text-faint);
    line-height: 1.2;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(60vw, 320px);
}

.lang {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    flex: 0 0 auto;
}

.lang__btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    min-width: 44px;
    height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: color 160ms var(--ease), background 160ms var(--ease);
}

.lang__btn:hover { color: var(--text); }

.lang__btn[aria-pressed="true"] {
    background: var(--grad-gold);
    color: #1a1206;
    box-shadow: var(--shadow-glow-gold);
}

.brand__mark {
    transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}

.brand:hover .brand__mark {
    transform: rotate(-6deg) scale(1.04);
    box-shadow: 0 0 0 1px rgba(255, 203, 61, 0.35), 0 20px 50px -10px rgba(255, 157, 44, 0.5);
}

/* ============================================================
   Main + hero
   ============================================================ */
main {
    display: block;
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-h) - var(--age-h));
    display: flex;
    align-items: center;
    padding-block: clamp(24px, 5.5vh, 60px);
    overflow: hidden;
}

.hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__ball {
    position: absolute;
    display: block;
    opacity: 0.55;
    filter: blur(0.5px) drop-shadow(0 18px 32px rgba(0, 0, 0, 0.55));
    will-change: transform;
}

.hero__ball--1 {
    width: clamp(90px, 12vw, 180px);
    height: clamp(90px, 12vw, 180px);
    top: clamp(-30px, -4vh, -10px);
    right: clamp(-30px, -2vw, 0px);
    animation: drift-a 14s var(--ease) infinite;
}

.hero__ball--2 {
    width: clamp(72px, 9vw, 140px);
    height: clamp(72px, 9vw, 140px);
    bottom: clamp(-20px, -4vh, 0px);
    left: clamp(-20px, -2vw, 8px);
    animation: drift-b 18s var(--ease) infinite;
    opacity: 0.45;
}

.hero__ball--3 {
    width: clamp(56px, 7vw, 104px);
    height: clamp(56px, 7vw, 104px);
    top: 38%;
    right: 12%;
    animation: drift-c 16s var(--ease) infinite;
    opacity: 0.38;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(14px, 2.4vh, 22px);
    max-width: 920px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(11px, 1.5vw, 13px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-2);
    background: rgba(255, 203, 61, 0.08);
    border: 1px solid rgba(255, 203, 61, 0.25);
    padding: 8px 14px;
    border-radius: 999px;
}

.hero__title {
    margin: 0;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(28px, 6.4vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text);
}

.hero__title em {
    font-style: normal;
    background: linear-gradient(120deg, #ffe18a 0%, #ffcb3d 30%, #ff9d2c 55%, #ffcb3d 80%, #ffe18a 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gold-shift 8s linear infinite;
}

.hero__sub {
    margin: 0;
    font-size: clamp(15px, 1.9vw, 19px);
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 720px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    margin-top: 4px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(15px, 1.8vw, 17px);
    letter-spacing: 0.01em;
    min-height: 52px;
    min-width: 44px;
    padding: 14px 26px;
    border-radius: 999px;
    cursor: pointer;
    border: 0;
    text-decoration: none;
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), filter 220ms var(--ease-out);
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
}

.btn--primary {
    background: var(--grad-gold);
    color: #1a1206;
    box-shadow: var(--shadow-glow-gold);
}

.btn--primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 0 0 1px rgba(255, 203, 61, 0.32), 0 28px 60px -16px rgba(255, 157, 44, 0.6);
}

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

.btn__sheen {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%, transparent 100%);
    transform: translateX(-120%);
    animation: sheen 4.4s var(--ease) infinite;
    animation-delay: 1.6s;
}

.btn__arrow {
    display: inline-block;
    transition: transform 220ms var(--ease-out);
}

.btn--primary:hover .btn__arrow {
    transform: translateX(4px);
}

.hero__rg-link {
    color: var(--text-muted);
    font-size: clamp(13px, 1.6vw, 15px);
    text-decoration: underline;
    text-decoration-color: rgba(154, 161, 207, 0.4);
    text-underline-offset: 4px;
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color 160ms var(--ease);
}

.hero__rg-link:hover {
    color: var(--text);
    text-decoration-color: var(--gold-2);
}

/* ============================================================
   Proof
   ============================================================ */
.proof {
    padding-block: clamp(24px, 5vh, 48px);
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(20, 24, 56, 0.0), rgba(20, 24, 56, 0.35));
}

.proof__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.4vh, 24px);
}

.proof__stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 20px);
}

.proof__stat {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: clamp(16px, 2.4vw, 22px) clamp(18px, 3vw, 26px);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform 280ms var(--ease-out), border-color 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
    overflow: hidden;
}

.proof__stat::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 203, 61, 0.0), rgba(255, 203, 61, 0.18) 50%, rgba(255, 203, 61, 0.0));
    opacity: 0;
    transition: opacity 280ms var(--ease-out);
    pointer-events: none;
    z-index: -1;
}

.proof__stat:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 203, 61, 0.35);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.9), 0 12px 30px -10px rgba(255, 157, 44, 0.18);
}

.proof__stat:hover::after {
    opacity: 1;
}

.proof__value {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(26px, 4.4vw, 38px);
    line-height: 1;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.proof__label {
    font-size: clamp(13px, 1.5vw, 15px);
    color: var(--text-muted);
    line-height: 1.3;
}

.proof__note {
    margin: 0;
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.5;
    color: var(--text-muted);
    text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding-block: clamp(40px, 8vh, 72px);
    border-top: 1px solid var(--line);
}

.faq__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vh, 32px);
}

.faq__head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 720px;
}

.faq__eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(11px, 1.5vw, 13px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-2);
    background: rgba(255, 203, 61, 0.08);
    border: 1px solid rgba(255, 203, 61, 0.25);
    padding: 6px 12px;
    border-radius: 999px;
}

.faq__title {
    margin: 0;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(24px, 4.4vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.faq__sub {
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.55;
}

.faq__list {
    display: grid;
    gap: 10px;
}

.faq__item, .legal-block {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 240ms var(--ease);
}

.faq__item:hover, .legal-block:hover {
    border-color: rgba(255, 203, 61, 0.22);
}

.faq__item[open], .legal-block[open] {
    border-color: rgba(255, 203, 61, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.faq__q, .legal-block__q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: clamp(14px, 2vw, 18px) clamp(16px, 3vw, 22px);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(15px, 1.8vw, 17px);
    color: var(--text);
    cursor: pointer;
    list-style: none;
    transition: color 200ms var(--ease);
}

.faq__q::-webkit-details-marker,
.legal-block__q::-webkit-details-marker { display: none; }

.faq__q::after, .legal-block__q::after {
    content: '';
    margin-left: auto;
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--gold-2);
    border-bottom: 2px solid var(--gold-2);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 280ms var(--ease-out);
}

.faq__item[open] .faq__q::after,
.legal-block[open] .legal-block__q::after {
    transform: rotate(-135deg) translate(-2px, -2px);
}

.faq__q:hover, .legal-block__q:hover { color: var(--gold-2); }

.faq__a {
    margin: 0;
    padding: 0 clamp(16px, 3vw, 22px) clamp(16px, 2.4vw, 20px);
    color: var(--text-muted);
    font-size: clamp(14px, 1.6vw, 15.5px);
    line-height: 1.6;
}

/* ============================================================
   Footer (expanded)
   ============================================================ */
.site-footer {
    border-top: 1px solid var(--line);
    padding-block: clamp(28px, 5vh, 48px);
    background: rgba(5, 6, 19, 0.7);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 40px);
    padding-bottom: clamp(20px, 3vh, 32px);
    border-bottom: 1px solid var(--line);
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 380px;
}

.brand--footer .brand__mark {
    width: 38px;
    height: 38px;
}

.brand--footer .brand__mark svg {
    width: 38px;
    height: 38px;
}

.site-footer__about {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.site-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    color: var(--text-muted);
}

.badge--gold {
    background: var(--grad-gold);
    color: #1a1206;
    border-color: transparent;
}

.site-footer__cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 32px);
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__title {
    margin: 0;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-2);
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__list a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 160ms var(--ease);
}

.site-footer__list a:hover { color: var(--gold-2); }

.site-footer__list--helpline li {
    color: var(--text-muted);
    font-size: 14px;
}

.site-footer__list--helpline a {
    text-decoration: underline;
    text-decoration-color: rgba(154, 161, 207, 0.3);
    text-underline-offset: 3px;
}

/* Trust badges (mirrors parent footer__trust) */
.trust {
    position: relative;
    margin-top: clamp(20px, 3vh, 28px);
    padding: clamp(18px, 3vw, 28px) clamp(18px, 3vw, 30px);
    background:
        linear-gradient(135deg, rgba(255, 203, 61, 0.07) 0%, rgba(124, 58, 237, 0.05) 100%),
        rgba(255, 255, 255, 0.025);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 203, 61, 0.5), transparent);
}

.trust__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: clamp(14px, 2vh, 20px);
}

.trust__title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(15px, 1.8vw, 17px);
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
}

.trust__sub {
    color: var(--text-faint);
    font-size: clamp(11px, 1.3vw, 13px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.trust__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: stretch;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    background: transparent;
    border-radius: 14px;
    text-align: center;
    min-height: 88px;
    transition: transform 240ms var(--ease-out), box-shadow 280ms var(--ease-out);
    text-decoration: none;
    color: inherit;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -10px rgba(255, 157, 44, 0.35);
}

.trust-badge img {
    height: 34px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(1.05);
}

.trust-badge__label {
    font-size: 11px;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.trust-badge--age {
    border: 1px solid rgba(255, 203, 61, 0.25);
    background: linear-gradient(135deg, rgba(255, 203, 61, 0.08), rgba(255, 157, 44, 0.04));
}

.trust-badge__age {
    color: var(--text);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(24px, 2.4vw, 30px);
    letter-spacing: -0.04em;
    line-height: 1;
}

.trust-badge__age sup {
    font-size: 0.55em;
    margin-left: 2px;
    top: -0.5em;
}

/* Disclosure */
.disclosure {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: clamp(20px, 3vh, 32px);
    padding: clamp(14px, 2.4vw, 20px);
    background: linear-gradient(135deg, rgba(255, 203, 61, 0.06), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(255, 203, 61, 0.22);
    border-radius: var(--radius);
}

.disclosure__badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    color: #1a1206;
    background: var(--grad-gold);
    border-radius: 999px;
    letter-spacing: -0.02em;
}

.disclosure__body { flex: 1 1 auto; }

.disclosure__title {
    margin: 0 0 6px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--text);
}

.disclosure__text {
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(13px, 1.5vw, 14px);
    line-height: 1.55;
}

/* Bottom strip */
.site-footer__bottom {
    margin-top: clamp(20px, 3vh, 28px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__copy {
    margin: 0;
    font-size: 12.5px;
    color: var(--text-faint);
    line-height: 1.6;
}

.site-footer__copy strong { color: var(--text-muted); }

.site-footer__copy a {
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-color: rgba(154, 161, 207, 0.3);
    text-underline-offset: 3px;
}

.site-footer__legal {
    margin: 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    color: var(--text-faint);
}

.site-footer__age {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 11px;
    color: #1a1206;
    background: var(--grad-gold);
    padding: 3px 8px;
    border-radius: 999px;
    letter-spacing: 0.4px;
}

/* ============================================================
   Entrance animation (reveal)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    animation: reveal-in 680ms var(--ease-out) forwards;
    animation-delay: var(--reveal-delay, 0ms);
}

@keyframes reveal-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 203, 61, 0.55); }
    50%      { box-shadow: 0 0 0 6px rgba(255, 203, 61, 0); }
}

@keyframes gold-shift {
    0%   { background-position: 0% 0%; }
    100% { background-position: 220% 0%; }
}

@keyframes sheen {
    0%   { transform: translateX(-120%); }
    55%  { transform: translateX(140%); }
    100% { transform: translateX(140%); }
}

@keyframes drift-a {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50%      { transform: translate3d(-14px, 22px, 0) rotate(8deg); }
}

@keyframes drift-b {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50%      { transform: translate3d(18px, -18px, 0) rotate(-10deg); }
}

@keyframes drift-c {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50%      { transform: translate3d(-10px, -14px, 0) rotate(6deg); }
}

/* ============================================================
   Layout breakpoints (layout only)
   ============================================================ */
@media (max-width: 379px) {
    :root { --header-h: 64px; --age-h: 44px; }
    .age-strip__inner { padding-block: 6px; }
    .hero { padding-block: 18px; }
    .hero__inner { gap: 12px; }
    .hero__rg-link { font-size: 13px; }
    .proof { padding-block: 18px; }
}

@media (min-width: 480px) {
    .proof__stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
    .brand__tag { display: none; }
    .hero__ball--3 { display: none; }
}

@media (min-width: 480px) {
    .trust__row { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 560px) {
    .site-footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
    .trust__row { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 768px) {
    :root { --header-h: 84px; }
    .site-footer__top {
        grid-template-columns: minmax(220px, 1fr) 2.4fr;
        align-items: start;
    }
    .site-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
    .site-footer__copy { flex: 1 1 auto; }
}

@media (min-width: 1024px) {
    .hero__ball--1 { right: clamp(20px, 6vw, 80px); top: clamp(10px, 4vh, 40px); }
    .hero__ball--2 { left: clamp(20px, 6vw, 80px); bottom: clamp(20px, 4vh, 40px); }
}

/* Landscape mobile (e.g. 812×375) — compress vertical rhythm */
@media (max-height: 480px) and (orientation: landscape) {
    .hero { min-height: auto; padding-block: 18px; }
    .hero__inner { gap: 10px; }
    .proof { padding-block: 14px; }
    .hero__ball { display: none; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        animation-delay: 0ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
