/* =============================================================================
   RIVENTO QUEST — main stylesheet
   Architecture:
     1. Tokens
     2. Reset / base
     3. Typography
     4. Layout primitives
     5. Header / nav / ticker
     6. Buttons / chips
     7. Sections (hero, promises, how-it-works, packs, faq, cta-strip)
     8. Article pages (about, terms, privacy, etc.)
     9. Auth pages (login, register)
    10. Footer
    11. Cookies / FAB
    12. Animations
    13. Responsive
   ============================================================================= */


/* ─── 1. TOKENS ────────────────────────────────────────────────────────── */
:root {
    /* base palette */
    --bg:           #0a0a0a;
    --bg-elev-1:    #111111;
    --bg-elev-2:    #161616;
    --surface:      #1a1a1a;
    --surface-2:    #222222;
    --line:         #2a2a2a;
    --line-strong:  #3a3a3a;

    /* light contrast block */
    --paper:        #ededea;
    --paper-2:      #d8d6d0;
    --ink:          #0a0a0a;

    /* text on dark */
    --text:         #f4f3ee;
    --text-mute:    #9a9893;
    --text-dim:     #5e5c57;

    /* accents */
    --red:          #ff2e2e;
    --red-deep:     #c81e1e;
    --red-glow:     rgba(255, 46, 46, .25);
    --amber:        #ffb22e;
    --green-ok:     #4ade80;

    /* misc */
    --shadow-card:  0 1px 0 var(--line-strong), 0 24px 60px -28px rgba(0,0,0,.9);
    --shadow-flat:  0 1px 0 var(--line);

    /* type */
    --font-display: 'Big Shoulders Display', 'Impact', system-ui, sans-serif;
    --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono:    'Space Mono', 'JetBrains Mono', ui-monospace, monospace;

    /* rhythm */
    --container:    1280px;
    --gutter:       clamp(1rem, 3vw, 2rem);
    --section-y:    clamp(4rem, 8vw, 7rem);
    --radius:       2px;

    /* motion */
    --ease:         cubic-bezier(.2, .7, .15, 1);
    --dur-fast:     150ms;
    --dur-mid:      300ms;
    --dur-slow:     520ms;
}


/* ─── 2. RESET / BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* faint dot matrix to give the dark background atmosphere */
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,.025) 1px, transparent 0);
    background-size: 32px 32px;
    background-position: 0 0;
}

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

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; }

::selection { background: var(--red); color: var(--bg); }

.skip-link {
    position: absolute; top: -40px; left: 1rem;
    background: var(--red); color: var(--bg);
    padding: .5rem .75rem; z-index: 9999;
    font-family: var(--font-mono); font-size: .8rem; text-transform: uppercase;
}
.skip-link:focus { top: 1rem; }


/* ─── 3. TYPOGRAPHY ───────────────────────────────────────────────────── */
.display, h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: .92;
    letter-spacing: -.005em;
    color: var(--text);
}

