/* ============================================
   ASCEND FEED — Editorial Luxury Design System
   Mobile-first. Refined. Show-stopping.
   ============================================ */

:root {
    /* Color — Obsidian + Warm Gold */
    --bg:           #0a0a0f;
    --bg-2:         #11111a;
    --bg-3:         #161622;
    --surface:      #1a1a26;
    --surface-2:    #20202e;
    --line:         rgba(244, 220, 156, 0.08);
    --line-2:       rgba(244, 220, 156, 0.16);
    --line-3:       rgba(244, 220, 156, 0.28);

    --ink:          #f5f1e6;
    --ink-2:        #c9c4b5;
    --ink-3:        #8a8678;
    --muted:        #5a5648;

    --gold:         #d4af37;
    --gold-2:       #f4d47c;
    --gold-3:       #b88a1e;
    --gold-glow:    rgba(244, 212, 124, 0.22);
    --violet:       #6f5dd1;

    --serif:        'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
    --sans:         'Geist', -apple-system, 'Segoe UI', 'Helvetica Neue', sans-serif;

    --r-sm:  10px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;

    --gutter: clamp(20px, 5vw, 40px);

    --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

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

/* ============================================
   ATMOSPHERIC LAYERS
   ============================================ */
.grain {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: .05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.85'/></svg>");
}
.ambient {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    overflow: hidden;
}
.ambient__orb {
    position: absolute;
    width: 60vmax; height: 60vmax;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .3;
}
.ambient__orb--gold {
    top: -25%; left: -10%;
    background: radial-gradient(circle, rgba(212,175,55,.5), transparent 70%);
    animation: drift 18s var(--ease) infinite alternate;
}
.ambient__orb--violet {
    bottom: -30%; right: -15%;
    background: radial-gradient(circle, rgba(111,93,209,.4), transparent 70%);
    animation: drift 22s var(--ease) infinite alternate-reverse;
}
@keyframes drift {
    from { transform: translate(0, 0); }
    to   { transform: translate(8vw, -6vh); }
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
}
.section {
    padding: clamp(80px, 13vw, 150px) 0;
    position: relative;
    z-index: 2;
}
.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 7vw, 80px);
}
.section__head .kicker { justify-content: center; }
.section__head p {
    color: var(--ink-2);
    font-size: clamp(16px, 2vw, 18px);
    margin-top: 18px;
    line-height: 1.6;
}

/* Section ornament */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 var(--gutter);
    margin: 0 auto;
    max-width: 1240px;
    position: relative;
    z-index: 2;
}
.ornament__line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.ornament__mark {
    color: var(--gold-2);
    font-size: 12px;
    opacity: .6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display {
    font-family: var(--serif);
    font-weight: 350;
    line-height: 1.04;
    letter-spacing: -0.022em;
    color: var(--ink);
    font-size: clamp(34px, 6.5vw, 72px);
    font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}
.display em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-2);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    background: linear-gradient(180deg, var(--gold-2) 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 24px;
}
.kicker::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold);
    opacity: .6;
}
.kicker--centered::after {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold);
    opacity: .6;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid var(--line-2);
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-2);
    backdrop-filter: blur(8px);
    background: rgba(20,20,29,.6);
}
.eyebrow__dot {
    width: 6px; height: 6px;
    background: var(--gold-2);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(244,212,124,.18);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(244,212,124,.18); }
    50%      { box-shadow: 0 0 0 8px rgba(244,212,124,0); }
}

.lede {
    color: var(--ink-2);
    font-size: clamp(17px, 2vw, 19px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all .25s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn--primary {
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    color: var(--bg);
    box-shadow:
        0 1px 0 rgba(255,255,255,.4) inset,
        0 -1px 0 rgba(0,0,0,.2) inset,
        0 10px 30px -10px var(--gold-glow),
        0 2px 4px rgba(0,0,0,.3);
    font-weight: 600;
}
.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255,255,255,.4) inset,
        0 -1px 0 rgba(0,0,0,.2) inset,
        0 16px 40px -10px var(--gold-glow),
        0 4px 8px rgba(0,0,0,.3);
}
.btn--ghost {
    background: rgba(255,255,255,.02);
    color: var(--ink);
    border: 1px solid var(--line-2);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.05);
    border-color: var(--gold-2);
    color: var(--gold-2);
}
.btn--pill { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; }

