/* Key of Keys — site styles */

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

html, body { margin: 0; padding: 0; }

body {
    background: #0e0e10;
    color: #e8e8ea;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 0.6em;
    color: #f5f5f7;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- NAV ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(14, 14, 16, 0.82);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    max-width: 1180px;
    margin: 0 auto;
}

.nav__logo img {
    height: 44px;
    width: auto;
}

.nav__menu {
    display: flex;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__menu a {
    color: #d6d6d8;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
    text-decoration: none;
}

.nav__menu a:hover { color: var(--accent); }

.nav__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__toggle,
.nav__cart {
    background: none;
    border: 0;
    color: #e8e8ea;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav__toggle { display: none; }

.nav__cart svg { width: 24px; height: 24px; }
.nav__toggle svg { width: 28px; height: 28px; }

.nav__toggle-x { display: none; }
.nav__toggle.is-open .nav__toggle-bars { display: none; }
.nav__toggle.is-open .nav__toggle-x { display: inline; }

.nav__cart:hover,
.nav__toggle:hover { background: rgba(255, 255, 255, 0.06); color: var(--accent); }

.nav__cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--accent);
    color: #0e0e10;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ---------- HERO ---------- */
.hero {
    padding: 110px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Falling keys + numbers in hero */
.hero__fall {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero__fall-item {
    position: absolute;
    top: -60px;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    display: inline-flex;
    opacity: 0;
    will-change: transform, opacity;
    animation-name: heroFall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.hero__fall-item.is-key svg {
    width: 1em;
    height: 1em;
    display: block;
}

.hero .container { position: relative; z-index: 2; }

@keyframes heroFall {
    0%   { transform: translate3d(0, -40px, 0) rotate(0deg); opacity: 0; }
    12%  { opacity: var(--peak, 0.2); }
    88%  { opacity: var(--peak, 0.2); }
    100% { transform: translate3d(var(--drift, 0px), 820px, 0) rotate(var(--rot, 180deg)); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__fall { display: none; }
}

.hero__tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    position: relative;
}

.hero__tagline span { opacity: 0.9; }
.hero__tagline .sep {
    margin: 0 12px;
    opacity: 0.55;
}

.hero h1 {
    position: relative;
    margin-bottom: 18px;
}

.hero h1 .accent,
h2 .accent { color: var(--accent); }

.hero__sub {
    position: relative;
    font-size: 1.15rem;
    color: #b5b5ba;
    max-width: 640px;
    margin: 0 auto;
}

/* ---------- SECTIONS ---------- */
.section { padding: 80px 0; }

.section__head {
    text-align: center;
    margin-bottom: 56px;
}

.eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.hero--short { padding: 80px 0 50px; }

/* ---------- KEY HERO ---------- */
.hero--key { padding-bottom: 60px; }

.key-hero__image {
    position: relative;
    max-width: 380px;
    margin: 56px auto 0;
    z-index: 2;
}

.key-hero__image::before {
    content: '';
    position: absolute;
    inset: -20% -10% -10%;
    background: radial-gradient(ellipse at 50% 45%,
        color-mix(in srgb, var(--accent) 35%, transparent) 0%,
        transparent 60%);
    filter: blur(12px);
    z-index: -1;
    animation: keyGlow 5s ease-in-out infinite;
}

.key-hero__image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
    animation: keyFloat 7s ease-in-out infinite;
}

@keyframes keyFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-14px) rotate(1.5deg); }
}

@keyframes keyGlow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.08); }
}

/* ---------- SECTION VARIANTS ---------- */
.section--alt {
    background: linear-gradient(180deg, #131316 0%, #0e0e10 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section__lede {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #c8c8cc;
    line-height: 1.6;
}

.section__outro {
    max-width: 680px;
    margin: 56px auto 0;
    text-align: center;
    font-size: 1.05rem;
    color: #c8c8cc;
}

/* ---------- NUMBERS GRID ---------- */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.number-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 30px 16px 26px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.number-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 55%, transparent);
    background: color-mix(in srgb, var(--accent) 7%, rgba(255, 255, 255, 0.02));
}

.number-card__digit {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.number-card__word {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8c8cc;
}

@media (max-width: 900px) {
    .numbers-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
    .number-card { padding: 22px 10px 20px; }
    .number-card__digit { font-size: 2.4rem; }
}

@media (max-width: 560px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .number-card { padding: 26px 12px 22px; }
    .number-card__digit { font-size: 2.6rem; }
}

/* ---------- FAQ ---------- */
.faq {
    max-width: 780px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__item[open] {
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 4%, transparent), transparent 80%);
}

.faq__item summary {
    list-style: none;
    padding: 22px 52px 22px 0;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1.08rem;
    color: #f2f2f4;
    position: relative;
    transition: color 0.2s ease;
    outline: none;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { content: ''; }

.faq__item summary:hover { color: var(--accent); }
.faq__item summary:focus-visible { color: var(--accent); }

.faq__item summary::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    background-image:
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor);
    background-size: 14px 2px, 2px 14px;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq__item[open] summary::after {
    transform: rotate(45deg);
    background-size: 14px 2px, 2px 14px;
}

.faq__a {
    padding: 0 0 26px;
    color: #c8c8cc;
    font-size: 1rem;
    line-height: 1.7;
}

.faq__a p { margin: 0 0 0.9em; }
.faq__a p:last-child { margin-bottom: 0; }

.faq__list {
    list-style: none;
    padding: 0;
    margin: 4px 0 1em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 24px;
}

.faq__list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.97rem;
}

.faq__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.7;
}

.faq__a a {
    border-bottom: 1px dashed color-mix(in srgb, var(--accent) 55%, transparent);
}
.faq__a a:hover { text-decoration: none; color: var(--accent); }

@media (max-width: 560px) {
    .faq__list { grid-template-columns: 1fr; }
    .faq__item summary { font-size: 1rem; padding-right: 44px; }
}

/* ---------- BOOKS ---------- */
.books {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.books--pair {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    margin: 0 auto;
    gap: 48px;
}

.book {
    display: block;
    text-align: center;
    color: inherit;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.book:hover {
    transform: translateY(-8px);
    text-decoration: none;
}

.book__cover {
    aspect-ratio: 720 / 1080;
    margin-bottom: 22px;
    filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.55));
    transition: filter 0.35s ease;
}

.book:hover .book__cover {
    filter: drop-shadow(0 30px 40px color-mix(in srgb, var(--accent) 28%, rgba(0,0,0,0.65)));
}

.book__title {
    font-size: 1rem;
    font-weight: 600;
    color: #f2f2f4;
    margin-bottom: 6px;
    line-height: 1.3;
}

.book__sub {
    font-size: 0.85rem;
    color: #8f8f94;
    line-height: 1.45;
}

/* ---------- AUTHOR ---------- */
.author {
    background: linear-gradient(180deg, #131316 0%, #0e0e10 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.author__body {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #c8c8cc;
}

.author__body p { margin-bottom: 1.2em; }

.author__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4em;
    counter-reset: author;
}

.author__list li {
    position: relative;
    padding: 10px 0 10px 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    counter-increment: author;
}

.author__list li:last-child { border-bottom: 0; }

.author__list li::before {
    content: counter(author);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 16%, transparent);
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author__proof {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    font-size: 0.98rem;
    color: #d0d0d4;
}

/* ---------- TIMELINE ---------- */
.timeline {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    padding-left: 28px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, var(--accent), rgba(255,255,255,0.06) 90%);
    opacity: 0.5;
}

.timeline__item {
    position: relative;
    padding: 14px 0 14px 0;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: baseline;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 22px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #0e0e10;
    border: 2px solid var(--accent);
}

