:root {
    color-scheme: dark;
    --bg: #0d0c0b;
    --surface: #12110f;
    --surface-soft: #191612;
    --surface-warm: #1c1711;
    --text: #f4efe5;
    --muted: #aaa297;
    --muted-strong: #d1c8b9;
    --amber: #d59a52;
    --amber-soft: #efc27d;
    --ember: #a64d38;
    --line: rgba(244, 239, 229, 0.10);
    --line-strong: rgba(244, 239, 229, 0.20);
    --line-warm: rgba(213, 154, 82, 0.34);
    --max: 1180px;
    --pad: clamp(1.25rem, 4vw, 4rem);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

::selection {
    background: rgba(213, 154, 82, .28);
    color: var(--text);
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 1rem;
    left: 1rem;
    transform: translateY(-200%);
    padding: .7rem 1rem;
    background: var(--text);
    color: var(--bg);
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.35rem var(--pad);
    opacity: 0;
    animation: header-reveal .7s 5.10s ease-out forwards;
}

.brand {
    position: relative;
    padding-left: 1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-decoration: none;
}

.brand::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: .36rem;
    height: .36rem;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 18px rgba(213, 154, 82, .35);
}

.site-nav {
    display: flex;
    gap: 1.6rem;
}

.site-nav a {
    color: var(--muted);
    font-size: .82rem;
    text-decoration: none;
    transition: color .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--amber-soft);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 5.5rem var(--pad) 1.75rem;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 240, 212, .055), transparent 30%),
        linear-gradient(180deg, #090908 0%, #0d0c0b 100%);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: auto -14vw -36vh auto;
    width: min(58vw, 760px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 77, 56, .15) 0%, rgba(213, 154, 82, .055) 32%, transparent 70%);
    filter: blur(12px);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.95%, rgba(244,239,229,.016) 50%, transparent 50.05%),
        linear-gradient(180deg, transparent 0%, rgba(244,239,229,.010) 50%, transparent 100%);
    pointer-events: none;
}

.hero__light {
    position: absolute;
    z-index: -1;
    top: -22vh;
    left: 50%;
    width: min(72vw, 900px);
    aspect-ratio: 1;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,244,225,.075) 0%, rgba(213,154,82,.025) 36%, transparent 68%);
    filter: blur(2px);
    pointer-events: none;
}

.hero__warmth {
    position: absolute;
    z-index: -1;
    left: 8vw;
    bottom: 10vh;
    width: min(28vw, 360px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213,154,82,.09) 0%, rgba(166,77,56,.035) 38%, transparent 72%);
    filter: blur(10px);
    pointer-events: none;
}

.hero__inner {
    width: min(100%, var(--max));
    text-align: center;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.02;
}

h1 {
    margin: 0;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(4.6rem, 9.4vw, 9.35rem);
    font-weight: 400;
    letter-spacing: -.065em;
    opacity: 0;
    transform: translateY(12px);
    text-shadow: 0 12px 40px rgba(0, 0, 0, .28);
    animation: hero-title-reveal .95s .55s cubic-bezier(.22,.61,.36,1) forwards;
}

.hero__mark {
    color: var(--amber-soft);
    text-shadow: 0 0 24px rgba(213, 154, 82, .28);
}

.hero__signature {
    margin: 1.45rem 0 0;
    color: var(--muted-strong);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .36em;
    opacity: 0;
    animation: fade-reveal .80s 2.75s ease-out forwards;
}

.hero__signature strong {
    color: var(--text);
    font-weight: 700;
}

.hero__choices {
    width: min(100%, var(--max));
    margin: 3.15rem auto 0;
    opacity: 0;
    transform: translateY(14px);
    animation: choices-reveal .80s 5.10s cubic-bezier(.22,.61,.36,1) forwards;
}

.hero__eyebrow {
    display: inline-block;
    margin-bottom: .75rem;
}

.hero__question {
    max-width: none;
    margin: 0 0 1.55rem;
    font-size: clamp(1.85rem, 2.9vw, 3rem);
    letter-spacing: -.035em;
}

.section-shell {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: clamp(5.5rem, 10vw, 9.5rem) var(--pad);
}

.eyebrow {
    position: relative;
    margin: 0 0 1.35rem;
    padding-left: 1.05rem;
    color: var(--muted);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .21em;
}

.eyebrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: .48rem;
    height: 1px;
    background: var(--amber);
}

h2 {
    max-width: 920px;
    margin-bottom: 3.25rem;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(2.8rem, 6.3vw, 5.9rem);
    font-weight: 400;
    letter-spacing: -.055em;
}

.intent-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.intent-grid a {
    position: relative;
    min-height: 170px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 1.05rem;
    overflow: hidden;
    padding: clamp(1.25rem, 1.9vw, 1.7rem);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: background-color .22s ease, transform .22s ease, border-color .22s ease;
}

