@font-face {
    font-family: "Edition Serif";
    src: url("assets/EditionSerif-Regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Edition Serif";
    src: url("assets/EditionSerif-Italic.otf") format("opentype");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

:root {
    --paper: #F7F5F1;
    --paper-deep: #EFEAE2;
    --paper-soft: #FBFAF7;
    --ink: #141414;
    --muted: #696760;
    --line: #DCD5CA;
    --green: #115740;
    --green-light: #1A7A5A;
    --green-soft: #DDECE5;
    --dark: #0B0B0A;
    --dark-soft: #151513;
    --white: #FFFFFF;
    --champagne: #C7A76A;
    --serif: 'Edition Serif', Georgia, serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --scroll-progress: 0%;
    --cursor-x: 50%;
    --cursor-y: 24%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background:
        radial-gradient(circle at 74% 3%, rgba(199, 167, 106, 0.11), transparent 28rem),
        radial-gradient(circle at 18% 8%, rgba(17, 87, 64, 0.08), transparent 34rem),
        var(--paper);
    line-height: 1.55;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 40;
    pointer-events: none;
    opacity: 0.13;
    background:
        radial-gradient(circle 420px at var(--cursor-x) var(--cursor-y), rgba(255, 255, 255, 0.78), transparent 72%);
    mix-blend-mode: soft-light;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main,
footer {
    position: relative;
    z-index: 1;
}

img {
    display: block;
}

a {
    color: inherit;
}

::selection {
    color: #FFFFFF;
    background: var(--green);
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    background: rgba(247, 245, 241, 0.84);
    border-bottom: 1px solid rgba(220, 213, 202, 0);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: var(--scroll-progress);
    height: 1px;
    background: linear-gradient(90deg, rgba(17, 87, 64, 0), rgba(17, 87, 64, 0.92), rgba(141, 211, 173, 0.9));
    box-shadow: 0 0 18px rgba(17, 87, 64, 0.18);
}

.site-nav.scrolled {
    border-bottom-color: rgba(220, 213, 202, 0.9);
    background: rgba(247, 245, 241, 0.94);
    box-shadow: 0 14px 44px rgba(20, 20, 20, 0.055);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.brand img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover img {
    transform: rotate(-7deg) scale(1.04);
}

.brand span {
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.nav-action,
.button-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 44px;
    padding: 0.74rem 1.35rem;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
        linear-gradient(135deg, #0D4937, var(--green) 58%, #177455);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-action::before,
.button-main::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    background: linear-gradient(110deg, transparent 8%, rgba(255, 255, 255, 0.22) 28%, transparent 48%);
    transform: translateX(-120%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-action:hover,
.button-main:hover {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(135deg, #0F563F, var(--green-light) 60%, #1E8B65);
    transform: translateY(-1px);
    box-shadow: 0 12px 34px rgba(17, 87, 64, 0.24);
}

.nav-action:hover::before,
.button-main:hover::before {
    transform: translateX(120%);
}

.nav-action:hover .icon-arrow,
.button-main:hover .icon-arrow {
    transform: translateX(3px);
}

.button-main:disabled {
    cursor: progress;
    opacity: 0.72;
    transform: none;
}

.button-quiet {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.74rem 0;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.button-quiet::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.58rem;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.button-quiet:hover::after {
    transform: scaleX(0.72);
}

.button-quiet:hover {
    color: var(--green);
}

.icon-arrow {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.25s ease;
}

.eyebrow {
    margin: 0 0 1.15rem;
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dark .eyebrow,
.green-section .eyebrow {
    color: rgba(255, 255, 255, 0.58);
}

.hero {
    min-height: 100vh;
    padding: 64px 0 0;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: relative;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 64px 0 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 12% 26%, rgba(199, 167, 106, 0.13), transparent 28rem),
        linear-gradient(90deg, transparent 49.96%, rgba(17, 87, 64, 0.09) 50%, transparent 50.04%);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 6rem);
    position: relative;
    z-index: 2;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 760px;
    margin-bottom: 1.8rem;
    font-size: clamp(4.45rem, 8.2vw, 8.9rem);
    line-height: 0.95;
}

h1 em {
    color: var(--green);
    display: inline-block;
    font-style: italic;
    position: relative;
    white-space: nowrap;
    text-shadow: 0 20px 46px rgba(17, 87, 64, 0.16);
}

h1 em::after {
    content: "";
    position: absolute;
    left: 0.04em;
    right: 0.02em;
    bottom: 0.03em;
    height: 0.08em;
    z-index: -1;
    background: linear-gradient(90deg, rgba(17, 87, 64, 0.72), rgba(26, 122, 90, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.22s;
}

h1.reveal.on em::after {
    transform: scaleX(1);
}

.hero-sub {
    max-width: 520px;
    margin-bottom: 2.7rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.4rem;
}

.hero-stage {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(17, 87, 64, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 87, 64, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 245, 241, 0), rgba(239, 234, 226, 0.88)),
        radial-gradient(circle at 60% 48%, rgba(17, 87, 64, 0.16), transparent 28rem);
    background-size: 44px 44px, 44px 44px, auto, auto;
    z-index: 1;
}

.hero-stage::before {
    content: "The Edition";
    position: absolute;
    right: -0.08em;
    bottom: -0.17em;
    color: rgba(17, 87, 64, 0.055);
    font-family: var(--serif);
    font-size: clamp(7rem, 16vw, 17rem);
    letter-spacing: -0.07em;
    white-space: nowrap;
}

.hero-stage img {
    position: relative;
    width: min(80vh, 58vw);
    max-width: 860px;
    min-width: 420px;
    height: auto;
    transform: rotate(7deg) translateX(3vw);
    filter: drop-shadow(0 54px 90px rgba(20, 20, 20, 0.22));
    will-change: transform, filter;
}

.ticker {
    counter-reset: edition-step;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
    background: var(--paper-soft);
}

.ticker-item {
    counter-increment: edition-step;
    padding: clamp(1.5rem, 3vw, 2.8rem) clamp(1.4rem, 4vw, 5rem);
    border-right: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease;
}

.ticker-item::before {
    content: counter(edition-step, decimal-leading-zero);
    position: absolute;
    right: clamp(1rem, 3vw, 3rem);
    bottom: -0.36em;
    color: rgba(17, 87, 64, 0.045);
    font-family: var(--serif);
    font-size: clamp(6rem, 10vw, 12rem);
    line-height: 1;
    letter-spacing: -0.08em;
    pointer-events: none;
    transition: color 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ticker-item::after {
    content: "";
    position: absolute;
    left: clamp(1.4rem, 4vw, 5rem);
    right: clamp(1.4rem, 4vw, 5rem);
    bottom: 0;
    height: 1px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ticker-item:hover {
    background: rgba(255, 255, 255, 0.42);
}

.ticker-item:hover::before {
    color: rgba(17, 87, 64, 0.08);
    transform: translateY(-0.08em);
}

.ticker-item:hover::after {
    transform: scaleX(1);
}

.ticker-item:last-child {
    border-right: 0;
}

.ticker-kicker {
    display: block;
    margin-bottom: 0.75rem;
    color: rgba(17, 87, 64, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ticker-item h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.08;
}

.ticker-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.feature {
    position: relative;
    min-height: 700px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    overflow: hidden;
    isolation: isolate;
}

.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.08));
}

.feature::after {
    content: "";
    position: absolute;
    top: clamp(2rem, 5vw, 5rem);
    bottom: clamp(2rem, 5vw, 5rem);
    left: 50%;
    z-index: 3;
    width: 1px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.5;
}

.feature-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
}

.feature-copy h2,
.topics h2,
.waitlist h2 {
    margin-bottom: 1.45rem;
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
}

.feature-copy p {
    max-width: 520px;
    margin-bottom: 2.2rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.78;
}

.feature-list {
    width: min(100%, 650px);
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(128, 128, 128, 0.22);
}

.feature-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
    padding: 1rem 0;
    color: rgba(20, 20, 20, 0.78);
    font-size: 0.98rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(128, 128, 128, 0.22);
    transition: color 0.25s ease, padding-left 0.25s ease, border-color 0.25s ease;
}

.feature-list li:hover {
    padding-left: 0.35rem;
    color: var(--ink);
    border-bottom-color: rgba(17, 87, 64, 0.38);
}

.check {
    width: 18px;
    height: 18px;
    color: var(--green);
    margin-top: 0.1rem;
}

.dark {
    color: #F2EEE8;
    background:
        radial-gradient(circle at 74% 20%, rgba(141, 211, 173, 0.1), transparent 30rem),
        radial-gradient(circle at 18% 84%, rgba(199, 167, 106, 0.08), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
        var(--dark);
}

.dark .feature-copy p,
.dark .feature-list li {
    color: rgba(242, 238, 232, 0.72);
}

.dark .feature-list {
    border-top-color: rgba(255, 255, 255, 0.13);
}

.dark .feature-list li {
    border-bottom-color: rgba(255, 255, 255, 0.13);
}

.dark .feature-list li:hover {
    color: #F2EEE8;
    border-bottom-color: rgba(141, 211, 173, 0.36);
}

.dark .check,
.green-section .check {
    color: #8DD3AD;
}

.green-section {
    color: #F5F1EA;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12), transparent 26rem),
        linear-gradient(90deg, rgba(5, 37, 28, 0.18), transparent 40%, rgba(5, 37, 28, 0.18)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 20px),
        radial-gradient(circle at 16% 50%, rgba(255, 255, 255, 0.12), transparent 28rem),
        var(--green);
}

.green-section .feature-copy p,
.green-section .feature-list li {
    color: rgba(245, 241, 234, 0.76);
}

.green-section .feature-list {
    border-top-color: rgba(255, 255, 255, 0.18);
}

.green-section .feature-list li {
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.green-section .feature-list li:hover {
    color: #FFFFFF;
    border-bottom-color: rgba(255, 255, 255, 0.38);
}

.image-stage {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    z-index: 1;
}

.image-stage::before {
    content: "";
    position: absolute;
    inset: 10%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.78;
    background:
        radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.22), transparent 34%),
        radial-gradient(circle at 52% 52%, rgba(141, 211, 173, 0.13), transparent 52%);
    filter: blur(24px);
    animation: ambient-drift 12s ease-in-out infinite;
}

.image-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.11), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.045));
    mix-blend-mode: screen;
}

.image-stage img {
    position: relative;
    z-index: 2;
}

.sources-stage::after {
    border-color: rgba(17, 87, 64, 0.08);
    background: linear-gradient(115deg, rgba(17, 87, 64, 0.045), transparent 45%, rgba(255, 255, 255, 0.18));
    mix-blend-mode: normal;
}

.deep-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 6rem) clamp(1.5rem, 4vw, 4rem);
}

.deep-stage img {
    width: min(92%, 780px);
    height: auto;
    filter: drop-shadow(0 44px 70px rgba(0, 0, 0, 0.38));
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.deep-stage:hover img {
    transform: translateY(-0.9rem) scale(1.022);
    filter: drop-shadow(0 60px 96px rgba(0, 0, 0, 0.46));
}

.sources-stage {
    background:
        linear-gradient(90deg, rgba(247, 245, 241, 0), rgba(247, 245, 241, 0.9) 72%),
        var(--paper);
}

.sources-stage img {
    position: absolute;
    top: -3%;
    right: -7%;
    width: auto;
    height: 106%;
    max-width: none;
    filter: drop-shadow(0 32px 58px rgba(20, 20, 20, 0.16));
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.sources-stage:hover img {
    transform: translateX(-2.2rem) translateY(-0.4rem);
    filter: drop-shadow(0 46px 78px rgba(20, 20, 20, 0.22));
}

.follow-stage img {
    position: absolute;
    top: -3%;
    left: 0;
    width: auto;
    height: 92%;
    max-width: none;
    transform: translateX(3vw);
    filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.25));
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.follow-stage:hover img {
    transform: translateX(3vw) translateY(-0.85rem);
    filter: drop-shadow(0 52px 100px rgba(0, 0, 0, 0.30));
}

.answer-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 3.5vw, 4rem);
}