.h-mega   { font-size: clamp(3.5rem, 11vw, 9.5rem); font-weight: 900; letter-spacing: -.02em; }
.h-xl     { font-size: clamp(2.5rem, 6vw, 5rem); }
.h-lg     { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.h-md     { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.h-sm     { font-size: clamp(1.25rem, 2.2vw, 1.5rem); line-height: 1.05; }

.lede     { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--text-mute); max-width: 60ch; line-height: 1.55; }
.muted    { color: var(--text-mute); }

.mono { font-family: var(--font-mono); font-weight: 400; letter-spacing: .02em; }
.mono--xs { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.mono--sm { font-size: .82rem; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--font-mono);
    font-size: .75rem; text-transform: uppercase; letter-spacing: .2em;
    color: var(--text-mute);
}
.eyebrow::before {
    content: ""; width: 24px; height: 1px; background: var(--red);
}

.text-red { color: var(--red); }
.outline-text {
    -webkit-text-stroke: 1.5px var(--text);
    color: transparent;
}


/* ─── 4. LAYOUT PRIMITIVES ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section--paper {
    background: var(--paper);
    color: var(--ink);
}
.section--paper .lede { color: rgba(10,10,10,.6); }
.section--paper .muted { color: rgba(10,10,10,.55); }
.section--paper .eyebrow { color: rgba(10,10,10,.6); }
.section--paper .eyebrow::before { background: var(--red-deep); }
.section--paper h1, .section--paper h2, .section--paper h3, .section--paper h4 { color: var(--ink); }

.divider {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 0;
}
.section--paper + .section,
.section + .section--paper { border-top: 0; }


/* ─── 5. HEADER / NAV / TICKER ────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transition: transform var(--dur-mid) var(--ease);
    will-change: transform;
}
.site-header.is-hidden { transform: translateY(-100%); }

.ticker {
    border-bottom: 1px solid var(--line);
    background: #050505;
    overflow: hidden;
    height: 32px;
    display: flex; align-items: center;
}
.ticker__track {
    display: inline-flex; gap: 2.5rem; white-space: nowrap;
    animation: ticker-scroll 50s linear infinite;
    will-change: transform;
    padding-left: 2.5rem;
}
.ticker__item {
    font-family: var(--font-mono);
    font-size: .72rem; text-transform: uppercase; letter-spacing: .15em;
    color: var(--text-mute);
}
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.site-header__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.1rem var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}

.brand {
    display: inline-flex; align-items: center; gap: .8rem;
    color: var(--text);
}
.brand__mark {
    width: 36px; height: 36px;
    color: var(--red);
    background: var(--bg-elev-2);
    border: 1px solid var(--line-strong);
    display: grid; place-items: center;
}
.brand__mark svg { width: 22px; height: 22px; }

.brand__words { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .01em;
}
.brand__sub {
    font-family: var(--font-mono);
    font-size: .65rem; text-transform: uppercase; letter-spacing: .25em;
    color: var(--text-mute);
    margin-top: 4px;
}

.site-nav__list {
    display: flex; align-items: center; gap: 2rem;
    justify-content: center;
}
.site-nav__link {
    font-family: var(--font-mono);
    font-size: .8rem; text-transform: uppercase; letter-spacing: .15em;
    color: var(--text-mute);
    padding: .5rem 0;
    position: relative;
    transition: color var(--dur-fast) var(--ease);
}
.site-nav__link::after {
    content: "";
    position: absolute; left: 0; bottom: -2px;
    width: 100%; height: 2px;
    background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--dur-mid) var(--ease);
}
.site-nav__link:hover { color: var(--text); }
.site-nav__link:hover::after,
.site-nav__link.is-active::after { transform: scaleX(1); }
.site-nav__link.is-active { color: var(--text); }

.site-nav__link--cta {
    background: var(--red);
    color: var(--bg) !important;
    padding: .7rem 1.3rem;
    font-weight: 700;
    transition: background var(--dur-fast) var(--ease);
}
.site-nav__link--cta::after { display: none; }
.site-nav__link--cta:hover { background: #ff5050; }

.nav-toggle {
    display: none;
    width: 36px; height: 36px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
    border: 1px solid var(--line-strong);
}
.nav-toggle span {
    display: block; width: 18px; height: 2px; background: var(--text);
    transition: transform var(--dur-mid) var(--ease), opacity var(--dur-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    inset: 109px 0 0 0; /* below header */
    background: var(--bg);
    transform: translateX(100%);
    transition: transform var(--dur-mid) var(--ease);
    z-index: 99;
    padding: 2rem var(--gutter);
    display: flex; flex-direction: column; justify-content: space-between;
    border-top: 1px solid var(--line);
    will-change: transform;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0; }
.mobile-nav__link {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.75rem;
    text-transform: uppercase;
}
.mobile-nav__link--cta {
    color: var(--red);
}
.mobile-nav__index {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-mute);
}
.mobile-nav__legal {
    font-family: var(--font-mono);
    font-size: .7rem; text-transform: uppercase; letter-spacing: .15em;
    color: var(--text-dim);
    margin-top: 2rem;
}


/* ─── 6. BUTTONS / CHIPS ──────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .65rem;
    padding: .95rem 1.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease),
                color var(--dur-fast) var(--ease),
                transform var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn__arrow {
    display: inline-block;
    transition: transform var(--dur-fast) var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary { background: var(--red); color: var(--bg); }
.btn--primary:hover { background: #ff4848; box-shadow: 0 0 0 4px var(--red-glow); }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #1a1a1a; }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); }

.section--paper .btn--ghost { color: var(--ink); border-color: rgba(10,10,10,.25); }
.section--paper .btn--ghost:hover { border-color: var(--red-deep); color: var(--red-deep); }

.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 1.15rem 1.85rem; font-size: .9rem; }
.btn--sm { padding: .55rem 1rem; font-size: .72rem; }

.chip {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .35rem .7rem;
    background: var(--bg-elev-2);
    border: 1px solid var(--line-strong);
    font-family: var(--font-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-mute);
}
.chip--red { background: var(--red); color: var(--bg); border-color: var(--red); }
.chip--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.badge-18 {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: var(--red); color: var(--bg);
    font-family: var(--font-display);
    font-weight: 900; font-size: 1rem;
    flex-shrink: 0;
}


/* ─── 7. SECTIONS ─────────────────────────────────────────────────────── */