.timeline__year {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.timeline__text {
    color: #c8c8cc;
    font-size: 0.98rem;
}

.timeline__text a {
    color: #e8e8ea;
    border-bottom: 1px dashed color-mix(in srgb, var(--accent) 55%, transparent);
}

.timeline__text a:hover {
    color: var(--accent);
    text-decoration: none;
}

/* ---------- FOOTER ---------- */
.footer {
    padding: 44px 0 60px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #9a9a9f;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social a:hover {
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    border-color: color-mix(in srgb, var(--accent) 45%, transparent);
    transform: translateY(-2px);
    text-decoration: none;
}

.social svg {
    width: 20px;
    height: 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .books { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 820px) {
    .nav__toggle { display: inline-flex; }
    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #121214;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding: 8px 0;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
    }
    .nav__menu.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav__menu li { border-top: 1px solid rgba(255,255,255,0.04); }
    .nav__menu a { display: block; padding: 16px 28px; }

    .hero { padding: 70px 0 60px; }
    .hero__tagline { font-size: 0.72rem; letter-spacing: 0.25em; }
    .hero__tagline .sep { margin: 0 6px; }
    .section { padding: 60px 0; }

    .timeline { padding-left: 24px; }
    .timeline__item { grid-template-columns: 64px 1fr; gap: 14px; }
}

@media (max-width: 480px) {
    .books { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    line-height: 1;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary {
    background: var(--accent);
    color: #0e0e10;
}
.btn--primary:hover {
    background: color-mix(in srgb, var(--accent) 82%, white);
}

.btn--ghost {
    background: transparent;
    color: #e8e8ea;
    border-color: rgba(255, 255, 255, 0.18);
}
.btn--ghost:hover {
    color: var(--accent);
    border-color: color-mix(in srgb, var(--accent) 60%, transparent);
    background: color-mix(in srgb, var(--accent) 6%, transparent);
}

.btn--full { width: 100%; }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- PRODUCT (audio-books) ---------- */
.product {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 56px;
    align-items: start;
    padding: 64px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product:last-child { border-bottom: 0; }

.product__cover img {
    width: 100%;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
    transition: filter 0.3s ease;
}

.product:hover .product__cover img {
    filter: drop-shadow(0 34px 44px color-mix(in srgb, var(--accent) 25%, rgba(0,0,0,0.65)));
}

.product__format {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 12px;
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    border-radius: 999px;
    margin-bottom: 18px;
}

.product__title {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    margin-bottom: 8px;
}

.product__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #f2f2f4;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.product__price small {
    font-size: 0.85rem;
    color: #8f8f94;
    font-weight: 500;
    margin-left: 6px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.product__was {
    font-size: 1.1rem;
    color: #8f8f94;
    font-weight: 500;
    margin-left: 10px;
    text-decoration: line-through;
    letter-spacing: 0;
    text-transform: none;
}

/* ---------- READINGS page ---------- */
.readings-scan {
    max-width: 860px;
    margin: 0 auto;
}

.full-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: block;
    overflow: hidden;
}
.full-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.product-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}
.product-images img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0a0a0c;
}
@media (max-width: 720px) {
    .product-images { grid-template-columns: 1fr; gap: 14px; max-width: 460px; }
}

.video-embed {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 56.25%; /* 16:9 — classic fallback, no aspect-ratio dependency */
    height: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---------- SLIDESHOW (portrait book pages) ---------- */
.slideshow {
    max-width: 520px;
    margin: 0 auto;
    outline: none;
}
.slideshow__frame {
    position: relative;
    width: 100%;
    padding-top: 141.5%; /* 842 / 595 — portrait aspect ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.slideshow__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.slideshow__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(14, 14, 16, 0.7);
    color: #f2f2f4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    z-index: 2;
}
.slideshow__nav:hover {
    background: var(--accent);
    color: #0e0e10;
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.05);
}
.slideshow__nav--prev { left: 14px; }
.slideshow__nav--next { right: 14px; }
.slideshow__nav svg { width: 26px; height: 26px; }

.slideshow__controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}
.slideshow__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #e8e8ea;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.slideshow__btn:hover {
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: var(--accent);
    border-color: color-mix(in srgb, var(--accent) 55%, transparent);
}
.slideshow__btn svg { width: 16px; height: 16px; }

.slideshow__range {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    outline: none;
    cursor: pointer;
}
.slideshow__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid #0e0e10;
    cursor: pointer;
    box-shadow: 0 0 0 1px var(--accent);
}
.slideshow__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid #0e0e10;
    cursor: pointer;
    box-shadow: 0 0 0 1px var(--accent);
}

.slideshow__counter {
    margin-top: 12px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    color: #a0a0a5;
    letter-spacing: 0.08em;
}
.slideshow__counter strong { color: #f2f2f4; font-weight: 600; }
@media (max-width: 540px) {
    .slideshow__nav { width: 44px; height: 44px; }
    .slideshow__nav svg { width: 22px; height: 22px; }
    .slideshow__nav--prev { left: 8px; }
    .slideshow__nav--next { right: 8px; }
    .slideshow__btn span { display: none; }
    .slideshow__btn { padding: 10px; }
}


.product__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 10px;
}

.product__features li {
    position: relative;
    padding-left: 26px;
    color: #c8c8cc;
    font-size: 0.98rem;
    line-height: 1.5;
}

.product__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 28%, transparent);
    border: 1.5px solid var(--accent);
}

.product__sub {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.product__sub h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.product__actions {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 780px) {
    .product { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
    .product__cover { max-width: 260px; margin: 0 auto; }
}

/* ---------- CART DRAWER ---------- */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
}
.cart-drawer.is-open { pointer-events: auto; }

.cart-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }

.cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 92vw;
    background: #141416;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-drawer__head h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.01em;
}

.cart-drawer__close {
    background: none;
    border: 0;
    color: #c8c8cc;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}
.cart-drawer__close:hover { color: var(--accent); background: rgba(255,255,255,0.05); }
.cart-drawer__close svg { width: 20px; height: 20px; }

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.cart-drawer__empty {
    padding: 60px 28px;
    text-align: center;
    color: #9a9a9f;
}
.cart-drawer__empty p { margin-bottom: 20px; }

.cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    padding: 16px 24px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-item__image {
    width: 64px;
    height: 96px;
    object-fit: cover;
    border-radius: 6px;
    background: #0e0e10;
}

.cart-item__title {
    font-weight: 500;
    color: #f2f2f4;
    font-size: 0.98rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.cart-item__format {
    font-size: 0.78rem;
    color: #8f8f94;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.cart-item__price {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}

.cart-item__remove {
    background: none;
    border: 0;
    color: #6e6e74;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: color 0.15s ease, background 0.15s ease;
    align-self: start;
}
.cart-item__remove:hover { color: #ff6b6b; background: rgba(255,107,107,0.08); }
.cart-item__remove svg { width: 16px; height: 16px; display: block; }

.cart-drawer__foot {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 24px 24px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.25));
}

.cart-drawer__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #b5b5ba;
}
.cart-drawer__total strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: #f2f2f4;
    font-weight: 600;
}

.cart-drawer__trust {
    text-align: center;
    font-size: 0.75rem;
    color: #6e6e74;
    margin: 14px 0 0;
    letter-spacing: 0.02em;
}

/* ---------- CHECKOUT ---------- */
.checkout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: start;
}

.checkout__form {
    background: #131316;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 36px;
}