.btn__spinner {
    display: none;
    animation: spin .8s linear infinite;
}
.btn[data-loading="true"] .btn__label { opacity: .4; }
.btn[data-loading="true"] .btn__spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   NAV
   ============================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all .3s var(--ease);
}
.nav.is-scrolled {
    background: rgba(10, 10, 15, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line);
}
.nav__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: 0.08em;
    color: var(--ink);
}
.nav__logo img { height: 32px; width: auto; }
.nav__logo-fallback {
    align-items: center;
    gap: 10px;
    color: var(--gold-2);
    font-weight: 500;
    letter-spacing: 0.18em;
    font-size: 13px;
    font-family: var(--sans);
    text-transform: uppercase;
}
.nav__links {
    display: none;
    gap: 32px;
}
.nav__links a {
    font-size: 13px;
    color: var(--ink-2);
    letter-spacing: 0.02em;
    transition: color .2s;
    position: relative;
}
.nav__links a:hover { color: var(--gold-2); }
.nav__cta { flex-shrink: 0; }

@media (min-width: 880px) {
    .nav__links { display: inline-flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 140px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(244,212,124,.06), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(111,93,209,.06), transparent 50%);
    z-index: 0;
}
.hero__inner {
    display: grid;
    gap: clamp(48px, 8vw, 80px);
    grid-template-columns: 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (min-width: 920px) {
    .hero__inner { grid-template-columns: 1.15fr 1fr; }
}
.hero__title {
    font-family: var(--serif);
    font-weight: 350;
    line-height: 0.98;
    letter-spacing: -0.025em;
    font-size: clamp(44px, 9vw, 96px);
    margin: 24px 0 28px;
    font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero__title em {
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(180deg, var(--gold-2) 20%, var(--gold) 60%, var(--gold-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero__lede {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--ink-2);
    max-width: 560px;
    line-height: 1.55;
    margin-bottom: 36px;
}
.hero__lede strong {
    color: var(--ink);
    font-weight: 500;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}
.hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(16px, 3vw, 32px);
}
.hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__meta-item strong {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--ink);
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}
.hero__meta-item span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-3);
}
.hero__meta-divider {
    width: 1px;
    height: 32px;
    background: var(--line-2);
}

/* Hero phone visual */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone {
    position: relative;
    width: min(280px, 70vw);
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(145deg, #2a2a3a, #14141d);
    border-radius: 44px;
    padding: 10px;
    box-shadow:
        0 1px 0 rgba(255,255,255,.05) inset,
        0 50px 100px -30px rgba(0,0,0,.6),
        0 20px 40px -20px var(--gold-glow);
    border: 1px solid var(--line-2);
}
.phone__notch {
    position: absolute;
    top: 16px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 22px;
    background: #000;
    border-radius: 100px;
    z-index: 3;
}
.phone__screen {
    width: 100%; height: 100%;
    background: var(--bg-2);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}
.phone__glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(244,212,124,.15), transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: glow 6s ease-in-out infinite alternate;
}
@keyframes glow {
    from { opacity: .6; transform: scale(.95); }
    to   { opacity: 1;  transform: scale(1.05); }
}
.hero__badge {
    position: absolute;
    bottom: 20px; right: -10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(20,20,29,.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line-2);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--ink-2);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,.5);
}
.hero__badge svg { color: var(--gold-2); }

@media (min-width: 920px) {
    .hero__badge { right: 0; bottom: 60px; }
}

