:root {
    --bg-primary: #fffcf9;
    --bg-secondary: #faf6f1;
    --bg-tertiary: #f3ede5;
    --bg-elevated: #ffffff;

    --ink: #2c1e10;
    --ink-2: #50392a;
    --ink-3: #7a6352;
    --ink-4: #9c8a7a;

    --border: #e5d9ca;
    --border-light: #eee6da;
    --border-dark: #d1c0ab;

    --accent: #b8946a;
    --accent-hover: #a6805a;
    --accent-deep: #9e7d56;
    --accent-warm: #c9a97a;
    --accent-gradient: linear-gradient(135deg, #c9a97a 0%, #a68560 100%);

    --gold: #b8741a;
    --dark-bg: #1f1409;
    --dark-bg-2: #2c1e10;
    --dark-ink: #f5e9d6;
    --dark-ink-2: #c9a97a;

    --shadow-xs: 0 1px 2px rgba(36, 24, 14, 0.06);
    --shadow-sm: 0 1px 2px rgba(36, 24, 14, 0.04), 0 1px 3px rgba(36, 24, 14, 0.06);
    --shadow-md: 0 4px 12px rgba(36, 24, 14, 0.06), 0 12px 24px rgba(36, 24, 14, 0.08);
    --shadow-lg: 0 10px 30px rgba(36, 24, 14, 0.08), 0 25px 50px rgba(36, 24, 14, 0.08);
    --shadow-xl: 0 30px 60px -15px rgba(36, 24, 14, 0.18), 0 18px 36px -10px rgba(36, 24, 14, 0.12);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --max-width: 1180px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 {
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
}

p { margin: 0; }

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

.serif-italic {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    color: var(--accent-deep);
    letter-spacing: 0;
    padding: 0 0.05em;
}

/* ============= BACKGROUND LAYERS ============= */

.bg-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    background-image: radial-gradient(circle at 1px 1px, rgba(122, 99, 82, 0.08) 1px, transparent 0);
    background-size: 22px 22px;
}

.bg-orbs {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.28;
    animation: orb-drift 32s ease-in-out infinite;
}

.orb-1 { width: 680px; height: 680px; background: var(--accent-warm); top: -300px; left: -220px; }
.orb-2 { width: 560px; height: 560px; background: var(--accent-deep); top: 30%; right: -240px; animation-delay: -10s; }

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(40px, -30px) scale(1.05); }
    66%      { transform: translate(-30px, 25px) scale(0.96); }
}

/* ============= HEADER ============= */

.site-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.brand:hover { color: var(--ink); }

.brand-mark {
    display: inline-flex;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(184, 148, 106, 0.25);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link {
    color: var(--ink-2);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.55rem 0.95rem;
    border-radius: var(--radius-full);
    transition: background 200ms ease, color 200ms ease;
}

.nav-link:hover {
    color: var(--ink);
    background: rgba(245, 237, 226, 0.7);
}

@media (max-width: 880px) {
    .header-nav .nav-link { display: none; }
}

/* ============= BUTTONS ============= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn .arrow { transition: transform 220ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #3d2b1a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

.btn-ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    border-color: var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: #fff;
    border-color: var(--border-dark);
    color: var(--ink);
}

.btn-light {
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--bg-secondary);
    color: var(--ink);
    transform: translateY(-1px);
}

.btn-large {
    padding: 1.05rem 1.85rem;
    font-size: 1rem;
}

/* ============= MAIN ============= */

main {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: rgba(184, 148, 106, 0.1);
    padding: 0.4rem 0.95rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(184, 148, 106, 0.18);
}

.eyebrow-dark {
    color: var(--dark-ink-2);
    background: rgba(201, 169, 122, 0.12);
    border-color: rgba(201, 169, 122, 0.28);
}

.section-head {
    text-align: center;
    margin: 0 auto 3.5rem;
    max-width: 44rem;
}

.section-head .eyebrow { margin-bottom: 1.2rem; }

.section-head h2 {
    font-size: clamp(2.1rem, 4.3vw, 3.2rem);
    margin-bottom: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-sub {
    color: var(--ink-3);
    font-size: 1.05rem;
    margin-top: 0.6rem;
}

/* ============= REVEAL-ON-SCROLL ============= */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 0) * 60ms);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============= HERO ============= */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 3.5rem;
    align-items: center;
    padding: 3rem 0 5rem;
}

