@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,500;1,9..144,700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
    --navy-900: #060B24;
    --navy-800: #0A1140;
    --navy-700: #151E5A;
    --navy-600: #24306E;
    --navy-50: #EEF0F9;
    --gold-600: #B8922F;
    --gold-500: #D4A944;
    --gold-400: #E6C574;
    --gold-300: #F2D98A;
    --gold-100: #FBF3DC;
    --cream: #FBF8F0;
    --paper: #FFFFFF;
    --ink: #0E132E;
    --ink-soft: #1F2548;
    --muted: #5D6487;
    --muted-soft: #8A91AE;
    --line: #E4E6EE;
    --line-soft: #F1F2F7;
    --surface: #F9F8F4;
    --red-soft: #F7E4E4;
    --red-ink: #8E2B2B;
    --amber-soft: #F6E8C8;
    --amber-ink: #876012;
    --green-soft: #E1EFE6;
    --green-ink: #2E5F41;
    --shadow-sm: 0 1px 2px rgba(10, 17, 64, 0.06);
    --shadow-md: 0 6px 24px rgba(10, 17, 64, 0.08);
    --shadow-lg: 0 18px 48px rgba(10, 17, 64, 0.14);
    --radius-sm: 6px;
    --radius: 14px;
    --radius-lg: 22px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --font-serif: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --container: min(1160px, 100vw - 2.4rem);
}

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

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.62;
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

.container {
    width: var(--container);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(6, 11, 36, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(212, 169, 68, 0.18);
}

.site-header__inner {
    width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 14px;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    flex-shrink: 0;
}

.brand__mark {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(212, 169, 68, 0.25));
}

.brand__text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.018em;
    line-height: 1;
    font-variation-settings: "opsz" 48;
}

.brand__text .accent {
    color: var(--gold-400);
    font-style: italic;
    font-weight: 600;
}

.primary-nav {
    display: flex;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav a {
    display: inline-block;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    font-weight: 500;
    border-radius: 8px;
    position: relative;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.primary-nav a::after {
    content: '';
    position: absolute;
    left: 15px; right: 15px;
    bottom: 6px;
    height: 1px;
    background: var(--gold-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}

.primary-nav a:hover { color: var(--gold-300); }
.primary-nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 8px;
    transition: background 0.2s var(--ease);
}

.menu-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.menu-toggle svg { width: 22px; height: 22px; }

.mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 88vw);
    background: var(--navy-900);
    transform: translateX(100%);
    transition: transform 0.34s var(--ease);
    z-index: 200;
    padding: 20px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid rgba(212, 169, 68, 0.2);
    overflow-y: auto;
    visibility: hidden;
}

.mobile-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-drawer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer__brand {
    font-family: var(--font-serif);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.015em;
}

.mobile-drawer__brand .accent {
    color: var(--gold-400);
    font-style: italic;
    font-weight: 600;
}

.drawer-close {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 8px;
    transition: background 0.2s var(--ease);
}

.drawer-close:hover { background: rgba(255, 255, 255, 0.08); }
.drawer-close svg { width: 20px; height: 20px; }

.mobile-drawer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-drawer a {
    display: block;
    padding: 14px 16px;
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.008em;
    border-radius: 10px;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.mobile-drawer a:hover,
.mobile-drawer a:focus-visible {
    background: rgba(212, 169, 68, 0.1);
    color: var(--gold-300);
    outline: none;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 11, 36, 0.62);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 150;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

body.is-locked { overflow: hidden; }

.hero {
    position: relative;
    background:
        radial-gradient(ellipse 60% 80% at 80% 0%, rgba(212, 169, 68, 0.14), transparent 60%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(36, 48, 110, 0.35), transparent 55%),
        var(--navy-900);
    color: #fff;
    padding: clamp(56px, 9vw, 110px) 0 clamp(56px, 9vw, 100px);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 169, 68, 0.35), transparent);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: end;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 26px;
}