.answer-stage img {
    width: min(68vh, 580px);
    min-width: 300px;
    height: auto;
    transform: rotate(5deg) translateX(-2%);
    filter: drop-shadow(0 48px 80px rgba(0, 0, 0, 0.44));
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.answer-stage:hover img {
    transform: rotate(3.5deg) translateX(-2%) translateY(-1.1rem) scale(1.025);
    filter: drop-shadow(0 74px 116px rgba(0, 0, 0, 0.52));
}

.sources {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.sources .feature-copy {
    padding-right: clamp(1.5rem, 4vw, 3.5rem);
}

.follow .feature-copy {
    grid-column: 2;
}

.follow .image-stage {
    grid-column: 1;
    grid-row: 1;
}

.answers {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.topics {
    position: relative;
    padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 6vw, 6rem);
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.66), transparent 30rem),
        radial-gradient(circle at 15% 76%, rgba(17, 87, 64, 0.08), transparent 22rem),
        var(--paper-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.topics::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(17, 87, 64, 0.08), transparent),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%, transparent 66%, rgba(20, 20, 20, 0.035));
}

.topics h2 {
    position: relative;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.topic-pills {
    position: relative;
    max-width: 850px;
    margin: 3rem auto 0;
    overflow: hidden;
    padding: 0.25rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 6rem, black calc(100% - 6rem), transparent);
    mask-image: linear-gradient(to right, transparent, black 6rem, black calc(100% - 6rem), transparent);
}