/* Placeholders */
.placeholder {
    width: 100%;
    background:
        linear-gradient(135deg, rgba(244,212,124,.04) 0%, transparent 50%),
        var(--surface);
    border: 1px dashed var(--line-2);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, transparent 49%, var(--line) 49%, var(--line) 51%, transparent 51%);
    background-size: 16px 16px;
    opacity: .4;
    pointer-events: none;
}
.placeholder--phone { height: 100%; }
.placeholder--square { aspect-ratio: 1; }
.placeholder--wide { aspect-ratio: 4 / 3; }
.placeholder--phone-wide { aspect-ratio: 4 / 3; }
.placeholder__inner {
    text-align: center;
    color: var(--ink-3);
    padding: 24px;
    position: relative;
    z-index: 2;
}
.placeholder__inner svg { color: var(--gold-2); margin-bottom: 12px; }
.placeholder__inner p {
    font-family: var(--serif);
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--ink-2);
}
.placeholder__inner small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
}

/* Real images (when image paths are set in PHP config) */
.media {
    width: 100%;
    display: block;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    object-fit: cover;
    background: var(--surface);
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.4);
}
.media--square { aspect-ratio: 1; }
.media--wide { aspect-ratio: 4 / 3; }

/* Hero phone screen image (fills the phone frame) */
.phone__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 36px;
    background: var(--bg-2);
}

/* Scroll hint */
.scrollhint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-3);
    z-index: 5;
}
.scrollhint__line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--gold-2), transparent);
    animation: scrollhint 2s ease-in-out infinite;
}
@keyframes scrollhint {
    0%, 100% { transform: scaleY(1); opacity: .4; }
    50%      { transform: scaleY(1.5); opacity: 1; }
}
@media (min-width: 920px) { .scrollhint { display: inline-flex; } }

/* ============================================
   TRUST BAND
   ============================================ */
.trustband {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    position: relative;
    z-index: 2;
    background: rgba(17, 17, 26, 0.4);
    backdrop-filter: blur(8px);
}
.trustband__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}
@media (min-width: 880px) {
    .trustband__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.trustband__label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-3);
    font-weight: 300;
    flex-shrink: 0;
}
.trustband__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 18px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 500;
}
.trustband__dot {
    width: 3px; height: 3px;
    background: var(--gold-2);
    border-radius: 50%;
    opacity: .6;
}

/* ============================================
   HOOK SECTION (REDESIGNED)
   ============================================ */
.section--hook { padding: clamp(80px, 13vw, 140px) 0; }

.hookgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .hookgrid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (min-width: 980px) {
    .hookgrid { grid-template-columns: repeat(4, 1fr); }
}

.hookcard {
    position: relative;
    padding: 32px 28px 36px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    transition: all .4s var(--ease);
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}
.hookcard::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--gold-glow), transparent 60%);
    opacity: 0;
    transition: opacity .5s var(--ease);
    pointer-events: none;
}
.hookcard::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
    opacity: 0;
    transition: opacity .5s var(--ease);
}
.hookcard:hover {
    transform: translateY(-4px);
    border-color: var(--line-2);
}
.hookcard:hover::before,
.hookcard:hover::after { opacity: 1; }

.hookcard__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.hookcard__num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: var(--gold-2);
    font-weight: 400;
    font-variation-settings: "opsz" 9, "WONK" 1;
}
.hookcard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    background: rgba(244,212,124,.06);
    border: 1px solid var(--line-2);
    border-radius: 12px;
    color: var(--gold-2);
    transition: all .4s var(--ease);
}
.hookcard:hover .hookcard__icon {
    background: rgba(244,212,124,.12);
    border-color: var(--line-3);
    transform: rotate(-4deg);
}
.hookcard__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 24px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 10px;
    font-variation-settings: "opsz" 36, "SOFT" 30;
}
.hookcard__title em {
    font-style: italic;
    color: var(--gold-2);
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variation-settings: "opsz" 36, "WONK" 1;
}
.hookcard__body {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.6;
    margin-top: auto;
}