.hero__eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--gold-400);
}

.hero__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(2.3rem, 7vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.028em;
    margin: 0 0 22px;
    color: #fff;
    font-variation-settings: "opsz" 144;
    max-width: 18ch;
}

.hero__title .italic {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-300);
}

.hero__deck {
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 56ch;
    margin: 0 0 32px;
    font-weight: 400;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 26px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero__meta > span + span::before {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--gold-400);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    margin-left: -16px;
}

.hero__mark {
    position: absolute;
    right: clamp(-80px, -6vw, -40px);
    bottom: clamp(-60px, -4vw, -30px);
    width: clamp(260px, 36vw, 500px);
    opacity: 0.07;
    pointer-events: none;
    filter: grayscale(1) brightness(3);
    z-index: -1;
}

.intro {
    padding: clamp(60px, 8vw, 100px) 0 clamp(30px, 4vw, 50px);
}

.intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
}

.intro__lead {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: -0.012em;
    margin: 0;
    font-variation-settings: "opsz" 48;
}

.intro__lead::first-letter {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 4.2em;
    float: left;
    line-height: 0.85;
    padding: 0.08em 0.14em 0 0;
    color: var(--navy-800);
    font-style: normal;
}

.intro__body {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: clamp(30px, 5vw, 56px) 0;
}

.stat {
    padding: 28px 20px 28px 0;
    border-right: 1px solid var(--line);
    position: relative;
}

.stat:nth-child(2n) {
    border-right: 0;
    padding-left: 20px;
    padding-right: 0;
}

.stat__num {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.028em;
    color: var(--navy-800);
    margin-bottom: 10px;
    font-variation-settings: "opsz" 144;
}

.stat__num .unit {
    color: var(--gold-500);
    font-style: italic;
    font-weight: 500;
    font-size: 0.7em;
    margin-left: 2px;
}

.stat__label {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 32ch;
}

.section {
    padding: clamp(60px, 8vw, 110px) 0;
}

.section--tinted {
    background: var(--surface);
    border-block: 1px solid var(--line);
}

.section__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: clamp(40px, 5vw, 64px);
    max-width: 780px;
}

.section__number {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gold-600);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section__number::after {
    content: '';
    flex: 0 0 60px;
    height: 1px;
    background: var(--gold-500);
    opacity: 0.6;
}

.section__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(1.7rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.022em;
    margin: 0;
    color: var(--ink);
    font-variation-settings: "opsz" 72;
}

.section__title .italic {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-600);
}

.section__lede {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.65;
    margin: 0;
    max-width: 62ch;
}

.streams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.stream {
    background: var(--paper);
    padding: 28px 26px;
    transition: background 0.25s var(--ease);
    position: relative;
}

.stream:hover {
    background: var(--cream);
}

.stream__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-600);
    margin-bottom: 18px;
    border: 1px solid var(--gold-500);
    border-radius: 10px;
    background: var(--gold-100);
}

.stream__icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stream__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: -0.012em;
    margin: 0 0 8px;
    color: var(--ink);
    font-variation-settings: "opsz" 24;
}

.stream__body {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

.mix {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mix__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.mix__item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.mix__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}

.mix__name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.32rem;
    letter-spacing: -0.014em;
    color: var(--ink);
    margin: 0;
    font-variation-settings: "opsz" 36;
}

.mix__tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--navy-50);
    color: var(--navy-700);
    border: 1px solid transparent;
}

.mix__desc {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
    max-width: 70ch;
}

.bar {
    display: flex;
    height: 32px;
    border-radius: 7px;
    overflow: hidden;
    background: var(--line-soft);
    box-shadow: inset 0 1px 2px rgba(14, 19, 46, 0.04);
    margin-top: 6px;
}

.bar__seg {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.14);
    transition: flex 0.4s var(--ease);
    min-width: 0;
}