.topic-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    animation: topic-ticker 26s linear infinite;
}

.topic-pills:hover .topic-track {
    animation-play-state: paused;
}

.topic-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.68rem 1.25rem;
    border: 1px solid rgba(17, 87, 64, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.topic-pills span:hover {
    border-color: rgba(17, 87, 64, 0.45);
    background: rgba(255, 255, 255, 0.86);
}

@keyframes topic-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.quote {
    position: relative;
    padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 6vw, 6rem);
    background: var(--paper);
    text-align: center;
    overflow: hidden;
}

.quote::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(780px, 76vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17, 87, 64, 0.36), transparent);
    transform: translateX(-50%);
}

.quote p {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 7.5rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.quote span {
    position: relative;
    display: block;
    margin-top: 1.4rem;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.waitlist {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 6vw, 6rem);
    color: #F5F1EA;
    background: var(--dark);
}

.waitlist::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 25%, rgba(17, 87, 64, 0.65), transparent 28rem),
        linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent);
    pointer-events: none;
}

.waitlist::after {
    content: "";
    position: absolute;
    inset: auto clamp(2rem, 6vw, 6rem) 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 167, 106, 0.38), rgba(141, 211, 173, 0.42), transparent);
    pointer-events: none;
}

.waitlist-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
    max-width: 1320px;
    margin: 0 auto;
}