.hook__close {
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(20px, 3vw, 26px);
    color: var(--ink);
    font-style: italic;
    font-weight: 300;
    margin-top: clamp(48px, 7vw, 72px);
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 60, "SOFT" 30, "WONK" 1;
}
.hook__close em {
    color: var(--gold-2);
    font-style: italic;
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pullquote {
    padding: clamp(60px, 10vw, 110px) 0;
    position: relative;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, rgba(244,212,124,.04), transparent 60%);
}
.pullquote blockquote {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--gutter);
    position: relative;
}
.pullquote__mark {
    color: var(--gold-2);
    opacity: .35;
    margin-bottom: 24px;
}
.pullquote p {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 350;
    font-size: clamp(22px, 3.5vw, 38px);
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.pullquote cite {
    display: block;
    margin-top: 28px;
    font-family: var(--sans);
    font-size: 12px;
    font-style: normal;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-2);
}

/* ============================================
   TWO COL SECTIONS
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
@media (min-width: 880px) {
    .two-col { grid-template-columns: 1fr 1fr; }
    .two-col--reverse .two-col__media { order: 2; }
}
.two-col__copy p {
    color: var(--ink-2);
    margin-top: 18px;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
}
.two-col__copy p strong { color: var(--ink); font-weight: 500; }
.two-col__copy p em { color: var(--gold-2); font-style: italic; font-family: var(--serif); font-weight: 400; }
.two-col__copy h2 { margin-top: 8px; }

.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-top: 28px;
}
.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-2);
}
.checklist svg {
    color: var(--gold-2);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    padding: 3px;
    border: 1px solid var(--line-2);
    border-radius: 50%;
    background: rgba(244,212,124,.05);
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    counter-reset: step;
}
@media (min-width: 640px) {
    .steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
    .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
    position: relative;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    transition: all .4s var(--ease);
    overflow: hidden;
}
.step__inner {
    padding: 32px 28px;
    position: relative;
    z-index: 2;
}
.step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--gold-glow), transparent 60%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}
.step:hover {
    transform: translateY(-4px);
    border-color: var(--line-2);
}
.step:hover::before { opacity: .5; }
.step__num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--gold-2);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    font-variation-settings: "opsz" 9, "WONK" 1;
}
.step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: rgba(244,212,124,.06);
    border: 1px solid var(--line-2);
    border-radius: 14px;
    color: var(--gold-2);
    margin-bottom: 20px;
}
.step h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--ink);
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 36;
}
.step p {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ============================================
   CATEGORIES
   ============================================ */
.section--categories {
    background: linear-gradient(180deg, transparent, var(--bg-2), transparent);
}
.cats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (min-width: 560px) { .cats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px) { .cats { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1080px) { .cats { grid-template-columns: repeat(6, 1fr); } }

.cat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    color: var(--ink-2);
    font-size: 14px;
    font-weight: 500;
    transition: all .25s var(--ease);
}
.cat:hover {
    background: rgba(244,212,124,.04);
    border-color: var(--line-2);
    color: var(--ink);
    transform: translateY(-2px);
}
.cat svg { color: var(--gold-2); flex-shrink: 0; }

/* ============================================
   BREAK THE LOCKS
   ============================================ */
.section--locks {
    background: radial-gradient(ellipse at center, rgba(111,93,209,.05), transparent 70%);
}
.locks {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.locks__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--line-2);
    border-radius: 20px;
    color: var(--gold-2);
    margin-bottom: 32px;
    box-shadow:
        0 0 0 8px rgba(244,212,124,.04),
        0 20px 60px -20px var(--gold-glow);
}
.locks__lede {
    font-size: clamp(17px, 2vw, 19px);
    color: var(--ink-2);
    margin-top: 28px;
    line-height: 1.65;
}
.locks__lede em {
    color: var(--gold-2);
    font-style: italic;
    font-family: var(--serif);
}
.locks__close {
    margin-top: 36px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(244,212,124,.06), rgba(111,93,209,.04));
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    color: var(--ink);
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.6;
}
.locks__close strong {
    color: var(--gold-2);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ============================================
   FOR YOU
   ============================================ */
.foryou {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
}
@media (min-width: 700px) {
    .foryou { grid-template-columns: 1fr 1fr; }
}
.foryou__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    transition: all .25s var(--ease);
}
.foryou__item:hover {
    background: rgba(244,212,124,.03);
    border-color: var(--line-2);
}
.foryou__item svg {
    color: var(--gold-2);
    flex-shrink: 0;
    margin-top: 3px;
    padding: 4px;
    background: rgba(244,212,124,.08);
    border-radius: 50%;
    border: 1px solid var(--line-2);
}
.foryou__item p {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.55;
}