.bar__seg--1 { background: linear-gradient(180deg, #1A2560, var(--navy-800)); }
.bar__seg--2 { background: linear-gradient(180deg, var(--gold-400), var(--gold-500)); color: var(--navy-900); text-shadow: none; }
.bar__seg--3 { background: linear-gradient(180deg, #4A5680, #313A64); }
.bar__seg--4 { background: linear-gradient(180deg, #B89264, #8E6F47); }
.bar__seg--5 { background: linear-gradient(180deg, #7B7A95, #5F5E7A); }

.mix__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    font-size: 0.86rem;
    color: var(--muted);
    margin-top: 4px;
}

.mix__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mix__legend-swatch {
    width: 11px;
    height: 11px;
    border-radius: 3px;
    flex-shrink: 0;
}

.mix__legend-value {
    font-weight: 700;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    margin-left: 2px;
}

.tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.tier {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tier--featured {
    background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
    color: #fff;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 1px var(--gold-500), var(--shadow-md);
}

.tier__ribbon {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}

.tier__name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: inherit;
    opacity: 0.9;
}

.tier__range {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0 0 6px;
    color: inherit;
    font-variation-settings: "opsz" 72;
}

.tier__range .italic {
    font-style: italic;
    font-weight: 500;
    font-size: 0.5em;
    color: var(--gold-500);
    margin-left: 4px;
}

.tier--featured .tier__range .italic { color: var(--gold-300); }

.tier__hint {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0 0 20px;
}

.tier--featured .tier__hint { color: rgba(255, 255, 255, 0.64); }

.tier__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.tier--featured .tier__list { border-color: rgba(255, 255, 255, 0.12); }

.tier__list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--muted);
}

.tier--featured .tier__list li { color: rgba(255, 255, 255, 0.82); }

.tier__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 10px;
    height: 6px;
    border-left: 1.7px solid var(--gold-500);
    border-bottom: 1.7px solid var(--gold-500);
    transform: rotate(-45deg);
}

.tier--featured .tier__list li::before { border-color: var(--gold-400); }

.risk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-width: 560px;
}

.risk-table thead {
    background: var(--navy-900);
    color: #fff;
}

.risk-table th {
    text-align: left;
    padding: 16px 18px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.risk-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.risk-table tbody tr:last-child td { border-bottom: 0; }
.risk-table tbody tr:hover { background: var(--cream); }

.risk-table td:first-child {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.pill {
    display: inline-block;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.pill--low { background: var(--green-soft); color: var(--green-ink); }
.pill--med { background: var(--amber-soft); color: var(--amber-ink); }
.pill--high { background: var(--red-soft); color: var(--red-ink); }

.principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
}

.principles > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.principles > div:last-child { border-bottom: 0; }

.principles dt {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: -0.016em;
    line-height: 1.2;
    color: var(--ink);
    margin: 0;
    font-variation-settings: "opsz" 48;
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.principles dt::before {
    content: attr(data-num);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--gold-600);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    padding-top: 6px;
}

.principles dd {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 48px;
    max-width: 68ch;
}

.pullquote {
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pullquote::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 169, 68, 0.4), transparent);
}

.pullquote__inner {
    max-width: 880px;
    text-align: left;
    position: relative;
}

.pullquote__mark {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 700;
    font-style: italic;
    color: var(--gold-500);
    line-height: 0.7;
    margin-bottom: -12px;
    display: block;
}

.pullquote q {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    line-height: 1.3;
    letter-spacing: -0.016em;
    display: block;
    margin-bottom: 28px;
    font-variation-settings: "opsz" 96;
    quotes: none;
}

.pullquote q::before, .pullquote q::after { content: ''; }

.pullquote cite {
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-300);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.pullquote cite::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--gold-400);
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
}

.faq details {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    transition: padding 0.25s var(--ease);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    letter-spacing: -0.012em;
    color: var(--ink);
    font-variation-settings: "opsz" 36;
    transition: color 0.2s var(--ease);
}

.faq summary:hover { color: var(--gold-600); }
.faq summary::-webkit-details-marker { display: none; }

.faq__toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    position: relative;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.3s var(--ease);
}