.hero-text .eyebrow { margin-bottom: 1.75rem; }

.hero h1 {
    font-size: clamp(2.6rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.hero h1 .serif-italic { font-size: 1.08em; }

.hero .lede {
    max-width: 36rem;
    color: var(--ink-2);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
}

.hero .lede em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent-deep);
    font-size: 1.05em;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ink-4);
    font-size: 0.85rem;
    font-weight: 500;
}

.meta-dot {
    width: 7px;
    height: 7px;
    background: #6fae5a;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(111, 174, 90, 0.2);
    animation: pulse-soft 2.4s ease-in-out infinite;
}

@keyframes pulse-soft {
    0%, 100% { box-shadow: 0 0 0 4px rgba(111, 174, 90, 0.2); }
    50%      { box-shadow: 0 0 0 7px rgba(111, 174, 90, 0); }
}

/* Hero visual stack */
.hero-visual { position: relative; min-height: 520px; }
.hero-stack { position: relative; width: 100%; height: 100%; }

.hero-search {
    position: absolute;
    top: 0;
    left: 0;
    width: 92%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1.15rem 1.25rem;
    z-index: 2;
    transform: rotate(-1.2deg);
}

.hero-search-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 0.55rem;
}

.hero-search-input {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.45;
    min-height: 2.6em;
}

.typewriter { color: var(--ink); }

.caret {
    display: inline-block;
    width: 2px;
    background: var(--accent-deep);
    color: transparent;
    margin-left: 1px;
    animation: caret-blink 1s steps(2) infinite;
    line-height: 1;
}

@keyframes caret-blink { 50% { opacity: 0; } }

.hero-search-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.85rem;
    min-height: 1.7rem;
}

.qtag {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--accent-deep);
    background: rgba(184, 148, 106, 0.12);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(184, 148, 106, 0.18);
    animation: fade-in 350ms ease-out both;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero match card */
.hero-match {
    position: absolute;
    top: 170px;
    right: 0;
    width: 96%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    z-index: 3;
    transform: rotate(1deg);
    opacity: 0;
    transition: opacity 280ms ease;
}

.hero-match.show { opacity: 1; }

.hero-match-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.hero-match-img > svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-match-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(31, 20, 9, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-full);
}

.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-warm);
    box-shadow: 0 0 0 4px rgba(201, 169, 122, 0.4);
    animation: pulse-soft 1.8s ease-in-out infinite;
}

.hero-match-body { padding: 1rem 1.15rem 1.1rem; }

.hero-match-body h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.hero-match-meta {
    font-size: 0.82rem;
    color: var(--ink-4);
    margin-bottom: 0.85rem;
}

.hero-match-stats,
.match-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-light);
}

.stat-label {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 0.18rem;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}

.stat-value.gold {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 940px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2.5rem 0 3rem;
        gap: 2.5rem;
    }
    .hero-visual { min-height: 420px; max-width: 480px; }
}

@media (max-width: 540px) {
    .hero { padding: 1.5rem 0 2.5rem; gap: 2rem; }
    .hero h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); margin-bottom: 1rem; }
    .hero .lede { font-size: 1.05rem; margin-bottom: 1.75rem; }
    .hero-visual { min-height: 360px; }
    .hero-search { width: 100%; }
    .hero-match { width: 100%; top: 150px; }
    .hero-match-body h4 { font-size: 0.92rem; }
    .section-head { margin-bottom: 2.5rem; }
    .section-head h2 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
}

/* ============= STATS STRIP ============= */

.stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 4rem auto;
    max-width: 880px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 1.5rem 0;
}