/* ============================================
   FINAL CTA
   ============================================ */
.section--final {
    background:
        radial-gradient(ellipse at center, rgba(244,212,124,.08), transparent 60%),
        var(--bg);
    overflow: hidden;
    position: relative;
}
.section--final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(244,212,124,.1), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(111,93,209,.08), transparent 40%);
    pointer-events: none;
}
.final {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.final__title { margin-top: 8px; }
.final__lede {
    color: var(--ink-2);
    font-size: clamp(17px, 2vw, 20px);
    margin-top: 28px;
    line-height: 1.6;
}
.final__lede--strong {
    color: var(--ink);
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 350;
}
.final__cta {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.final__assurances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    color: var(--ink-3);
    font-size: 13px;
}
.final__assurances div {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.final__assurances svg { color: var(--gold-2); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0 40px;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 2;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
@media (min-width: 700px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__logo { height: 28px; width: auto; opacity: .8; }
.footer__brand p {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-3);
    font-size: 14px;
}
.footer__meta {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.05em;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed; inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.modal[aria-hidden="false"] {
    pointer-events: auto;
    opacity: 1;
}
.modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(5, 5, 10, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal__panel {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--line-2);
    border-radius: 28px 28px 0 0;
    padding: 40px 28px 32px;
    transform: translateY(40px);
    transition: transform .4s var(--ease-out);
    box-shadow:
        0 -20px 80px rgba(0,0,0,.5),
        0 0 0 1px rgba(255,255,255,.03) inset;
    max-height: 90vh;
    overflow-y: auto;
}
.modal[aria-hidden="false"] .modal__panel {
    transform: translateY(0);
}
@media (min-width: 600px) {
    .modal { align-items: center; padding: 24px; }
    .modal__panel {
        border-radius: 28px;
        padding: 48px 40px 36px;
        transform: translateY(20px) scale(.98);
    }
    .modal[aria-hidden="false"] .modal__panel {
        transform: translateY(0) scale(1);
    }
}
.modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    color: var(--ink-2);
    transition: all .2s;
}
.modal__close:hover {
    background: rgba(255,255,255,.08);
    color: var(--ink);
    transform: rotate(90deg);
}
.modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 16px;
}
.modal__title {
    font-family: var(--serif);
    font-weight: 350;
    font-size: clamp(28px, 5vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    font-variation-settings: "opsz" 144, "SOFT" 50;
}
.modal__title em {
    font-style: italic;
    color: var(--gold-2);
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variation-settings: "opsz" 144, "WONK" 1;
}
.modal__lede {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 28px;
}

.field { margin-bottom: 14px; }
.field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 8px;
}
.field input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--line-2);
    border-radius: var(--r-sm);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    transition: all .2s;
}
.field input::placeholder { color: var(--muted); }
.field input:focus {
    outline: 0;
    border-color: var(--gold-2);
    background: rgba(244,212,124,.04);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.field--hp {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
}

.modal__fine {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin-top: 16px;
}
.modal__error {
    color: #ff8a7a;
    font-size: 13px;
    margin-top: 12px;
    text-align: center;
    min-height: 18px;
}

.modal__inner--success { display: none; text-align: center; }
.modal.is-success .modal__inner:not(.modal__inner--success) { display: none; }
.modal.is-success .modal__inner--success { display: block; }
.modal__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    color: var(--bg);
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px var(--gold-glow);
    animation: pop .5s var(--ease-out);
}
@keyframes pop {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}

#wl-submit { margin-top: 8px; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
    transition-delay: var(--d, 0s);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}