/* HERO */
.hero {
    position: relative;
    padding: clamp(3rem, 7vw, 6rem) 0 0;
    overflow: hidden;
}
.hero__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: end;
    padding-bottom: 3rem;
}
.hero__meta {
    display: flex; flex-wrap: wrap; gap: 1rem;
    align-items: center;
}
.hero__title {
    font-size: clamp(3.5rem, 12vw, 11rem);
    line-height: .85;
    letter-spacing: -.025em;
}
.hero__title-row { display: block; }
.hero__title-row--alt { color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.hero__title-row--red { color: var(--red); }

.hero__bottom {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: end;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.hero__lede {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.55;
    color: var(--text-mute);
    max-width: 56ch;
}
.hero__cta-group {
    display: flex; flex-wrap: wrap; gap: .75rem;
    justify-content: flex-end;
}

/* hero visual: spinning wheel */
.hero__visual {
    position: absolute;
    right: -8%;
    top: 18%;
    width: clamp(320px, 38vw, 580px);
    aspect-ratio: 1;
    pointer-events: none;
    opacity: .85;
    z-index: 0;
}
.hero__visual::before {
    content: "";
    position: absolute; inset: 0;
    background:
        conic-gradient(
            from 0deg,
            var(--red) 0 30deg, transparent 30deg 60deg,
            var(--red) 60deg 90deg, transparent 90deg 120deg,
            var(--red) 120deg 150deg, transparent 150deg 180deg,
            var(--red) 180deg 210deg, transparent 210deg 240deg,
            var(--red) 240deg 270deg, transparent 270deg 300deg,
            var(--red) 300deg 330deg, transparent 330deg 360deg
        );
    border-radius: 50%;
    mask: radial-gradient(circle, transparent 60%, #000 60.5%, #000 100%);
    -webkit-mask: radial-gradient(circle, transparent 60%, #000 60.5%, #000 100%);
    animation: hero-spin 60s linear infinite;
    will-change: transform;
}
.hero__visual::after {
    content: "";
    position: absolute; inset: 14%;
    border: 1px dashed var(--line-strong);
    border-radius: 50%;
    animation: hero-spin 90s linear infinite reverse;
    will-change: transform;
}
@keyframes hero-spin {
    to { transform: rotate(360deg); }
}

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

/* hero stats strip */
.hero__strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 3rem;
    padding: 1.25rem 0;
    background: var(--bg-elev-1);
}
.hero__strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
}
.hero__strip-cell {
    display: flex; align-items: center; gap: .8rem;
    padding: .25rem 1.5rem;
    border-right: 1px solid var(--line);
}
.hero__strip-cell:last-child { border-right: 0; }
.hero__strip-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.85rem;
    color: var(--red);
    line-height: 1;
}
.hero__strip-label {
    font-family: var(--font-mono);
    font-size: .68rem; text-transform: uppercase; letter-spacing: .15em;
    color: var(--text-mute);
}


/* PROMISES SECTION */
.promises {
    padding-block: var(--section-y);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.promises__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
}
.promises__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.promise-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 2rem 1.75rem 2.25rem;
    display: flex; flex-direction: column; gap: 1.25rem;
    background: var(--bg);
    transition: background var(--dur-mid) var(--ease);
    position: relative;
    overflow: hidden;
}
.promise-card:hover { background: var(--bg-elev-1); }
.promise-card:hover .promise-card__num { color: var(--red); }
.promise-card__num {
    font-family: var(--font-mono);
    font-size: .8rem; letter-spacing: .15em; color: var(--text-dim);
    transition: color var(--dur-fast) var(--ease);
}
.promise-card__label {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: .95;
}
.promise-card__bar {
    width: 32px; height: 3px; background: var(--red);
    margin-top: auto;
}


/* HOW IT WORKS — paper section */
.how {
    padding-block: var(--section-y);
}
.how__head {
    display: flex; flex-direction: column; gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 36ch;
}
.how__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 2px solid var(--ink);
}
.how-step {
    padding: 2.5rem 2rem 2.5rem 0;
    border-right: 1px solid rgba(10,10,10,.15);
    display: flex; flex-direction: column; gap: 1.25rem;
    position: relative;
}
.how-step:not(:first-child) { padding-left: 2rem; }
.how-step:last-child { border-right: 0; padding-right: 0; }
.how-step__num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    color: var(--red-deep);
    line-height: 1;
    letter-spacing: -.02em;
}
.how-step__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 1;
}
.how-step__body {
    font-size: .95rem;
    color: rgba(10,10,10,.7);
    line-height: 1.55;
}