.waitlist-inner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -2.2rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 64%);
    pointer-events: none;
}

.waitlist h2 {
    margin-bottom: 1.2rem;
}

.waitlist p {
    max-width: 570px;
    margin-bottom: 0;
    color: rgba(245, 241, 234, 0.7);
    font-size: 1.08rem;
    line-height: 1.75;
}

.waitlist-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 28px 70px rgba(0, 0, 0, 0.22);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.waitlist-form:focus-within {
    border-color: rgba(141, 211, 173, 0.5);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 32px 80px rgba(0, 0, 0, 0.26),
        0 0 0 4px rgba(141, 211, 173, 0.08);
}

.waitlist-form input {
    width: 100%;
    min-height: 48px;
    border: 0;
    outline: 0;
    padding: 0 1.1rem;
    color: #FFFFFF;
    background: transparent;
    font: 500 0.98rem var(--sans);
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.waitlist-status {
    margin: 0.9rem 0 0;
    min-height: 1.4rem;
    color: rgba(245, 241, 234, 0.76);
    font-size: 0.9rem;
}

footer {
    padding: 2.2rem clamp(2rem, 6vw, 6rem);
    color: rgba(245, 241, 234, 0.62);
    background: #050505;
}

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

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #F5F1EA;
}

.footer-brand img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.85;
}