.stat-block {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1.5rem;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-cap {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-4);
}

.stat-divider {
    width: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

@media (max-width: 720px) {
    .stats { flex-direction: column; padding: 0.5rem 0; }
    .stat-block { padding: 1.25rem; }
    .stat-divider { width: auto; height: 1px; margin: 0 1.5rem; }
}

/* ============= HUNTING GALLERY ============= */

.hunting { padding: 4rem 0 5rem; }

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tile {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 350ms ease;
    background: var(--bg-tertiary);
    cursor: default;
}

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

.tile img,
.tile .tile-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.tile:hover img,
.tile:hover .tile-art { transform: scale(1.04); }

.tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(31, 20, 9, 0.92) 0%, rgba(31, 20, 9, 0.6) 30%, transparent 65%);
    color: #fff;
}

.tile-overlay-dark {
    background: linear-gradient(to top, rgba(10, 6, 4, 0.95) 0%, rgba(10, 6, 4, 0.5) 38%, transparent 70%);
}

.tile-query {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.tile-meta {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 880px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .gallery { grid-template-columns: 1fr; }
    .tile { aspect-ratio: 16 / 10; }
}

/* ============= HOW IT WORKS ============= */

.how { padding: 4rem 0 5rem; }

.how-rows {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.how-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.how-row.reverse .how-text { order: 2; }
.how-row.reverse .how-visual { order: 1; }

.step-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.85rem;
}

.how-text h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    margin-bottom: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.how-text p {
    color: var(--ink-3);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 30rem;
}

.how-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem;
    position: relative;
}

.mockup-card.small {
    width: 100%;
    max-width: 360px;
    transform: rotate(-1deg);
}

.card-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 0.6rem;
}

.query-text {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
}

.query-text.small-q { font-size: 0.92rem; }

.query-tags {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
}

/* Sweep mockup */
.sweep-mockup {
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    transform: rotate(1deg);
}

.sweep-source {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--ink-2);
    border-bottom: 1px dashed var(--border-light);
}

.sweep-source:last-of-type { border-bottom: none; }

.sweep-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 148, 106, 0.18);
}

.sweep-count {
    margin-left: auto;
    font-variant-numeric: tabular-nums;
    color: var(--ink-4);
    font-weight: 600;
    font-size: 0.85rem;
}

.sweep-bar {
    height: 5px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    margin: 0.9rem 0 0.7rem;
    overflow: hidden;
}

.sweep-bar span {
    display: block;
    height: 100%;
    width: 62%;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    animation: sweep-fill 2.6s ease-in-out infinite;
}

@keyframes sweep-fill {
    0%   { width: 12%; }
    100% { width: 92%; }
}

.sweep-status {
    font-size: 0.82rem;
    color: var(--ink-4);
    font-style: italic;
}