.intent-grid a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--amber-soft), var(--ember));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .22s ease;
}

.intent-grid a::after {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -42%;
    width: 48%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213,154,82,.12), transparent 67%);
    opacity: 0;
    transition: opacity .22s ease;
    pointer-events: none;
}

.intent-grid a:hover,
.intent-grid a:focus-visible {
    background: var(--surface-warm);
    border-color: var(--line-warm);
    transform: translateY(-2px);
}

.intent-grid a:hover::before,
.intent-grid a:focus-visible::before {
    transform: scaleY(1);
}

.intent-grid a:hover::after,
.intent-grid a:focus-visible::after {
    opacity: 1;
}

.intent-grid__index {
    color: #8e8274;
    font-size: .67rem;
    letter-spacing: .18em;
    transition: color .18s ease;
}

.intent-grid a:hover .intent-grid__index,
.intent-grid a:focus-visible .intent-grid__index {
    color: var(--amber-soft);
}

.intent-grid strong {
    align-self: end;
    max-width: 15ch;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(1.35rem, 1.85vw, 2rem);
    font-weight: 400;
    letter-spacing: -.04em;
}

.intent-grid__answer {
    color: var(--muted);
    font-size: .82rem;
}

.clarity {
    position: relative;
    background:
        linear-gradient(120deg, rgba(166,77,56,.028), transparent 36%),
        var(--bg);
}

.clarity__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.clarity__layout h2 {
    margin-bottom: 0;
}

.clarity__lead {
    max-width: 44ch;
    margin: 0 0 3rem;
    color: var(--muted-strong);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.clarity-list {
    margin: 0;
}

.clarity-list div {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
    padding: 1.4rem 0;
    border-top: 1px solid var(--line);
    transition: border-color .18s ease;
}

.clarity-list div:hover {
    border-top-color: var(--line-warm);
}

.clarity-list div:last-child {
    border-bottom: 1px solid var(--line);
}

.clarity-list dt {
    color: var(--amber-soft);
    font-weight: 650;
}

.clarity-list dd {
    margin: 0;
    color: var(--muted);
}

.next-step {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 110%, rgba(213,154,82,.09), transparent 34%),
        #100e0c;
    border-top: 1px solid var(--line);
}

.next-step__inner {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.next-step__inner h2 {
    margin-left: auto;
    margin-right: auto;
}

.next-step__inner > p:last-child {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.site-footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.site-footer .section-shell {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer p {
    margin: 0;
    font-size: .68rem;
    letter-spacing: .15em;
}

@keyframes hero-title-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-reveal {
    to {
        opacity: 1;
    }
}

@keyframes choices-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes header-reveal {
    to {
        opacity: 1;
    }
}

@media (min-width: 761px) and (max-width: 1100px) {
    .intent-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intent-grid a {
        min-height: 132px;
    }
}

@media (min-width: 761px) and (max-height: 820px) {
    .hero {
        padding-top: 4.9rem;
        padding-bottom: 1rem;
    }

    h1 {
        font-size: clamp(3.9rem, 7.6vw, 6.7rem);
    }

    .hero__signature {
        margin-top: .55rem;
    }

    .hero__choices {
        margin-top: 1.15rem;
    }

    .hero__eyebrow {
        margin-bottom: .35rem;
    }

    .hero__question {
        margin-bottom: .7rem;
        font-size: clamp(1.45rem, 2.2vw, 2.1rem);
    }

    .intent-grid a {
        min-height: 122px;
        padding: .9rem 1rem;
    }

    .intent-grid__answer {
        font-size: .74rem;
    }
}

@media (max-width: 760px) {
    .site-nav {
        display: none;
    }

    .hero {
        min-height: 100svh;
        height: auto;
        overflow: visible;
        padding-top: 6rem;
        padding-bottom: 2.5rem;
    }

    .hero::before {
        right: -40vw;
        bottom: -18vh;
        width: 100vw;
    }

    .hero__warmth {
        left: -18vw;
        bottom: 16vh;
        width: 70vw;
    }

    h1 {
        font-size: clamp(4.2rem, 21vw, 7rem);
    }

    .hero__choices {
        margin-top: 2.25rem;
    }

    .hero__question {
        margin-bottom: 1.2rem;
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .intent-grid {
        grid-template-columns: 1fr;
    }

    .intent-grid a {
        min-height: 145px;
    }

    .clarity__layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .clarity-list div {
        grid-template-columns: 1fr;
        gap: .4rem;
    }

    .site-footer__inner {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .site-header,
    h1,
    .hero__signature,
    .hero__choices,
    .hero__entry {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .intent-grid a,
    .intent-grid a::before,
    .intent-grid a::after {
        transition: none;
    }
}