.checkout__summary {
    background: #131316;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.checkout__summary h3 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.checkout__summary-items {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.checkout__summary-items li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}
.checkout__summary-items li:last-child { border-bottom: 0; }
.checkout__summary-items .t { color: #e2e2e6; flex: 1; line-height: 1.3; }
.checkout__summary-items .p { color: var(--accent); font-family: 'Space Grotesk', sans-serif; font-weight: 500; white-space: nowrap; }

.checkout__summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.checkout__summary-total span { color: #b5b5ba; font-size: 0.95rem; }
.checkout__summary-total strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: #f2f2f4;
    font-weight: 600;
}

.fieldset {
    border: 0;
    margin: 0 0 32px;
    padding: 0;
}
.fieldset:last-child { margin-bottom: 0; }

.fieldset__legend {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fieldset__legend svg { width: 16px; height: 16px; }

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}
.form-row--3 { grid-template-columns: 2fr 1fr 1fr; }
.form-row--full { grid-template-columns: 1fr; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9a9f;
}

.form-field input,
.form-field select {
    background: #0e0e10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: #f2f2f4;
    font-family: inherit;
    font-size: 0.98rem;
    transition: border-color 0.15s ease, background 0.15s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c8c8cc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--accent);
    background: #111113;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}

.exp-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
}
.exp-row select { width: 100%; }
.exp-row select option { background: #1a1a1a; color: #fff; }

.form-field input::placeholder { color: #555; }

.trust-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.88rem;
    color: #b5b5ba;
}
.trust-row svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

.card-brands {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 6px;
}
.card-brands__label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9a9f;
    margin-right: 4px;
}
.card-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 30px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
    overflow: hidden;
}
.card-brand svg { width: 100%; height: 100%; display: block; }

.card-brands--under {
    justify-content: center;
    margin: 18px 0 0;
    gap: 8px;
}
.card-brands--under .card-brands__label {
    margin-right: 6px;
    font-size: 0.72rem;
    color: #6e6e74;
}