/* Email mockup */
.email-from {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.email-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.email-sender { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.email-time { font-size: 0.75rem; color: var(--ink-4); }

.email-subject {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.email-snippet {
    font-size: 0.88rem;
    color: var(--ink-3);
    line-height: 1.55;
}

@media (max-width: 820px) {
    .how-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .how-row.reverse .how-text { order: 1; }
    .how-row.reverse .how-visual { order: 2; }
}

/* ============= ANATOMY ============= */

.anatomy { padding: 5rem 0; }

.anatomy-stage {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.specimen {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.specimen-photo {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.specimen-photo img,
.specimen-photo > svg { width: 100%; height: 100%; object-fit: cover; display: block; }

.specimen-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(31, 20, 9, 0.82);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.specimen-body { padding: 1.25rem 1.4rem 1.5rem; }

.specimen-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.specimen-meta {
    font-size: 0.85rem;
    color: var(--ink-4);
    margin-bottom: 1rem;
}

.annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 3;
    pointer-events: none;
}

.annot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 4px rgba(184, 148, 106, 0.18);
    flex-shrink: 0;
}

.annot-text {
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--ink-3);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 0.55rem 0.75rem;
    box-shadow: var(--shadow-sm);
    max-width: 200px;
}

.annot-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.15rem;
}

.annot-photo    { top: 50px;  left: -200px; }
.annot-title    { top: 50px;  right: -200px; flex-direction: row-reverse; }
.annot-price    { bottom: 60px; left: -200px; }
.annot-location { bottom: 60px; right: -200px; flex-direction: row-reverse; }

@media (max-width: 1080px) {
    .annot-photo    { top: -90px;  left: 0; }
    .annot-title    { top: -90px;  right: 0; flex-direction: row; }
    .annot-price    { bottom: -90px; left: 0; }
    .annot-location { bottom: -90px; right: 0; flex-direction: row; }
    .annot-text { max-width: 180px; }
    .anatomy-stage { padding: 6rem 0; }
}

@media (max-width: 600px) {
    .anatomy-stage { padding: 1rem 0; max-width: 100%; }
    .annotation { position: relative; top: auto; left: auto; right: auto; bottom: auto; margin: 0.5rem 0; flex-direction: row; }
    .annot-text { max-width: none; }
    .specimen { margin-bottom: 1rem; }
}

/* ============= TRY IT (dark break) ============= */

.tryit {
    position: relative;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
    color: var(--dark-ink);
    padding: 6rem 2rem;
    margin: 2rem calc(50% - 50vw) 0;
    width: 100vw;
    overflow: hidden;
    z-index: 1;
}

.tryit::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(245, 233, 214, 0.06) 1px, transparent 0);
    background-size: 22px 22px;
    pointer-events: none;
}

.tryit::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--accent-warm);
    filter: blur(160px);
    opacity: 0.18;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.tryit-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.tryit-inner .eyebrow { margin-bottom: 1.25rem; }

.tryit-inner h2 {
    color: var(--dark-ink);
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.tryit-inner h2 .serif-italic { color: var(--dark-ink-2); }

.tryit-inner > p {
    color: rgba(245, 233, 214, 0.7);
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

.tryit-input {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(245, 233, 214, 0.08);
    border: 1px solid rgba(245, 233, 214, 0.18);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.5rem 0.4rem 1.5rem;
    max-width: 580px;
    margin: 0 auto 2rem;
    transition: border-color 200ms ease, background 200ms ease;
}

.tryit-input:focus-within {
    border-color: rgba(201, 169, 122, 0.55);
    background: rgba(245, 233, 214, 0.12);
}

.tryit-input svg { color: var(--dark-ink-2); flex-shrink: 0; }

.tryit-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--dark-ink);
    font-family: inherit;
    font-size: 1rem;
    padding: 0.9rem 0;
    min-width: 0;
}

.tryit-input input::placeholder { color: rgba(245, 233, 214, 0.4); }

.tryit-hint {
    font-size: 0.75rem;
    color: rgba(245, 233, 214, 0.55);
    padding: 0.45rem 0.85rem;
    background: rgba(245, 233, 214, 0.06);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.tryit-hint kbd {
    font-family: inherit;
    font-size: 0.75rem;
    background: rgba(245, 233, 214, 0.18);
    padding: 0 0.3rem;
    border-radius: 4px;
    margin-right: 0.2rem;
}

.tryit-result {
    max-width: 560px;
    margin: 0 auto;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tryit-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(245, 233, 214, 0.5);
    font-size: 0.95rem;
    font-style: italic;
}

.tryit-placeholder em {
    color: var(--dark-ink);
    font-style: normal;
    font-weight: 600;
}

.tryit-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(245, 233, 214, 0.2);
    border-top-color: var(--accent-warm);
    border-radius: 50%;
}