.faq__toggle::before,
.faq__toggle::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    background: var(--ink);
    transition: transform 0.25s var(--ease), background 0.2s var(--ease);
}

.faq__toggle::before {
    width: 11px; height: 1.4px;
    transform: translate(-50%, -50%);
}

.faq__toggle::after {
    width: 1.4px; height: 11px;
    transform: translate(-50%, -50%);
}

.faq details[open] .faq__toggle {
    background: var(--navy-800);
    border-color: var(--navy-800);
    transform: rotate(180deg);
}

.faq details[open] .faq__toggle::before,
.faq details[open] .faq__toggle::after { background: #fff; }

.faq details[open] .faq__toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.faq p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
    padding-right: 40px;
    max-width: 70ch;
}

.cta {
    padding: clamp(60px, 8vw, 100px) 0;
}

.cta__inner {
    background:
        radial-gradient(ellipse 80% 100% at 80% 100%, rgba(212, 169, 68, 0.22), transparent 60%),
        linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: var(--radius-lg);
    padding: clamp(40px, 7vw, 72px) clamp(30px, 6vw, 68px);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta__inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 169, 68, 0.5), transparent);
}

.cta__kicker {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta__kicker::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--gold-400);
}

.cta__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    max-width: 20ch;
    font-variation-settings: "opsz" 72;
}

.cta__title .italic { font-style: italic; color: var(--gold-300); font-weight: 500; }

.cta__body {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 54ch;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold-500);
    color: var(--navy-900);
}

.btn--primary:hover {
    background: var(--gold-400);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(212, 169, 68, 0.28);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.site-footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.58);
    padding: 44px 0 32px;
    font-size: 0.88rem;
    border-top: 1px solid rgba(212, 169, 68, 0.15);
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.site-footer a {
    color: var(--gold-300);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s var(--ease);
}

.site-footer a:hover { border-color: var(--gold-400); }

.site-footer__brand {
    font-family: var(--font-serif);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.012em;
}

.site-footer__brand .accent {
    color: var(--gold-400);
    font-style: italic;
    font-weight: 600;
}

.rule {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0.4;
    margin: 0;
}

@media (min-width: 640px) {
    .intro__grid {
        grid-template-columns: 1.15fr 1fr;
        gap: 56px;
        align-items: start;
    }
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
    .stat {
        padding: 34px 22px;
        border-right: 1px solid var(--line);
    }
    .stat:nth-child(2n) {
        padding-left: 22px;
        padding-right: 22px;
    }
    .stat:last-child { border-right: 0; padding-right: 0; }
    .stat:first-child { padding-left: 0; }
    .mix__item {
        padding: 32px 30px;
    }
    .principles dt { font-size: 1.55rem; }
}

@media (min-width: 900px) {
    .hero__grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 899px) {
    .primary-nav { display: none; }
    .menu-toggle { display: inline-flex; }
}

@media (max-width: 520px) {
    .site-header__inner { padding-block: 12px; gap: 12px; }
    .brand__text { font-size: 1.2rem; }
    .stream { padding: 24px 22px; }
    .mix__item { padding: 22px 20px; }
    .tier { padding: 28px 22px; }
    .cta__inner { border-radius: var(--radius); }
    .principles dd { padding-left: 0; }
    .principles dt { font-size: 1.2rem; gap: 12px; }
}

@media (max-width: 380px) {
    :root { --container: min(1160px, 100vw - 1.8rem); }
    .hero__title { font-size: clamp(2rem, 10vw, 2.8rem); }
    .bar { height: 28px; }
    .bar__seg { font-size: 0.72rem; padding: 0 7px; }
}

@media (orientation: landscape) and (max-height: 520px) {
    .hero { padding: 52px 0 56px; }
    .section { padding: 48px 0; }
    .intro { padding: 44px 0 20px; }
}

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