.footer-brand span {
    font-family: var(--serif);
}

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

.footer-links a {
    color: inherit;
    font-size: 0.86rem;
    text-decoration: none;
    cursor: pointer;
}

.footer-links a:hover {
    color: #F5F1EA;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(8px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.on {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@keyframes ambient-drift {

    0%,
    100% {
        transform: translate3d(-1.2%, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(1.2%, -1.4%, 0) scale(1.045);
    }
}


@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        order: -1;
        min-height: 520px;
    }

    .hero-stage img {
        width: min(78vw, 620px);
        min-width: 0;
        transform: rotate(5deg);
    }

    .feature,
    .answers {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .feature::after {
        display: none;
    }

    .image-stage {
        min-height: clamp(330px, 58vw, 520px);
    }

    .feature-copy,
    .sources .feature-copy {
        padding: clamp(3rem, 8vw, 5rem) clamp(2rem, 6vw, 4rem);
    }

    .follow .feature-copy,
    .follow .image-stage {
        grid-column: auto;
        grid-row: auto;
    }

    .follow .image-stage {
        order: -1;
    }

    .sources-stage,
    .answer-stage {
        order: -1;
    }

    .sources-stage img {
        right: -3%;
        height: 112%;
    }

    .follow-stage img {
        top: -8%;
        height: 92%;
        transform: translateX(8vw);
    }

    .follow-stage:hover img {
        transform: translateX(8vw) translateY(-0.45rem);
    }

    .answer-stage img {
        min-width: 0;
        width: min(84vw, 560px);
    }

    .waitlist-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body::before {
        opacity: 0.08;
    }

    .site-nav {
        height: 62px;
        padding: 0 1rem;
    }

    .brand span {
        font-size: 1.05rem;
    }

    .nav-action {
        min-height: 40px;
        padding: 0.68rem 1rem;
        font-size: 0.84rem;
    }

    .hero {
        padding-top: 62px;
    }

    .hero-copy {
        padding: 3.2rem 1.45rem 4rem;
    }

    h1 {
        font-size: clamp(3.45rem, 17.8vw, 5.35rem);
    }

    .hero-stage {
        min-height: 430px;
    }

    .hero-stage img {
        width: min(100vw, 520px);
        transform: rotate(4deg) translateX(5vw);
    }

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

    .ticker-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 1.8rem 1.45rem;
    }

    .ticker-item:last-child {
        border-bottom: 0;
    }

    .feature-copy {
        padding: 3rem 1.45rem 4rem;
    }

    .feature-copy h2,
    .topics h2,
    .waitlist h2 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
    }

    .image-stage {
        min-height: 330px;
    }

    .deep-stage {
        padding: 2rem 0.5rem 0;
    }

    .deep-stage img {
        width: 112%;
        transform: translateY(-1rem);
    }

    .sources-stage img {
        right: -6%;
        top: -5%;
        height: 112%;
    }

    .follow-stage img {
        left: 6%;
        top: -8%;
        height: 90%;
        transform: translateX(0);
    }

    .follow-stage:hover img {
        transform: translateX(0);
    }

    .topics,
    .quote,
    .waitlist {
        padding: 4.5rem 1.45rem;
    }

    .topic-pills {
        margin-top: 2.3rem;
    }

    .quote p {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .waitlist-form {
        grid-template-columns: 1fr;
        border-radius: 28px;
        padding: 0.7rem;
    }

    .waitlist-form input {
        min-height: 46px;
    }

    .button-main {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        filter: none;
        opacity: 1;
        transform: none;
    }

    .topic-track {
        animation: none;
        flex-wrap: wrap;
        width: auto;
        justify-content: center;
    }
}