.tryit-spinner.spinning { animation: spin 0.8s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

.tryit-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    background: rgba(245, 233, 214, 0.06);
    border: 1px solid rgba(245, 233, 214, 0.18);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    text-align: left;
    animation: card-in 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes card-in {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.tryit-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.tryit-card-img img,
.tryit-card-img > svg { width: 100%; height: 100%; object-fit: cover; display: block; }

.tryit-card .hero-match-badge {
    background: rgba(0, 0, 0, 0.7);
    top: 0.6rem;
    left: 0.6rem;
}

.tryit-card-body { padding: 1rem 1.15rem; }

.tryit-card-body h4 {
    color: var(--dark-ink);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.tryit-card .hero-match-meta { color: rgba(245, 233, 214, 0.55); }

.tryit-card .stat-label { color: rgba(245, 233, 214, 0.55); }
.tryit-card .stat-value { color: var(--dark-ink); }
.tryit-card .hero-match-stats { border-top-color: rgba(245, 233, 214, 0.12); margin-top: 0.7rem; }

.tryit-fineprint {
    margin-top: 2rem;
    font-size: 0.82rem;
    color: rgba(245, 233, 214, 0.45);
}

@media (max-width: 540px) {
    .tryit { padding: 4rem 1.25rem; }
    .tryit-hint { display: none; }
    .tryit-card { grid-template-columns: 1fr; }
    .tryit-card-img { aspect-ratio: 16 / 9; }
}

/* ============= TESTIMONIALS ============= */

.testimonials { padding: 5rem 0; }

.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.quote {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    margin: 0;
    position: relative;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.quote:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-dark);
}

.quote::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 4rem;
    color: var(--accent-warm);
    opacity: 0.5;
    line-height: 1;
}

.quote blockquote {
    margin: 0 0 1.25rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.18rem;
    line-height: 1.5;
    color: var(--ink);
    position: relative;
    z-index: 1;
}

.quote blockquote em { font-style: normal; font-weight: 600; color: var(--accent-deep); }

.quote figcaption {
    font-size: 0.85rem;
    color: var(--ink-4);
    font-weight: 500;
}

@media (max-width: 880px) {
    .quote-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ============= FAQ ============= */

.faq { padding: 4rem 0 5rem; }

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq details {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.25rem 1.25rem;
    transition: background 200ms ease, border-color 200ms ease;
}

.faq details:hover { border-color: var(--border-dark); }

.faq details[open] {
    background: #fff;
    border-color: var(--border-dark);
    box-shadow: var(--shadow-sm);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--ink);
    font-size: 1.02rem;
}

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

.faq summary::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--ink-3);
    border-bottom: 2px solid var(--ink-3);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 220ms ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq details[open] summary::after {
    transform: rotate(-135deg) translate(-2px, -2px);
}

.faq details p {
    padding: 0 0 1.1rem;
    color: var(--ink-3);
    font-size: 0.97rem;
    line-height: 1.65;
    max-width: 60ch;
}

/* ============= CTA BANNER ============= */

.cta-banner { margin: 4rem 0 6rem; position: relative; }

.cta-inner {
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    color: #fff;
    box-shadow: var(--shadow-xl);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-inner::before,
.cta-inner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cta-inner::before {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.32);
    top: -120px;
    left: -80px;
}

.cta-inner::after {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.2);
    bottom: -100px;
    right: -60px;
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}

.cta-inner h2 .serif-italic {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.08em;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 32rem;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    font-size: 1.08rem;
}

.cta-inner .btn { position: relative; z-index: 1; }

/* ============= FOOTER ============= */

.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    margin-top: 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.footer-brand p {
    margin: 0.45rem 0 0;
    color: var(--ink-4);
    font-size: 0.85rem;
}

.brand-sm { font-size: 0.95rem; }

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    align-items: center;
}

.footer-nav a { color: var(--ink-3); font-size: 0.9rem; font-weight: 500; }
.footer-nav a:hover { color: var(--ink); }

/* ============= MOBILE TWEAKS ============= */

@media (max-width: 640px) {
    .site-header { padding: 1rem 1.25rem; }
    main { padding: 0 1.25rem; }
    .cta-inner { padding: 3.5rem 1.5rem; }
    .orb { filter: blur(80px); }
}