/* Google Places Autocomplete dropdown — match dark theme */
.pac-container {
    background: #1a1a1d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    margin-top: 6px;
    padding: 6px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.pac-container:after { display: none !important; }
.pac-item {
    padding: 9px 14px;
    border-top: 0;
    color: #e8e8ea;
    font-size: 0.94rem;
    cursor: pointer;
}
.pac-item:hover,
.pac-item-selected {
    background: color-mix(in srgb, var(--accent) 12%, rgba(255,255,255,0.03));
}
.pac-item-query { color: #f2f2f4; font-size: 0.95rem; }
.pac-matched { color: var(--accent); }
.pac-icon { filter: invert(0.8) opacity(0.55); }

.form-error {
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.25);
    border-radius: 8px;
    padding: 14px 18px;
    color: #ffb4b4;
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.checkout__empty {
    text-align: center;
    padding: 80px 0;
    color: #9a9a9f;
}

.success {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 32px;
    background: #131316;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.success__icon svg { width: 36px; height: 36px; }

.success h2 { margin-bottom: 12px; }
.success p { color: #c8c8cc; max-width: 440px; margin: 0 auto 12px; }
.success__order {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    color: #b5b5ba;
    letter-spacing: 0.05em;
}
.success__actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .checkout { grid-template-columns: 1fr; gap: 28px; }
    .checkout__summary { position: static; order: -1; }
    .checkout__form { padding: 24px; }
    .form-row,
    .form-row--3 { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- SUPPORT PAGE ---------- */
.support {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.support__form {
    background: #131316;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 36px;
}

.support__info {
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, #131316) 0%, #131316 100%);
    border: 1px solid color-mix(in srgb, var(--accent) 18%, rgba(255,255,255,0.06));
    border-radius: 14px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.support__info h3 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.support__info p {
    color: #c8c8cc;
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 0.9em;
}
.support__info p:last-child { margin-bottom: 0; }

.support__info strong {
    color: #f2f2f4;
    font-weight: 500;
}

/* Textarea — match input styling */
.form-field textarea {
    background: #0e0e10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: #f2f2f4;
    font-family: inherit;
    font-size: 0.98rem;
    line-height: 1.55;
    resize: vertical;
    min-height: 140px;
    transition: border-color 0.15s ease, background 0.15s ease;
    outline: none;
}

.form-field textarea:focus {
    border-color: var(--accent);
    background: #111113;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}

.form-field textarea::placeholder { color: #555; }

/* Honeypot — visually hidden but reachable to bots */
.honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* Captcha row */
.captcha {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.captcha__q {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    color: #e8e8ea;
    letter-spacing: 0.02em;
}

.captcha__q strong {
    color: var(--accent);
    font-weight: 600;
}

.captcha input {
    width: 80px;
    background: #0e0e10;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 10px 12px;
    color: #f2f2f4;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    text-align: center;
    outline: none;
    transition: border-color 0.15s ease;
}
.captcha input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}

.captcha__hint {
    font-size: 0.82rem;
    color: #6e6e74;
    margin-left: auto;
}

/* Phone picker */
.phone-input {
    display: flex;
    gap: 8px;
    position: relative;
}

.phone-input__country {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0e0e10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0 12px;
    height: 46px;
    color: #f2f2f4;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.phone-input__country:hover { border-color: rgba(255,255,255,0.2); }
.phone-input__country[aria-expanded="true"] {
    border-color: var(--accent);
    background: #111113;
}

.phone-input__country .flag {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    background-color: #222;
    flex-shrink: 0;
}

.phone-input__country .dial {
    font-family: 'Space Grotesk', sans-serif;
    color: #c8c8cc;
    font-variant-numeric: tabular-nums;
}

.phone-input__country .caret {
    width: 12px;
    height: 12px;
    opacity: 0.6;
}

.phone-input__number {
    flex: 1;
    background: #0e0e10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: #f2f2f4;
    font-family: inherit;
    font-size: 0.98rem;
    outline: none;
    transition: border-color 0.15s ease, background 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
}
.phone-input__number:focus {
    border-color: var(--accent);
    background: #111113;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}
.phone-input__number::placeholder { color: #555; }

.phone-input__panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 30;
    width: min(380px, 100%);
    background: #1a1a1d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 360px;
}

.phone-input__search {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    color: #f2f2f4;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 14px 16px;
    outline: none;
}
.phone-input__search::placeholder { color: #6e6e74; }

.phone-input__list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    overflow-y: auto;
    flex: 1;
}

.phone-input__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    cursor: pointer;
    transition: background 0.1s ease;
    font-size: 0.94rem;
    color: #e8e8ea;
}
.phone-input__option:hover,
.phone-input__option.is-active {
    background: color-mix(in srgb, var(--accent) 12%, rgba(255,255,255,0.03));
}
.phone-input__option .flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    background-color: #222;
    flex-shrink: 0;
}
.phone-input__option .name { flex: 1; }
.phone-input__option .dial {
    font-family: 'Space Grotesk', sans-serif;
    color: #8f8f94;
    font-variant-numeric: tabular-nums;
    font-size: 0.88rem;
}

.phone-input__empty {
    padding: 20px 16px;
    text-align: center;
    color: #6e6e74;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .support { grid-template-columns: 1fr; gap: 28px; }
    .support__info { position: static; order: -1; }
    .support__form { padding: 24px; }
}

/* ---------- ACCOUNT / BOOKSHELF ---------- */
.account-lookup {
    max-width: 620px;
    margin: 0 auto 56px;
}

.account-lookup__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9a9f;
    margin-bottom: 8px;
}

.account-lookup__row {
    display: flex;
    gap: 10px;
}

.account-lookup__row input {
    flex: 1;
    background: #131316;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    color: #f2f2f4;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.account-lookup__row input:focus {
    border-color: var(--accent);
    background: #16161a;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}
.account-lookup__row input::placeholder { color: #555; }

.account-lookup__row .btn {
    padding-left: 22px;
    padding-right: 22px;
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .account-lookup__row { flex-direction: column; }
    .account-lookup__row .btn { width: 100%; }
}

.account-empty {
    max-width: 540px;
    margin: 24px auto 0;
    text-align: center;
    background: #131316;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 48px 32px;
}
.account-empty h2 { margin-bottom: 12px; font-size: 1.4rem; }
.account-empty p { color: #c8c8cc; margin-bottom: 0.8em; }
.account-empty p:last-child { margin-bottom: 0; }

.bookshelf {
    margin-top: 12px;
}

.bookshelf__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 36px;
    font-size: 1.5rem;
}

.bookshelf__count {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 12px;
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    border-radius: 999px;
}

.bookshelf__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.bookshelf__hint {
    text-align: center;
    margin-top: 48px;
    color: #8f8f94;
    font-size: 0.95rem;
}

.account-signout {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.account-signout__note {
    display: block;
    margin-top: 14px;
    color: #7e7e84;
    font-size: 0.85rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.shelf-book {
    display: block;
    text-align: center;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.shelf-book:hover {
    transform: translateY(-6px);
    text-decoration: none;
}

.shelf-book__cover {
    aspect-ratio: 720 / 1080;
    margin-bottom: 18px;
    position: relative;
    filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.55));
    transition: filter 0.3s ease;
}

.shelf-book:hover .shelf-book__cover {
    filter: drop-shadow(0 30px 40px color-mix(in srgb, var(--accent) 28%, rgba(0,0,0,0.65)));
}

.shelf-book__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.shelf-book__title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #f2f2f4;
    margin-bottom: 4px;
    line-height: 1.3;
}

.shelf-book__cta {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

/* Locked / not-purchased state */
.shelf-book--locked { cursor: default; }
.shelf-book--locked:hover { transform: none; }
.shelf-book--locked .shelf-book__cover img {
    filter: grayscale(0.85) brightness(0.55);
    transition: none;
}
.shelf-book--locked .shelf-book__cover {
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}
.shelf-book--locked:hover .shelf-book__cover {
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}
.shelf-book--locked .shelf-book__title { color: #7a7a80; }

.shelf-book__lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
}
.shelf-book__lock svg {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    padding: 10px;
    backdrop-filter: blur(4px);
}

.shelf-book__cta--locked {
    color: #6e6e74;
    letter-spacing: 0.1em;
    font-weight: 400;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
}

@media (max-width: 900px) {
    .bookshelf__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
    .bookshelf__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .bookshelf__head { font-size: 1.2rem; }
}

/* ---------- LONG-FORM PROSE / SALES SECTIONS ---------- */
.lp-prose {
    max-width: 720px;
    margin: 0 auto;
    color: #c8c8cc;
    font-size: 1.05rem;
    line-height: 1.75;
}
.lp-prose p { margin-bottom: 1.1em; }
.lp-prose p:last-child { margin-bottom: 0; }
.lp-prose strong { color: #f2f2f4; font-weight: 600; }
.lp-prose em { color: #e8e8ea; font-style: italic; }

.lp-digits-row {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.18em;
    margin: 28px 0;
    font-variant-numeric: tabular-nums;
}

.callout {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, #131316) 0%, #131316 100%);
    border: 1px solid color-mix(in srgb, var(--accent) 25%, rgba(255,255,255,0.06));
    border-left: 3px solid var(--accent);
    border-radius: 14px;
    padding: 32px 36px;
    color: #d6d6da;
    font-size: 1.05rem;
    line-height: 1.7;
}
.callout p { margin-bottom: 1em; }
.callout p:first-child {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 0.6em;
    letter-spacing: -0.01em;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--accent); font-weight: 600; }
.callout em { color: #f2f2f4; font-style: italic; }

/* ---------- PAIR CARDS (numbers page) ---------- */
.pair-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 8px;
}

.pair-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 18px 26px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.pair-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 50%, transparent);
}

.pair-card__digits {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.pair-card__symbol {
    font-size: 1.5rem;
    color: #6e6e74;
    font-weight: 400;
}

.pair-card--opposite .pair-card__digits { color: #d98a8a; }
.pair-card--opposite:hover { border-color: rgba(217, 138, 138, 0.5); }
.pair-card--opposite .pair-card__symbol { color: #d98a8a; opacity: 0.7; }

.pair-card__values {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    color: #f2f2f4;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.pair-card__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}
.pair-card--opposite .pair-card__label { color: #d98a8a; }

@media (max-width: 900px) {
    .pair-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .pair-grid { grid-template-columns: 1fr; }
    .callout { padding: 24px 22px; }
    .callout p:first-child { font-size: 1.2rem; }
}

/* ---------- FEATURE LIST (What's Inside) ---------- */
.feature-list {
    list-style: none;
    margin: 16px auto 0;
    padding: 0;
    max-width: 880px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 36px;
}

.feature-list li {
    position: relative;
    padding-left: 32px;
    color: #d6d6da;
    font-size: 1rem;
    line-height: 1.5;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
}

.feature-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 0.65em;
    width: 8px;
    height: 4px;
    border-left: 1.5px solid var(--accent);
    border-bottom: 1.5px solid var(--accent);
    transform: rotate(-45deg);
}

@media (max-width: 640px) {
    .feature-list { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- PEEK LIST (color swatches) ---------- */
.peek-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
}
.peek-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.02rem;
    line-height: 1.5;
}
.peek-list__swatch {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 2px 8px rgba(0,0,0,0.35);
}
@media (max-width: 640px) {
    .peek-list { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- BOOK STEPS (HOW THIS BOOK WORKS) ---------- */
.book-steps {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.book-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 24px 20px 22px;
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.book-step:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent) 35%, transparent);
}

.book-step__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.book-step__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f2f2f4;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.book-step__text {
    font-size: 0.92rem;
    color: #b5b5ba;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 1080px) {
    .book-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .book-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
    .book-steps { grid-template-columns: 1fr; }
}

/* ---------- Q&A OPENER (big featured Q/A) ---------- */
.qna-opener {
    max-width: 760px;
    margin: 0 auto;
    background: #131316;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.qna-opener__row {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 14px 0;
}
.qna-opener__row + .qna-opener__row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.qna-opener__row p {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    line-height: 1.45;
    color: #f2f2f4;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.qna-opener__row strong { color: var(--accent); font-weight: 600; }
.qna-opener__row em { font-style: italic; color: #f2f2f4; }

.qna-opener__row--a p { color: #d6d6da; font-weight: 400; }

.qna-opener__label {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 16%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}
.qna-opener__label--a {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: #c8c8cc;
}

@media (max-width: 560px) {
    .qna-opener { padding: 24px 22px; }
    .qna-opener__row { gap: 14px; }
    .qna-opener__label { width: 32px; height: 32px; font-size: 0.9rem; }
}

/* ---------- Q&A LIST (always-open Q/A items) ---------- */
.qna {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 820px;
}

.qna__item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.qna__item:last-child { border-bottom: 0; }

.qna__q {
    position: relative;
    padding-left: 38px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.qna__q::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 16%, transparent);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.qna__a {
    position: relative;
    padding-left: 38px;
    color: #c8c8cc;
    font-size: 1rem;
    line-height: 1.65;
}
.qna__a::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 0.05em;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #b5b5ba;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.qna__a a { border-bottom: 1px dashed color-mix(in srgb, var(--accent) 55%, transparent); }
.qna__a a:hover { text-decoration: none; }
.qna__a em { font-style: italic; color: #e8e8ea; }

/* ---------- BENEFIT LIST (richer than feature-list) ---------- */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 16px auto 0;
    max-width: 820px;
    counter-reset: benefit;
    display: grid;
    gap: 16px;
}

.benefit-list li {
    counter-increment: benefit;
    position: relative;
    padding: 24px 28px 22px 78px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.benefit-list li:hover {
    border-color: color-mix(in srgb, var(--accent) 40%, transparent);
    transform: translateY(-2px);
}

.benefit-list li::before {
    content: counter(benefit);
    position: absolute;
    left: 22px;
    top: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 16%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-list h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f2f2f4;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.benefit-list p {
    color: #b5b5ba;
    font-size: 0.97rem;
    line-height: 1.55;
    margin: 0;
}
.benefit-list em { font-style: italic; color: #d6d6da; }

@media (max-width: 560px) {
    .benefit-list li { padding: 22px 20px 20px 70px; }
    .benefit-list li::before { left: 18px; top: 20px; width: 34px; height: 34px; }
}

/* ---------- FEATURE LIST — LIMIT VARIANT (X marks) ---------- */
.feature-list--limit li::before {
    background: rgba(217, 138, 138, 0.16);
    border-color: rgba(217, 138, 138, 0.5);
}
.feature-list--limit li::after {
    content: '';
    left: 4px;
    top: 0.5em;
    width: 12px;
    height: 12px;
    border: 0;
    transform: none;
    background-image:
        linear-gradient(135deg, transparent 42%, #d98a8a 42%, #d98a8a 58%, transparent 58%),
        linear-gradient(45deg, transparent 42%, #d98a8a 42%, #d98a8a 58%, transparent 58%);
    background-color: transparent;
}
.feature-list--limit li strong { color: #d98a8a; font-weight: 600; }

/* ---------- PROSE INLINE LIST (used inside .lp-prose) ---------- */
.prose-list {
    margin: 0 0 1.2em;
    padding-left: 0;
    list-style: none;
}
.prose-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: #c8c8cc;
}
.prose-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 35%, transparent);
    border: 1px solid var(--accent);
}

/* ---------- ADMIN ---------- */
.admin-login {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}
.admin-login__card {
    max-width: 420px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px 32px 32px;
    text-align: center;
}
.admin-login__card h1 {
    margin: 0 0 6px;
    font-size: 1.6rem;
}
.admin-login__sub {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}
.admin-login__dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 8px 0 22px;
}
.admin-login__dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: transparent;
    transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.admin-login__dots span.filled {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.08);
}
.admin-login__error {
    color: #ff8a8a;
    margin: 0 0 14px;
    font-size: 0.95rem;
}
.admin-login__form { display: none; }

.pinpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 320px;
    margin: 8px auto 0;
}
.pinpad__key {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    height: 64px;
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 120ms ease, transform 60ms ease, border-color 120ms ease;
}
.pinpad__key:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
}
.pinpad__key:active {
    transform: scale(0.96);
    background: rgba(255,255,255,0.14);
}
.pinpad__key--aux { color: rgba(255,255,255,0.7); }
.pinpad__key--go {
    background: color-mix(in srgb, var(--accent) 22%, transparent);
    border-color: color-mix(in srgb, var(--accent) 50%, transparent);
    color: var(--accent);
}
.pinpad__key--go:hover {
    background: color-mix(in srgb, var(--accent) 32%, transparent);
}

.admin { padding: 40px 0 80px; }
.admin__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin__head h1 { margin: 0 0 4px; font-size: 1.6rem; }
.admin__stats { margin: 0; color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.admin__stats strong { color: var(--accent); font-weight: 600; }

.admin-btn {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 120ms ease, border-color 120ms ease;
}
.admin-btn:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.25);
}
.admin-btn--ghost {
    background: transparent;
}
.admin-btn--danger {
    background: rgba(200, 60, 60, 0.12);
    border-color: rgba(200, 60, 60, 0.4);
    color: #ff9a9a;
}
.admin-btn--danger:hover {
    background: rgba(200, 60, 60, 0.22);
    border-color: rgba(200, 60, 60, 0.6);
}
.admin-btn--x {
    padding: 0;
    width: 28px;
    height: 28px;
    line-height: 1;
    font-size: 1.1rem;
    border-radius: 50%;
    color: rgba(255,255,255,0.65);
}
.admin-btn--x:hover {
    color: #ff9a9a;
    border-color: rgba(200, 60, 60, 0.5);
}

.admin-tabs {
    display: flex;
    gap: 4px;
    margin: 0 0 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-tab {
    padding: 10px 18px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 120ms ease, border-color 120ms ease;
}
.admin-tab:hover { color: #fff; }
.admin-tab.is-active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.admin-flash {
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    color: var(--accent);
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 0.95rem;
}
.admin-flash--error {
    background: color-mix(in srgb, #d13838 18%, transparent);
    border-color: color-mix(in srgb, #d13838 50%, transparent);
    color: #ff8b8b;
}

.admin-prices {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 22px 24px;
}
.admin-price-row {
    display: grid;
    grid-template-columns: 1fr 220px;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.admin-price-row:last-of-type { border-bottom: none; }
.admin-price-row__label {
    font-size: 0.98rem;
    color: #e8e8ea;
    line-height: 1.4;
}
.admin-price-row__input {
    display: flex;
    align-items: center;
    background: #0e0e10;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0 12px;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.admin-price-row__input:focus-within {
    border-color: var(--accent);
    background: #111113;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}
.admin-price-row__prefix,
.admin-price-row__suffix {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    user-select: none;
}
.admin-price-row__input input {
    flex: 1 1 auto;
    background: transparent;
    border: 0;
    outline: none;
    color: #f2f2f4;
    font-family: inherit;
    font-size: 1rem;
    padding: 12px 8px;
    width: 100%;
    min-width: 0;
    text-align: right;
}
.admin-prices__actions {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: flex-end;
}
.admin-btn--primary {
    background: color-mix(in srgb, var(--accent) 22%, transparent);
    border-color: color-mix(in srgb, var(--accent) 50%, transparent);
    color: var(--accent);
}
.admin-btn--primary:hover {
    background: color-mix(in srgb, var(--accent) 32%, transparent);
    border-color: color-mix(in srgb, var(--accent) 65%, transparent);
}

@media (max-width: 640px) {
    .admin-price-row { grid-template-columns: 1fr; gap: 8px; }
}

.admin-empty {
    padding: 40px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: 12px;
}
.admin-empty code {
    background: rgba(255,255,255,0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

/* --- Admin: payments toggle -------------------------------------- */
.admin-payments {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px;
}
.admin-payments__heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.5);
    margin: 8px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-payments__heading:not(:first-child) { margin-top: 28px; }
.admin-payments__intro {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 18px;
}
.admin-payments__intro p { margin: 0 0 10px; }
.admin-payments__intro p:last-child { margin-bottom: 0; }
.admin-payments__intro code {
    background: rgba(255,255,255,0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.88em;
}

.admin-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
}
.admin-toggle__option {
    position: relative;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: background 120ms ease, border-color 120ms ease;
}
.admin-toggle__option:hover { background: rgba(255,255,255,0.05); }
/* Visually hide the real radio input but keep it clickable / focusable for a11y */
.admin-toggle__option input[type="radio"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
/* Active look is driven by the actual :checked state so the UI updates
   immediately on click (no page reload needed). */
.admin-toggle__option:has(input[type="radio"]:checked) {
    border-color: color-mix(in srgb, var(--accent) 55%, transparent);
    background: color-mix(in srgb, var(--accent) 10%, transparent);
}
.admin-toggle__option:has(input[type="radio"]:focus-visible) {
    outline: 2px solid color-mix(in srgb, var(--accent) 70%, transparent);
    outline-offset: 2px;
}
.admin-toggle__dot {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35);
    margin-top: 2px;
    position: relative;
    transition: border-color 120ms ease;
}
.admin-toggle__option:has(input[type="radio"]:checked) .admin-toggle__dot {
    border-color: var(--accent);
}
.admin-toggle__option:has(input[type="radio"]:checked) .admin-toggle__dot::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--accent);
}
.admin-toggle__label { display: flex; flex-direction: column; gap: 3px; }
.admin-toggle__title { font-weight: 600; color: #fff; }
.admin-toggle__sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.admin-payments__note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    padding: 10px 14px;
    border-left: 3px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
    margin-bottom: 18px;
}
.admin-payments__note code {
    background: rgba(255,255,255,0.06);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 0.88em;
}

.admin-payments__actions {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: flex-end;
}

.admin-pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: 4px;
}
.admin-pill--live {
    background: color-mix(in srgb, #1a8f3a 20%, transparent);
    color: #5ed47f;
    border: 1px solid color-mix(in srgb, #1a8f3a 45%, transparent);
}
.admin-pill--manual {
    background: color-mix(in srgb, #b84b00 20%, transparent);
    color: #ff9a55;
    border: 1px solid color-mix(in srgb, #b84b00 45%, transparent);
}

@media (max-width: 640px) {
    .admin-toggle { grid-template-columns: 1fr; }
}

/* --- Admin: access log ------------------------------------------- */
.admin-access-note {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-bottom: 14px;
    padding: 10px 14px;
    border-left: 3px solid var(--accent);
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
}
.admin-access-flag {
    color: var(--accent);
    font-weight: 700;
}
.admin-access-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
}
.admin-access {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    font-variant-numeric: tabular-nums;
}
.admin-access thead th {
    text-align: left;
    padding: 12px 14px;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
}
.admin-access tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: top;
}
.admin-access tbody tr:last-child td { border-bottom: 0; }
.admin-access tbody tr:hover { background: rgba(255,255,255,0.03); }
.admin-access__time,
.admin-access__ip {
    font-family: ui-monospace, "SF Mono", Consolas, monospace;
    white-space: nowrap;
    color: rgba(255,255,255,0.75);
}
.admin-access__lookup {
    word-break: break-all;
}
.admin-access__result {
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}
.admin-access__ua {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    white-space: nowrap;
}
.admin-access tr.is-flagged {
    background: color-mix(in srgb, var(--accent) 8%, transparent);
}
.admin-access tr.is-flagged:hover {
    background: color-mix(in srgb, var(--accent) 14%, transparent);
}
.admin-access tr.is-nomatch .admin-access__result {
    color: #e88;
}

.admin-customer {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 18px;
}
.admin-customer__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.admin-customer__who h3 {
    margin: 0 0 4px;
    font-size: 1.15rem;
}
.admin-customer__meta {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    word-break: break-word;
}
.admin-customer__meta span { margin-right: 4px; }

.admin-books {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}
.admin-book {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 8px 10px 8px 8px;
}
.admin-book img {
    width: 36px;
    height: 54px;
    object-fit: cover;
    border-radius: 4px;
    flex: 0 0 auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.admin-book__body {
    flex: 1 1 auto;
    min-width: 0;
}
.admin-book__title {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 2px;
}
.admin-book__order {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.admin-book form { flex: 0 0 auto; }

.admin-add {
    display: flex;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px dashed rgba(255,255,255,0.08);
}
.admin-add__select {
    flex: 1 1 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
}
.admin-add__select option { background: #1a1a1a; color: #fff; }

@media (max-width: 640px) {
    .admin-customer__head { flex-direction: column; align-items: stretch; }
    .admin-customer__head form { align-self: flex-start; }
    .admin-add { flex-direction: column; }
}

/* -------- /read/ pages: audio player + ebook button -------- */
.read-audio-single {
    max-width: 760px;
    margin: 0 auto;
    padding: 22px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
}
.read-audio-single__player {
    width: 100%;
    height: 48px;
    display: block;
    filter: invert(0.92) hue-rotate(180deg) contrast(0.9);
}

.read-ebook {
    text-align: center;
    padding: 20px 0 10px;
}
.read-ebook__note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.read-ebook__pass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 8px 8px 8px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
}
.read-ebook__pass-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.read-ebook__pass-code {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent);
    user-select: all;
}
.read-ebook__pass-copy {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #e8e8ea;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 120ms ease, border-color 120ms ease;
}
.read-ebook__pass-copy:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
}

@media (max-width: 480px) {
    .read-ebook__pass { flex-wrap: wrap; justify-content: center; }
}

/* -------- Checkout consent checkbox -------- */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 16px;
    font-size: 0.9rem;
    color: #c8c8cc;
    cursor: pointer;
    user-select: none;
    line-height: 1.45;
}
.form-consent input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--accent);
    cursor: pointer;
}
.form-consent a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--accent) 50%, transparent);
    text-underline-offset: 3px;
}
.form-consent a:hover { text-decoration-color: var(--accent); }

/* -------- /terms/ page -------- */
.terms-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 780px;
    margin: 0 auto 44px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    justify-content: center;
}
.terms-toc a {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 6px;
    transition: background 120ms ease, color 120ms ease;
}
.terms-toc a:hover {
    color: var(--accent);
    background: rgba(255,255,255,0.04);
}
.terms-doc {
    max-width: 720px;
    margin: 0 auto 56px;
    scroll-margin-top: 90px;
}
.terms-doc h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.terms-doc h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.08rem;
    color: #f2f2f4;
}
.terms-doc p, .terms-doc ul { margin-bottom: 14px; }
.terms-doc ul { padding-left: 20px; }
.terms-doc ul li { margin-bottom: 6px; }
.terms-doc code {
    background: rgba(255,255,255,0.06);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* -------- Product TOC (audio-books: angel chapters) -------- */
.product__toc {
    margin: 22px 0 26px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    background: rgba(255,255,255,0.025);
    overflow: hidden;
}
.product__toc-head {
    padding: 12px 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.15);
}
.toc-ch {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.toc-ch:last-child { border-bottom: none; }
.toc-ch summary {
    padding: 14px 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #e8e8ea;
    font-weight: 500;
    font-size: 0.98rem;
    transition: background 120ms ease, color 120ms ease;
    position: relative;
}
.toc-ch summary::-webkit-details-marker { display: none; }
.toc-ch summary::after {
    content: '+';
    margin-left: auto;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.5);
    width: 22px;
    text-align: center;
    transition: transform 180ms ease, color 120ms ease;
}
.toc-ch[open] summary::after {
    content: '\2212';
    color: var(--accent);
}
.toc-ch summary:hover {
    background: rgba(255,255,255,0.035);
    color: #fff;
}
.toc-ch[open] summary {
    color: var(--accent);
    background: rgba(255,255,255,0.02);
}
.toc-ch__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    flex: 0 0 auto;
}
.toc-ch[open] .toc-ch__num {
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    color: var(--accent);
}
.toc-ch__list {
    list-style: none;
    padding: 6px 18px 18px 52px;
    margin: 0;
}
.toc-ch__list li {
    position: relative;
    padding: 5px 0 5px 14px;
    font-size: 0.92rem;
    color: #c8c8cc;
    line-height: 1.45;
}
.toc-ch__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

@media (max-width: 540px) {
    .toc-ch__list { padding-left: 28px; }
}

/* ---------- THE MEANING OF LIFE PAGE ---------- */
.product__lede {
    color: #cfcfd4;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 28px;
}

.product__chapters {
    margin: 0;
    padding-left: 22px;
    color: #d8d8dc;
    columns: 2;
    column-gap: 28px;
}

.product__chapters li {
    margin-bottom: 6px;
    line-height: 1.6;
    break-inside: avoid;
}

@media (max-width: 520px) {
    .product__chapters { columns: 1; }
}

.extracts {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.extract-ch {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
}

.extract-ch[open] {
    background: rgba(255,255,255,0.035);
    border-color: rgba(255,255,255,0.14);
}

.extract-ch summary {
    padding: 16px 22px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #eaeaee;
    position: relative;
    user-select: none;
}

.extract-ch summary::-webkit-details-marker { display: none; }

.extract-ch summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    transition: transform 0.2s ease;
}

.extract-ch[open] summary::after {
    content: "\2013";
    color: var(--accent);
}

.extract-ch__num {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    min-width: 48px;
}

.extract-ch__body {
    padding: 4px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.extract-ch__body blockquote {
    margin: 0;
    padding: 0 0 0 16px;
    border-left: 2px solid rgba(255,255,255,0.12);
    color: #d4d4d8;
    line-height: 1.7;
    font-size: 1rem;
}

.extracts__cta {
    max-width: 820px;
    margin: 32px auto 0;
    text-align: center;
}

@media (max-width: 540px) {
    .extract-ch summary { padding: 14px 18px; font-size: 1rem; }
    .extract-ch summary::after { right: 18px; }
    .extract-ch__body { padding: 4px 20px 20px; }
    .extract-ch__num { min-width: 42px; font-size: 0.75rem; }
}

/* ---------- CHAPTER / SAMPLE PAGES ---------- */
.chapter {
    max-width: 720px;
    margin: 0 auto;
}

.chapter .lp-prose ul {
    margin: 0 0 1.3em;
    padding-left: 22px;
    color: #d8d8dc;
}

.chapter .lp-prose ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.def-block {
    margin: 28px 0;
    padding: 24px 28px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.025);
}

.def-block__row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.def-block__row:last-child { border-bottom: 0; }

.def-block dt {
    flex: 0 0 170px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.95rem;
}

.def-block dd {
    margin: 0;
    color: #d8d8dc;
    font-style: italic;
    flex: 1;
}

.def-block--tagged dt {
    flex-basis: 260px;
    text-transform: none;
    font-style: italic;
    font-weight: 400;
    color: #e8e8ea;
    letter-spacing: 0;
    font-size: 1rem;
}

.def-block--tagged dd {
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    text-align: right;
}

.def-stack {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.def-stack__item {
    padding: 22px 26px;
    border-left: 3px solid var(--accent);
    background: rgba(255,255,255,0.02);
    border-radius: 0 10px 10px 0;
}

.def-stack__item h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.def-stack__item p {
    margin: 0;
    color: #d4d4d8;
    line-height: 1.7;
}

.chapter-hierarchy {
    margin: 22px 0 28px;
    padding: 0 0 0 28px;
    color: #d8d8dc;
    counter-reset: none;
}

.chapter-hierarchy li {
    padding: 10px 0 10px 10px;
    margin-bottom: 2px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chapter-hierarchy li:last-child { border-bottom: 0; }

.chapter-hierarchy li::marker {
    color: var(--accent);
    font-weight: 600;
}

.chapter__signoff {
    margin: 40px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #c8c8cc;
    font-style: italic;
    line-height: 1.8;
}

.chapter__signoff-name {
    display: inline-block;
    margin-top: 4px;
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.chapter-cta {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px 44px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.025);
}

.chapter-cta__cover {
    flex: 0 0 200px;
}

.chapter-cta__cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}

.chapter-cta__body { flex: 1; min-width: 0; }

.chapter-cta__body .eyebrow { display: inline-block; margin-bottom: 10px; }

.chapter-cta__body h2 {
    margin: 0 0 16px;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.chapter-cta__body p {
    margin: 0 0 24px;
    color: #d4d4d8;
    line-height: 1.7;
}

@media (max-width: 720px) {
    .chapter-cta {
        flex-direction: column;
        text-align: center;
        gap: 28px;
        padding: 32px 26px;
    }
    .chapter-cta__cover { flex-basis: auto; max-width: 180px; }
    .chapter-cta__body h2 { font-size: 1.6rem; }

    .def-block { padding: 20px 22px; }
    .def-block__row { flex-direction: column; gap: 4px; padding: 10px 0; }
    .def-block dt { flex-basis: auto; }
    .def-block--tagged dd { text-align: left; }

    .def-stack__item { padding: 18px 20px; }
}

/* ---------- CHAPTER: NUMBERS (preamble + finale) ---------- */
.chapter-label {
    text-align: center;
    margin: 0 0 28px;
}

.chapter-label__tag {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent, #a2985c);
    margin-bottom: 10px;
}

.chapter-label__title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.chapter-verse {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
    color: #e4e4e7;
}

.chapter-verse p {
    margin: 0.35em 0;
    line-height: 1.6;
}

.chapter-verse__digits {
    margin: 24px 0 !important;
    font-style: normal;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    color: var(--accent, #a2985c);
    font-weight: 600;
}

.chapter-sep {
    border: 0;
    border-top: 1px solid rgba(162, 152, 92, 0.35);
    max-width: 180px;
    margin: 56px auto;
}

.chapter-part {
    margin: 40px 0;
}

.chapter-part__head {
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

.chapter-part__num {
    color: var(--accent, #a2985c);
    margin-right: 6px;
    font-weight: 700;
}

.chapter-sayings p {
    margin: 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.75;
    color: #d4d4d8;
}

.chapter-sayings p:first-child {
    border-top: 0;
    padding-top: 0;
}

.chapter-sayings p:last-child {
    padding-bottom: 0;
}

@media (max-width: 720px) {
    .chapter-label__title { font-size: 1.55rem; }
    .chapter-verse__digits { font-size: 1.15rem; letter-spacing: 0.05em; }
    .chapter-part__head { font-size: 1.15rem; }
    .chapter-sep { margin: 40px auto; }
}

/* ---------- CHAPTER: PLANETS (long-form essay) ---------- */
.chapter-prose {
    max-width: 680px;
    margin: 0 auto;
}

.chapter-prose p {
    margin: 0 0 1.15em;
    line-height: 1.8;
    color: #d4d4d8;
    font-size: 1.02rem;
}

.chapter-prose p:last-child {
    margin-bottom: 0;
}

.chapter-prose__pull {
    font-size: 1.2rem !important;
    line-height: 1.55 !important;
    color: #f4f4f5 !important;
    font-style: italic;
    padding: 22px 0 22px 26px;
    border-left: 3px solid var(--accent, #a2985c);
    margin: 32px 0 !important;
}

.accent-link {
    color: var(--accent, #a2985c);
    text-decoration: none;
    border-bottom: 1px solid rgba(162, 152, 92, 0.4);
    transition: border-color 0.2s;
}

.accent-link:hover {
    border-bottom-color: var(--accent, #a2985c);
}

@media (max-width: 720px) {
    .chapter-prose p { font-size: 0.98rem; line-height: 1.75; }
    .chapter-prose__pull { font-size: 1.08rem !important; padding-left: 18px; }
}

.chapter-bullets {
    margin: 0 0 1.15em;
    padding-left: 1.25em;
    color: #d4d4d8;
    line-height: 1.75;
}

.chapter-bullets li {
    margin: 0.35em 0;
}

.chapter-age {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin: 48px 0 22px;
}

.chapter-age__num {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent, #a2985c);
    letter-spacing: -0.02em;
}

.chapter-age__label {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8e8e95;
}

.chapter__signoff-kicker {
    display: block;
    color: #d4d4d8;
    font-style: italic;
    margin-bottom: 6px;
}

/* ---------- OTHER SITES (support page) ---------- */
.other-sites {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 560px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}

.other-sites li {
    margin: 0;
}

.other-sites a {
    display: block;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #e4e4e7;
    text-decoration: none;
    font-family: var(--mono, ui-monospace, SFMono-Regular, Menlo, monospace);
    font-size: 0.95rem;
    text-align: center;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.other-sites a:hover {
    color: var(--accent, #a2985c);
    border-color: color-mix(in srgb, var(--accent, #a2985c) 50%, transparent);
    background: rgba(162, 152, 92, 0.05);
}

@media (max-width: 560px) {
    .other-sites {
        grid-template-columns: 1fr;
    }
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
    padding: 18px 0 0;
    background: transparent;
}

.breadcrumb__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    font-size: 0.85rem;
    color: #7e7e84;
}

.breadcrumb__item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb__item + .breadcrumb__item::before {
    content: "/";
    margin-right: 10px;
    color: #5a5a60;
}

.breadcrumb__item a {
    color: #a4a4ab;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb__item a:hover {
    color: var(--accent, #a2985c);
}

.breadcrumb__item--current {
    color: #c4c4c8;
}

@media (max-width: 560px) {
    .breadcrumb__list { font-size: 0.8rem; }
}

/* ---------- ERROR PAGES ---------- */
.error-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 36px 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.error-card > p {
    margin: 0 0 18px;
    color: #e4e4e7;
    font-size: 1.05rem;
}

.error-card__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.error-card__links li {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #c4c4c8;
    line-height: 1.55;
}

.error-card__links li:first-child {
    border-top: 0;
    padding-top: 0;
}

.error-card__links li:last-child {
    padding-bottom: 0;
}

.error-card__links a {
    color: var(--accent, #a2985c);
    text-decoration: none;
    border-bottom: 1px solid rgba(162, 152, 92, 0.35);
}

.error-card__links a:hover {
    border-bottom-color: var(--accent, #a2985c);
}

@media (max-width: 560px) {
    .error-card { padding: 26px 22px; }
}

/* ---------- ADVANCED PSYCHIC DEVELOPMENT PAGE ---------- */
.preview-audio {
    max-width: 780px;
    margin: 48px auto 0;
    padding: 28px 30px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
}

.preview-audio__head {
    text-align: center;
    margin: 0 0 22px;
}

.preview-audio__head .eyebrow {
    display: inline-block;
    margin-bottom: 10px;
}

.preview-audio__head h3 {
    margin: 0 0 8px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.preview-audio__head p {
    margin: 0;
    color: #b8b8be;
    font-size: 0.98rem;
}

.preview-audio__player iframe {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.certify {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px 44px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.025);
}

.certify__logo {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certify__logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

.certify__body { flex: 1; min-width: 0; }

.certify__body .eyebrow { display: inline-block; margin-bottom: 10px; }

.certify__body h2 {
    margin: 0 0 16px;
    font-size: 2.1rem;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.certify__body p {
    margin: 0 0 24px;
    color: #d4d4d8;
    line-height: 1.7;
}

@media (max-width: 720px) {
    .certify {
        flex-direction: column;
        text-align: center;
        gap: 28px;
        padding: 32px 26px;
    }
    .certify__logo { flex-basis: auto; }
    .certify__logo img { max-width: 160px; }
    .certify__body h2 { font-size: 1.7rem; }
    .preview-audio { padding: 24px 22px; }
    .preview-audio__head h3 { font-size: 1.35rem; }
}


.product__toc--wide {
    max-width: 820px;
    margin: 0 auto;
}

.excerpts {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.excerpt {
    padding: 28px 30px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
}

.excerpt__q {
    margin: 0 0 14px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.4;
}

.excerpt__a p {
    margin: 0 0 1em;
    color: #d4d4d8;
    line-height: 1.7;
}

.excerpt__a p:last-child { margin-bottom: 0; }

.excerpt__a ul {
    margin: 0 0 1em;
    padding-left: 22px;
    color: #d4d4d8;
}

.excerpt__a ul li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.reviews {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.review {
    margin: 0;
    padding: 24px 26px;
    border-left: 3px solid var(--accent);
    background: rgba(255,255,255,0.02);
    border-radius: 0 12px 12px 0;
}

.review p {
    margin: 0 0 14px;
    color: #e2e2e6;
    line-height: 1.7;
    font-style: italic;
}

.review__cite {
    display: block;
    font-style: normal;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}

.author-bio {
    max-width: 640px;
    margin: 0 auto 32px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.author-bio li {
    position: relative;
    padding: 10px 18px 10px 36px;
    color: #d8d8dc;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.author-bio li:last-child { border-bottom: 0; }

.author-bio li::before {
    content: "+";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a0a0c;
    background: var(--accent);
    line-height: 1;
}

@media (max-width: 540px) {
    .excerpt { padding: 22px 20px; }
    .excerpt__q { font-size: 1.05rem; }
    .review { padding: 20px 20px; }
    .author-bio li { padding-left: 32px; }
}

/* ---------- MUSCLE TEST YOURSELF PAGE ---------- */
.howto {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    counter-reset: howto;
}

.howto__step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
}

.howto__num {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0a0a0c;
    background: var(--accent);
}

.howto__body { flex: 1; min-width: 0; }

.howto__title {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f2f2f4;
}

.howto__body p {
    margin: 0;
    color: #cfcfd4;
    line-height: 1.6;
}

@media (max-width: 540px) {
    .howto__step { padding: 18px 18px; gap: 16px; }
    .howto__num { flex-basis: 36px; width: 36px; height: 36px; font-size: 1rem; }
    .howto__title { font-size: 1rem; }
}

/* ---------- PYTHAGORAS PAGE ---------- */
.py-doc {
    max-width: 760px;
    margin: 0 auto;
}

.py-doc .section__head {
    text-align: left;
    margin: 0 0 28px;
}

.py-doc .section__head h2 {
    text-align: left;
}

.py-doc .section__lede {
    margin-left: 0;
}

.py-doc .callout {
    margin: 28px 0;
}

.py-doc .callout ul {
    margin: 0;
    padding-left: 22px;
    list-style: disc;
}

.py-doc .callout ul li {
    color: #d8d8dc;
    margin-bottom: 8px;
    line-height: 1.6;
}

.py-doc .callout ul li:last-child { margin-bottom: 0; }

.py-sep {
    max-width: 760px;
    margin: 56px auto;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.py-fragments p {
    padding-left: 18px;
    border-left: 2px solid rgba(255,255,255,0.08);
    color: #d4d4d8;
}

.py-subhead {
    margin: 40px 0 18px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.py-numbered {
    margin: 0;
    padding-left: 28px;
    list-style: decimal;
    color: #d4d4d8;
}

.py-numbered li {
    margin-bottom: 14px;
    line-height: 1.7;
    padding-left: 6px;
}

.py-numbered li:last-child { margin-bottom: 0; }

@media (max-width: 540px) {
    .py-sep { margin: 40px auto; }
    .py-fragments p { padding-left: 14px; }
    .py-subhead { font-size: 1.15rem; margin: 32px 0 14px; }
    .py-numbered { padding-left: 24px; }
}