/* GAME PREVIEW STRIP */
.preview {
    padding-block: var(--section-y);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    position: relative;
}
.preview__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.preview__copy { display: flex; flex-direction: column; gap: 1.5rem; }
.preview__title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: .9;
}
.preview__features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 2rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.preview__feature {
    display: flex; flex-direction: column; gap: .25rem;
}
.preview__feature-label {
    font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase;
    letter-spacing: .15em; color: var(--text-dim);
}
.preview__feature-value {
    font-family: var(--font-display); font-weight: 800;
    font-size: 1.15rem; text-transform: uppercase;
}

/* roulette mock — pure CSS */
.roulette-mock {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
}
.roulette-mock__outer {
    position: absolute; inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--bg-elev-2) 0%, var(--bg) 70%),
        repeating-conic-gradient(
            from 0deg,
            var(--red) 0deg 18.94deg,
            var(--ink) 18.94deg 37.89deg
        );
    background-blend-mode: normal;
    border: 1px solid var(--line-strong);
    box-shadow: inset 0 0 0 8px var(--bg), inset 0 0 0 9px var(--line);
}
.roulette-mock__numbers {
    position: absolute; inset: 6%;
    border-radius: 50%;
    background: repeating-conic-gradient(
        from -9.47deg,
        var(--red)  0deg 18.94deg,
        var(--ink)  18.94deg 37.89deg
    );
}
.roulette-mock__numbers::before {
    content: ""; position: absolute; inset: 12%;
    border-radius: 50%; background: var(--bg-elev-1);
    border: 1px solid var(--line);
}
.roulette-mock__hub {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 28%; aspect-ratio: 1;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid; place-items: center;
    z-index: 2;
    box-shadow: 0 0 0 1px var(--line) inset;
}
.roulette-mock__hub-inner {
    width: 60%; aspect-ratio: 1;
    background: var(--red);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--bg);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: .04em;
}
.roulette-mock__pointer {
    position: absolute; left: 50%; top: -1%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 22px solid var(--red);
    z-index: 3;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.5));
}
.roulette-mock__numbers,
.roulette-mock__outer {
    animation: wheel-rotate 40s linear infinite;
    will-change: transform;
}
@keyframes wheel-rotate {
    to { transform: rotate(360deg); }
}


/* PACKS */
.packs {
    padding-block: var(--section-y);
    border-bottom: 1px solid var(--line);
}
.packs__head {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem;
    align-items: end; margin-bottom: 3rem;
}
.packs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.pack-card {
    background: var(--bg-elev-1);
    padding: 2.25rem 1.75rem;
    display: flex; flex-direction: column; gap: 1.5rem;
    position: relative;
    transition: background var(--dur-mid) var(--ease);
}
.pack-card:hover { background: var(--bg-elev-2); }
.pack-card--featured {
    background: var(--paper);
    color: var(--ink);
}
.pack-card--featured h3,
.pack-card--featured .pack-card__price-num,
.pack-card--featured .pack-card__coins-num {
    color: var(--ink);
}
.pack-card--featured:hover { background: #f5f3ee; }
.pack-card__head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 1rem;
}
.pack-card__tier {
    font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase;
    letter-spacing: .15em; color: var(--text-dim);
}
.pack-card--featured .pack-card__tier { color: rgba(10,10,10,.55); }
.pack-card__name {
    font-family: var(--font-display); font-weight: 800;
    font-size: 1.85rem; text-transform: uppercase; line-height: 1;
    margin-top: .35rem;
}
.pack-card__badge {
    display: inline-flex; padding: .3rem .55rem;
    background: var(--red); color: var(--bg);
    font-family: var(--font-mono); font-size: .65rem;
    text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
    flex-shrink: 0;
}
.pack-card__tagline {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--text-mute);
    margin-top: -.5rem;
}
.pack-card--featured .pack-card__tagline { color: rgba(10,10,10,.6); }
.pack-card__coins {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: baseline; gap: .5rem;
}
.pack-card--featured .pack-card__coins {
    border-top: 1px solid rgba(10,10,10,.15);
    border-bottom: 1px solid rgba(10,10,10,.15);
}
.pack-card__coins-num {
    font-family: var(--font-display); font-weight: 900;
    font-size: 2.5rem; line-height: 1;
}
.pack-card__coins-label {
    font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase;
    letter-spacing: .15em; color: var(--text-mute);
}
.pack-card--featured .pack-card__coins-label { color: rgba(10,10,10,.55); }
.pack-card__features {
    display: flex; flex-direction: column; gap: .65rem;
    flex: 1;
}
.pack-card__features li {
    display: flex; gap: .65rem;
    font-size: .92rem;
    color: var(--text-mute);
}
.pack-card--featured .pack-card__features li { color: rgba(10,10,10,.75); }
.pack-card__features li::before {
    content: "+"; color: var(--red); font-weight: 700;
    font-family: var(--font-mono);
    flex-shrink: 0; line-height: 1.5;
}
.pack-card__price {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: .5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--line);
}
.pack-card--featured .pack-card__price { border-top: 1px dashed rgba(10,10,10,.2); }
.pack-card__price-num {
    font-family: var(--font-display); font-weight: 900;
    font-size: 2rem; line-height: 1;
}
.pack-card__price-note {
    font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase;
    letter-spacing: .12em; color: var(--text-dim);
}
.pack-card--featured .pack-card__price-note { color: rgba(10,10,10,.5); }

.packs__legal {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border: 1px dashed var(--line-strong);
    display: flex; gap: 1rem; align-items: center;
}
.packs__legal-icon {
    font-family: var(--font-display); font-weight: 900;
    color: var(--red); font-size: 1.5rem; line-height: 1;
    flex-shrink: 0;
}
.packs__legal p { font-size: .85rem; color: var(--text-mute); }


/* FAQ — paper */
.faq {
    padding-block: var(--section-y);
}
.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.faq__list { display: flex; flex-direction: column; }
.faq-item {
    border-top: 1px solid rgba(10,10,10,.15);
    padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(10,10,10,.15); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: grid; grid-template-columns: auto 1fr auto; gap: 1rem;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__num {
    font-family: var(--font-mono); font-size: .8rem;
    color: rgba(10,10,10,.5);
    letter-spacing: .15em;
}
.faq-item__q {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    text-transform: uppercase; line-height: 1.1;
}
.faq-item__icon {
    width: 24px; height: 24px;
    position: relative; flex-shrink: 0;
}
.faq-item__icon::before, .faq-item__icon::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    width: 14px; height: 2px; background: var(--ink);
    transform: translate(-50%, -50%);
    transition: transform var(--dur-mid) var(--ease);
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item__a {
    margin-top: 1rem;
    margin-left: calc(2rem + 1rem); /* align with question */
    color: rgba(10,10,10,.7);
    line-height: 1.65;
    max-width: 60ch;
}


/* CTA STRIP */
.cta-strip {
    padding-block: clamp(4rem, 7vw, 6rem);
    background: var(--ink);
    color: var(--paper);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    position: relative;
    overflow: hidden;
}
.cta-strip__bg {
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: .08;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(8rem, 22vw, 24rem);
    line-height: .8;
    color: transparent;
    -webkit-text-stroke: 1px var(--paper);
    white-space: nowrap;
    display: flex; align-items: center;
    user-select: none;
}
.cta-strip__inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}
.cta-strip__title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: .9;
    color: var(--paper);
}
.cta-strip__title em {
    font-style: normal;
    color: var(--red);
}
.cta-strip__lede {
    margin-top: 1rem;
    color: rgba(244,243,238,.6);
    max-width: 50ch;
}


/* ─── 8. ARTICLE PAGES (about, terms, privacy, etc.) ──────────────────── */
.page-hero {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, var(--bg-elev-1), var(--bg));
}
.page-hero__inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: end;
}
.page-hero__title {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .9;
}
.page-hero__crumbs {
    display: flex; gap: .5rem; align-items: center;
    font-family: var(--font-mono); font-size: .75rem;
    text-transform: uppercase; letter-spacing: .15em;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}
.page-hero__crumbs a { color: var(--text-mute); }
.page-hero__crumbs a:hover { color: var(--red); }
.page-hero__crumbs .sep { color: var(--text-dim); }
.page-hero__lede {
    color: var(--text-mute);
    max-width: 52ch;
    font-size: clamp(.95rem, 1.2vw, 1.1rem);
    line-height: 1.6;
}

.article {
    padding-block: var(--section-y);
}
.article__grid {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}
.article__nav {
    position: sticky; top: 130px;
    align-self: start;
    border-left: 1px solid var(--line);
    padding-left: 1.25rem;
}
.article__nav-title {
    font-family: var(--font-mono); font-size: .7rem;
    text-transform: uppercase; letter-spacing: .15em;
    color: var(--text-dim); margin-bottom: .9rem;
}
.article__nav ul { display: flex; flex-direction: column; gap: .55rem; }
.article__nav a {
    font-family: var(--font-mono); font-size: .8rem;
    color: var(--text-mute);
    text-transform: uppercase; letter-spacing: .08em;
    transition: color var(--dur-fast) var(--ease);
}
.article__nav a:hover, .article__nav a.is-active { color: var(--red); }

.article__body {
    max-width: 70ch;
    color: var(--text);
    line-height: 1.7;
}
.article__body > * + * { margin-top: 1.25rem; }
.article__body h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    text-transform: uppercase;
    line-height: 1;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.article__body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.article__body h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-top: 1.75rem;
    color: var(--text);
}
.article__body p { color: var(--text-mute); }
.article__body strong { color: var(--text); font-weight: 700; }
.article__body a { color: var(--red); border-bottom: 1px solid var(--red-deep); }
.article__body a:hover { color: #ff5050; }
.article__body ul, .article__body ol {
    padding-left: 1.5rem;
    color: var(--text-mute);
}
.article__body ul li, .article__body ol li {
    list-style: none;
    position: relative;
    padding-left: .25rem;
    margin-top: .55rem;
}
.article__body ul li::before {
    content: "▸";
    position: absolute; left: -1.25rem;
    color: var(--red);
}
.article__body ol { counter-reset: ol; }
.article__body ol li {
    counter-increment: ol;
}
.article__body ol li::before {
    content: counter(ol, decimal-leading-zero);
    position: absolute; left: -1.75rem;
    color: var(--red);
    font-family: var(--font-mono);
    font-size: .85rem;
}

.article__callout {
    padding: 1.25rem 1.5rem;
    background: var(--bg-elev-1);
    border-left: 3px solid var(--red);
    margin: 2rem 0 !important;
    color: var(--text);
}
.article__callout strong { color: var(--red); }


/* ─── 9. AUTH PAGES (login, register) ─────────────────────────────────── */
.auth {
    min-height: calc(100vh - 109px - 200px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
}
.auth__visual {
    background: var(--bg-elev-1);
    padding: clamp(2rem, 5vw, 4rem);
    display: flex; flex-direction: column; justify-content: space-between;
    border-right: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.auth__visual::before {
    content: ""; position: absolute;
    right: -25%; bottom: -25%;
    width: 70%; aspect-ratio: 1;
    background:
        repeating-conic-gradient(
            from 0deg,
            var(--red) 0deg 30deg,
            transparent 30deg 60deg
        );
    border-radius: 50%;
    opacity: .5;
    mask: radial-gradient(circle, transparent 55%, #000 56%);
    -webkit-mask: radial-gradient(circle, transparent 55%, #000 56%);
    animation: hero-spin 50s linear infinite;
    pointer-events: none;
    will-change: transform;
}
.auth__visual-head {
    display: flex; flex-direction: column; gap: 1.5rem;
    position: relative; z-index: 1;
}
.auth__visual-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: .9;
}
.auth__visual-list {
    margin-top: auto;
    display: flex; flex-direction: column; gap: .75rem;
    position: relative; z-index: 1;
}
.auth__visual-item {
    display: flex; gap: .75rem; align-items: center;
    font-family: var(--font-mono); font-size: .8rem;
    color: var(--text-mute);
    text-transform: uppercase; letter-spacing: .1em;
}
.auth__visual-item::before {
    content: "★"; color: var(--red);
}

.auth__form-wrap {
    padding: clamp(2rem, 5vw, 4rem);
    display: flex; align-items: center;
    background: var(--bg);
}
.auth__form {
    width: 100%; max-width: 400px;
    margin-inline: auto;
    display: flex; flex-direction: column; gap: 1.25rem;
}
.auth__form-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1;
    margin-bottom: .25rem;
}
.auth__form-sub {
    color: var(--text-mute);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.field {
    display: flex; flex-direction: column; gap: .35rem;
}
.field__label {
    font-family: var(--font-mono); font-size: .7rem;
    text-transform: uppercase; letter-spacing: .15em;
    color: var(--text-mute);
}
.field__input {
    background: var(--bg-elev-1);
    border: 1px solid var(--line-strong);
    color: var(--text);
    padding: .9rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--dur-fast) var(--ease),
                background var(--dur-fast) var(--ease);
    outline: none;
}
.field__input:focus {
    border-color: var(--red);
    background: var(--bg-elev-2);
}
.field__error {
    font-family: var(--font-mono); font-size: .72rem;
    color: var(--red); text-transform: uppercase; letter-spacing: .1em;
    min-height: 1em;
}
.auth__legal {
    font-size: .8rem;
    color: var(--text-dim);
    line-height: 1.55;
}
.auth__legal a { color: var(--text-mute); border-bottom: 1px solid var(--line-strong); }
.auth__legal a:hover { color: var(--red); border-color: var(--red); }
.auth__switch {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-mute);
    text-align: center;
}
.auth__switch a { color: var(--red); }


/* MODAL (post-register) */
.modal-shade {
    position: fixed; inset: 0;
    background: rgba(5,5,5,.85);
    display: none;
    align-items: center; justify-content: center;
    z-index: 1000;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity var(--dur-mid) var(--ease);
}
.modal-shade.is-open {
    display: flex;
    opacity: 1;
}
.modal {
    background: var(--bg-elev-1);
    border: 1px solid var(--line-strong);
    max-width: 480px; width: 100%;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    position: relative;
    transform: translateY(20px);
    transition: transform var(--dur-mid) var(--ease);
}
.modal-shade.is-open .modal { transform: translateY(0); }
.modal__icon {
    width: 48px; height: 48px; background: var(--red); color: var(--bg);
    display: grid; place-items: center;
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
    margin-bottom: 1.25rem;
}
.modal__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1;
    margin-bottom: .75rem;
}
.modal__body {
    color: var(--text-mute);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.modal__body strong { color: var(--text); }
.modal__close {
    position: absolute; top: 1rem; right: 1rem;
    width: 32px; height: 32px;
    border: 1px solid var(--line-strong);
    color: var(--text-mute);
    display: grid; place-items: center;
    transition: color var(--dur-fast), border-color var(--dur-fast);
}
.modal__close:hover { color: var(--red); border-color: var(--red); }
.modal__steps {
    margin-top: 1rem;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    display: flex; flex-direction: column; gap: .5rem;
    font-family: var(--font-mono); font-size: .78rem;
    color: var(--text-dim);
    text-transform: uppercase; letter-spacing: .1em;
}
.modal__step { display: flex; gap: .65rem; }
.modal__step span:first-child { color: var(--red); }


/* ─── 10. FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding-top: clamp(3rem, 5vw, 5rem);
}
.site-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: clamp(2rem, 5vw, 5rem);
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--gutter);
    padding-bottom: 3rem;
}
.site-footer__brand .brand { margin-bottom: 1.75rem; }
.site-footer__heading {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1;
    margin-bottom: 1.25rem;
}
.site-footer__intro {
    color: var(--text-mute);
    max-width: 36ch;
    margin-bottom: 1.5rem;
}
.site-footer__contact {
    font-size: .9rem;
    color: var(--text-mute);
    line-height: 1.7;
}
.site-footer__contact a { color: var(--text); }
.site-footer__contact a:hover { color: var(--red); }
.site-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.site-footer__col-title {
    font-family: var(--font-mono); font-size: .7rem;
    text-transform: uppercase; letter-spacing: .15em;
    color: var(--text-dim);
    margin-bottom: 1rem;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: .65rem; }
.site-footer__col a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--text);
    transition: color var(--dur-fast) var(--ease);
}
.site-footer__col a:hover { color: var(--red); }
.site-footer__status {
    display: flex; flex-direction: column; gap: .65rem;
    font-family: var(--font-mono); font-size: .78rem;
    color: var(--text-mute);
    text-transform: uppercase; letter-spacing: .08em;
}
.site-footer__status li { display: flex; align-items: center; gap: .65rem; }
.dot {
    width: 8px; height: 8px;
    background: var(--text-dim);
    border-radius: 50%;
}
.dot--ok {
    background: var(--green-ok);
    box-shadow: 0 0 8px rgba(74, 222, 128, .5);
}

.site-footer__disclaimer {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.5rem var(--gutter);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex; gap: 1.25rem; align-items: center;
}
.site-footer__disclaimer p {
    font-size: .8rem;
    color: var(--text-mute);
    line-height: 1.55;
}

.site-footer__bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.25rem var(--gutter);
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    color: var(--text-dim);
}


/* ─── 11. COOKIES / FAB ───────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    left: 1rem; right: 1rem; bottom: 1rem;
    background: var(--bg-elev-1);
    border: 1px solid var(--line-strong);
    z-index: 200;
    transform: translateY(120%);
    transition: transform var(--dur-mid) var(--ease);
    will-change: transform;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem; align-items: center;
}
.cookie-banner__title {
    font-family: var(--font-display);
    font-size: 1.1rem; text-transform: uppercase;
    display: block; margin-bottom: .35rem;
    color: var(--text);
}
.cookie-banner p {
    color: var(--text-mute); font-size: .85rem; line-height: 1.5;
    max-width: 60ch;
}
.cookie-banner__actions {
    display: flex; gap: .65rem; align-items: center; flex-wrap: wrap;
}
.cookie-banner__link {
    font-family: var(--font-mono); font-size: .75rem;
    color: var(--text-mute);
    text-transform: uppercase; letter-spacing: .1em;
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 2px;
}
.cookie-banner__link:hover { color: var(--red); border-color: var(--red); }

.cookie-fab {
    position: fixed;
    left: 1rem; bottom: 1rem;
    width: 44px; height: 44px;
    background: var(--bg-elev-1);
    border: 1px solid var(--line-strong);
    color: var(--text-mute);
    display: grid; place-items: center;
    z-index: 99;
    transition: color var(--dur-fast), border-color var(--dur-fast),
                transform var(--dur-fast);
}
.cookie-fab:hover {
    color: var(--red); border-color: var(--red);
    transform: scale(1.05);
}
.cookie-fab[hidden] { display: none; }


/* ─── 12. ANIMATIONS ──────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--dur-slow) var(--ease),
                transform var(--dur-slow) var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-stagger="1"] { transition-delay: 80ms; }
.reveal[data-stagger="2"] { transition-delay: 160ms; }
.reveal[data-stagger="3"] { transition-delay: 240ms; }
.reveal[data-stagger="4"] { transition-delay: 320ms; }
.reveal[data-stagger="5"] { transition-delay: 400ms; }
.reveal[data-stagger="6"] { transition-delay: 480ms; }


/* ─── 13. RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .promises__grid { grid-template-columns: repeat(2, 1fr); }
    .packs__grid { grid-template-columns: 1fr; }
    .preview__grid { grid-template-columns: 1fr; gap: 3rem; }
    .faq__grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero__strip-grid { grid-template-columns: repeat(2, 1fr); }
    .hero__strip-cell:nth-child(2) { border-right: 0; }
    .hero__strip-cell:nth-child(3), .hero__strip-cell:nth-child(4) {
        border-top: 1px solid var(--line);
    }
    .hero__bottom { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
    .hero__cta-group { justify-content: flex-start; }
    .article__grid { grid-template-columns: 1fr; gap: 2rem; }
    .article__nav {
        position: static;
        border-left: 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 1.25rem 0;
    }
    .article__nav ul { flex-direction: row; flex-wrap: wrap; gap: 1rem 1.5rem; }
    .auth { grid-template-columns: 1fr; min-height: auto; }
    .auth__visual { border-right: 0; border-bottom: 1px solid var(--line); }
    .site-footer__top { grid-template-columns: 1fr; }
    .page-hero__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
    .site-nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .promises__grid { grid-template-columns: 1fr; }
    .promises__head, .packs__head { grid-template-columns: 1fr; gap: 1.25rem; }
    .how__list { grid-template-columns: 1fr; }
    .how-step {
        border-right: 0;
        border-bottom: 1px solid rgba(10,10,10,.15);
        padding: 1.75rem 0 !important;
    }
    .how-step:last-child { border-bottom: 0; }
    .hero__visual { right: -45%; top: 30%; opacity: .35; }
    .cta-strip__inner { grid-template-columns: 1fr; }
    .cookie-banner__inner { grid-template-columns: 1fr; gap: 1rem; }
    .cookie-banner__actions { justify-content: stretch; }
    .cookie-banner__actions .btn { flex: 1; justify-content: center; }
    .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
    .site-footer__col--meta { grid-column: span 2; }
    .preview__features { grid-template-columns: 1fr; }
    .ticker__item { font-size: .65rem; }
}

@media (max-width: 480px) {
    .hero__strip-grid { grid-template-columns: 1fr; }
    .hero__strip-cell { border-right: 0 !important; border-top: 1px solid var(--line); padding: .75rem 1rem; }
    .hero__strip-cell:first-child { border-top: 0; }
    .site-footer__cols { grid-template-columns: 1fr; }
    .site-footer__col--meta { grid-column: auto; }
    .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}
