:root {
    color-scheme: light;
    --paper: #f7f4ea;
    --paper-deep: #eee9dc;
    --surface: #fffaf0;
    --ink: #17201c;
    --muted: #5a655f;
    --forest: #175b42;
    --forest-dark: #0e3728;
    --rust: #9e4e2c;
    --rust-text: #824021;
    --rule: #d8d4c8;
    --white: #fffdf7;
    --display: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    --mono: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
    --shadow-note: 0 24px 60px rgba(23, 32, 28, 0.11);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image: linear-gradient(rgba(23, 32, 28, 0.024) 1px, transparent 1px);
    background-size: 100% 32px;
    content: "";
    pointer-events: none;
}

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

a {
    color: inherit;
    text-underline-offset: 0.22em;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--rust);
    outline-offset: 4px;
}

::selection {
    color: var(--ink);
    background: #e6c8b8;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    transform: translateY(-160%);
    border: 1px solid var(--ink);
    background: var(--surface);
    font-weight: 700;
    text-decoration: none;
}

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

.shell {
    width: min(100% - 3rem, 76rem);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    border-bottom: 1px solid rgba(216, 212, 200, 0.9);
    background: rgba(247, 244, 234, 0.96);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 76px;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 0.75rem;
    font-size: 1.08rem;
    font-weight: 760;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
}

.site-nav,
.site-footer nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.3vw, 2rem);
}

.site-nav a,
.site-footer nav a {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover,
.site-footer nav a:hover {
    color: var(--forest);
}

.site-nav a[aria-current="page"] {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--rust);
    text-decoration-thickness: 2px;
}

.header-action {
    justify-self: end;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid var(--forest);
    color: var(--forest);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(28rem, 0.98fr);
    align-items: center;
    min-height: min(850px, calc(100vh - 77px));
    padding-block: clamp(4.5rem, 8vw, 8rem);
    gap: clamp(3rem, 7vw, 7rem);
}

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

.eyebrow {
    margin: 0 0 1.25rem;
    color: var(--rust-text);
    font-family: var(--mono);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero h1,
h2,
.legal-document h1 {
    margin: 0;
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: -0.045em;
}

.hero h1 {
    max-width: 9.2ch;
    font-size: clamp(4rem, 7.4vw, 7.2rem);
    line-height: 0.91;
}

.hero h1::after {
    display: block;
    width: 1.15em;
    height: 5px;
    margin-top: 0.22em;
    transform: rotate(-2deg);
    border-radius: 99px;
    background: var(--rust);
    content: "";
}

.hero-lede {
    max-width: 38rem;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.55vw, 1.25rem);
    line-height: 1.65;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2rem;
    gap: 1.25rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.85rem 1.2rem;
    gap: 1.8rem;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.94rem;
    font-weight: 720;
    line-height: 1;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--forest);
    color: var(--white);
}

.button-primary:hover {
    background: var(--forest-dark);
}

.text-link,
.closing-link {
    color: var(--forest);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration-thickness: 1px;
}

.proof-list {
    display: flex;
    flex-wrap: wrap;
    margin: 2.5rem 0 0;
    padding: 1.15rem 0 0;
    border-top: 1px solid var(--rule);
    color: var(--muted);
    gap: 0.6rem 1.4rem;
    list-style: none;
}

.proof-list li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.78rem;
    font-weight: 620;
}

.proof-list li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--forest);
    content: "";
}

.field-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 590px;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid var(--rule);
    background: var(--paper-deep);
    isolation: isolate;
}

.field-stage::before,
.field-stage::after {
    position: absolute;
    z-index: -1;
    background: var(--rule);
    content: "";
}

.field-stage::before {
    top: 0;
    bottom: 0;
    left: 13%;
    width: 1px;
}

.field-stage::after {
    right: 0;
    bottom: 15%;
    left: 0;
    height: 1px;
}

.stage-caption {
    position: absolute;
    top: 1rem;
    right: 1.1rem;
    margin: 0;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field-note {
    position: relative;
    width: min(100%, 27rem);
    margin: 0;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    transform: rotate(-1.6deg);
    border: 1px solid var(--rule);
    border-left: 4px solid var(--rust);
    background: var(--surface);
    box-shadow: var(--shadow-note);
}

.field-note::after {
    position: absolute;
    right: 1.5rem;
    bottom: 1.4rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rust);
    content: "";
}

.note-meta,
.note-footer,
.dictionary-entry > header,
.analysis-card header,
.language-ledger header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.note-sentence {
    margin: 3.5rem 0 0;
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.note-translation {
    margin: 0.75rem 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.token-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 3.5rem 0 2.75rem;
    gap: 1rem;
}

.token-notes div {
    padding-top: 0.9rem;
    border-top: 2px solid var(--rust);
}

.token-notes dt {
    font-weight: 720;
}

.token-notes dd {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.note-footer {
    padding-top: 1rem;
    padding-right: 1rem;
    border-top: 1px solid var(--rule);
}

.kept-mark {
    color: var(--forest);
}

.margin-card {
    position: absolute;
    right: -1.5rem;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    width: 9rem;
    padding: 1rem;
    transform: rotate(3deg);
    border: 1px solid var(--rule);
    background: var(--paper);
    box-shadow: 0 12px 30px rgba(23, 32, 28, 0.08);
}

.margin-card span {
    color: var(--rust-text);
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.margin-card strong {
    margin-top: 0.4rem;
    font-family: var(--display);
    font-size: 1.15rem;
    line-height: 1.1;
}

.source-strip {
    border-block: 1px solid var(--rule);
    background: var(--surface);
}

.source-strip-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    min-height: 106px;
    gap: 2rem;
}

.source-strip p {
    max-width: 20rem;
    margin: 0;
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.25;
}

.source-strip ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.source-strip li {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1.25rem;
    border-left: 1px solid var(--rule);
    font-weight: 720;
}

.source-strip li span {
    color: var(--rust-text);
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 600;
}

.section {
    padding-block: clamp(6rem, 10vw, 10rem);
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
    align-items: end;
    margin-bottom: clamp(3.5rem, 6vw, 6rem);
    gap: 4rem;
}

h2 {
    max-width: 12ch;
    font-size: clamp(3rem, 5.8vw, 5.5rem);
    line-height: 0.98;
}

.section-intro > p,
.word-copy > p,
.review-copy > p,
.privacy-heading > p,
.analysis-copy > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

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

.method-step {
    display: grid;
    grid-template-columns: 5rem minmax(16rem, 0.9fr) minmax(20rem, 1.1fr);
    align-items: center;
    min-height: 190px;
    padding-block: 2.25rem;
    border-bottom: 1px solid var(--rule);
    gap: clamp(1.5rem, 4vw, 4rem);
}

.step-number,
.trust-number {
    align-self: start;
    color: var(--rust-text);
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.step-copy h3,
.trust-list h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.55rem, 2.2vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.step-copy p,
.trust-list p {
    max-width: 32rem;
    margin: 0.65rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.capture-sources {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--rule);
}

.capture-sources span {
    display: flex;
    align-items: center;
    min-height: 82px;
    padding: 0.8rem;
    gap: 0.8rem;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 650;
}

.capture-sources span + span {
    border-left: 1px solid var(--rule);
}

.capture-sources strong {
    color: var(--forest);
    font-family: var(--display);
    font-size: 1.25rem;
}

.mini-analysis,
.ledger-line {
    display: grid;
    grid-template-columns: minmax(5rem, auto) 1fr minmax(8rem, auto);
    align-items: center;
    min-height: 82px;
    padding-inline: 1rem;
    border-block: 1px solid var(--rule);
    gap: 1.25rem;
}

.mini-analysis span,
.ledger-line > span {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 600;
}

.mini-analysis i {
    height: 2px;
    background: var(--rust);
}

.mini-analysis small,
.ledger-line small {
    color: var(--muted);
    font-size: 0.75rem;
}

.ledger-line b {
    color: var(--forest);
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.review-rhythm {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    min-height: 82px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.67rem;
    font-weight: 650;
    text-transform: uppercase;
}

.review-rhythm i {
    height: 1px;
    background: var(--rule);
}

.review-rhythm span {
    padding: 0.65rem;
    border: 1px solid var(--rule);
    background: var(--paper);
}

.review-rhythm .active {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
}

.analysis-section {
    overflow: hidden;
    padding-block: clamp(6rem, 10vw, 10rem);
    background: var(--forest-dark);
    color: var(--white);
}

.analysis-grid {
    display: grid;
    grid-template-columns: minmax(20rem, 0.72fr) minmax(32rem, 1.28fr);
    align-items: center;
    gap: clamp(4rem, 9vw, 9rem);
}

.eyebrow-light {
    color: #e2ad92;
}

.analysis-copy h2 {
    max-width: 8ch;
}

.analysis-copy > p {
    max-width: 31rem;
    margin-top: 2rem;
    color: rgba(255, 253, 247, 0.72);
}

.tick-list {
    margin: 2.5rem 0 0;
    padding: 0;
    border-top: 1px solid rgba(255, 253, 247, 0.25);
    list-style: none;
}

.tick-list li {
    position: relative;
    padding: 0.9rem 0 0.9rem 1.75rem;
    border-bottom: 1px solid rgba(255, 253, 247, 0.18);
    color: rgba(255, 253, 247, 0.86);
    font-size: 0.9rem;
}

.tick-list li::before {
    position: absolute;
    left: 0;
    color: #e2ad92;
    content: "✓";
}

.phone-frame {
    width: min(100%, 40rem);
    margin-inline: auto;
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid rgba(255, 253, 247, 0.22);
    border-radius: 38px;
    background: var(--paper);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    color: var(--ink);
}

.phone-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.4rem 0.75rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.phone-topbar span:nth-child(2) {
    font-size: 0.9rem;
}

.phone-topbar span:last-child {
    justify-self: end;
    letter-spacing: 0.15em;
}

.analysis-card {
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--rust);
    background: var(--surface);
}

.analysis-sentence {
    margin: 3rem 0 0;
    font-family: var(--display);
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.analysis-sentence mark {
    position: relative;
    color: inherit;
    background: none;
}

.analysis-sentence mark::after {
    position: absolute;
    right: 0;
    bottom: -0.12em;
    left: 0;
    height: 3px;
    border-radius: 10px;
    background: var(--rust);
    content: "";
}

.analysis-translation {
    margin: 1.25rem 0 0;
    color: var(--muted);
}

.word-picks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-inline: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.word-picks > div {
    display: flex;
    flex-direction: column;
    min-height: 130px;
    padding: 1.2rem;
}

.word-picks > div + div {
    border-left: 1px solid var(--rule);
}

.pick-state {
    color: var(--forest);
    font-family: var(--mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.word-picks strong {
    margin-top: 1.25rem;
    font-family: var(--display);
    font-size: 1.35rem;
}

.word-picks small {
    color: var(--muted);
}

.phone-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    margin-top: 1rem;
    padding-inline: 1rem;
    border-radius: 9px;
    background: var(--forest);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
}

.word-section {
    display: grid;
    grid-template-columns: minmax(19rem, 0.75fr) minmax(30rem, 1.25fr);
    align-items: center;
    gap: clamp(4rem, 9vw, 9rem);
}

.word-copy h2 {
    max-width: 9ch;
}

.word-copy > p {
    max-width: 32rem;
    margin-top: 2rem;
}

.detail-index {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2.5rem;
    border-top: 1px solid var(--rule);
}

.detail-index span {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rule);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dictionary-entry {
    margin: 0;
    padding: clamp(1.75rem, 5vw, 3.5rem);
    border: 1px solid var(--rule);
    background: var(--surface);
    box-shadow: var(--shadow-note);
}

.entry-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 3.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 3px solid var(--rust);
    gap: 1rem;
}

.entry-heading h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.9;
}

.entry-heading span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.67rem;
    text-transform: uppercase;
}

.entry-definition {
    margin: 1.25rem 0 3.5rem;
    color: var(--muted);
    font-size: 1.1rem;
}

.entry-context {
    padding-left: 1.25rem;
    border-left: 3px solid var(--forest);
}

.entry-context > span {
    color: var(--forest);
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.entry-context blockquote {
    display: flex;
    flex-direction: column;
    margin: 0.65rem 0 0;
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 600;
}

.entry-context small {
    margin-top: 0.3rem;
    color: var(--muted);
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 400;
}

.entry-forms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 3rem 0 0;
    border-top: 1px solid var(--rule);
}

.entry-forms div {
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
}

.entry-forms div + div {
    padding-left: 1.5rem;
    border-left: 1px solid var(--rule);
}

.entry-forms dt {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.6rem;
    text-transform: uppercase;
}

.entry-forms dd {
    margin: 0.3rem 0 0;
    font-weight: 680;
}

.review-section {
    padding-block: clamp(6rem, 10vw, 10rem);
    border-block: 1px solid var(--rule);
    background: var(--paper-deep);
}

.review-grid {
    display: grid;
    grid-template-columns: minmax(20rem, 0.8fr) minmax(30rem, 1.2fr);
    align-items: center;
    gap: clamp(4rem, 9vw, 9rem);
}

.review-copy h2 {
    max-width: 8ch;
}

.review-copy > p {
    max-width: 32rem;
    margin-top: 2rem;
}

.review-board {
    border: 1px solid var(--rule);
    background: var(--surface);
}

.review-board > header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--rule);
}

.review-board > header span {
    color: var(--rust-text);
    font-family: var(--mono);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-board > header strong {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    line-height: 1;
}

.review-card-row {
    display: grid;
    grid-template-columns: 2.5rem 1fr auto;
    align-items: center;
    min-height: 88px;
    padding-inline: 1.5rem;
    border-bottom: 1px solid var(--rule);
    gap: 1rem;
}

.review-card-row > span {
    color: var(--rust-text);
    font-family: var(--mono);
    font-size: 0.65rem;
}

.review-card-row div {
    display: flex;
    flex-direction: column;
}

.review-card-row strong {
    font-family: var(--display);
    font-size: 1.25rem;
}

.review-card-row small,
.review-card-row b {
    color: var(--muted);
    font-size: 0.72rem;
}

.review-card-row b {
    font-family: var(--mono);
    font-weight: 600;
    text-transform: uppercase;
}

.review-card-row.current {
    border-left: 3px solid var(--forest);
}

.review-card-row.current b {
    color: var(--forest);
}

.review-board > footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding-inline: 1.5rem;
    background: var(--forest);
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
}

.language-intro h2 {
    max-width: 15ch;
}

.language-ledger {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.language-ledger > div {
    min-height: 430px;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.language-ledger > div + div {
    border-left: 1px solid var(--rule);
}

.language-ledger header {
    align-items: flex-start;
}

.language-ledger header strong {
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.8;
}

.language-ledger ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 3.5rem 0 0;
    padding: 0;
    list-style: none;
}

.language-ledger li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rule);
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 600;
}

.language-ledger li:nth-child(odd) {
    padding-right: 1rem;
}

.language-ledger li:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--rule);
}

.language-ledger > div > p {
    max-width: 31rem;
    margin: 3.5rem 0 0;
    color: var(--muted);
}

.language-sample {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2.25rem;
    gap: 0.5rem;
}

.language-sample span {
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--rule);
    background: var(--surface);
    font-family: var(--display);
    font-size: 0.92rem;
}

.privacy-section {
    padding-block: clamp(6rem, 10vw, 10rem);
}

.privacy-heading {
    display: grid;
    grid-template-columns: minmax(20rem, 1fr) minmax(18rem, 0.55fr);
    align-items: end;
    gap: 4rem;
}

.privacy-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -2rem;
}

.privacy-heading h2 {
    max-width: 10ch;
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(3.5rem, 7vw, 6rem);
    border-block: 1px solid var(--ink);
}

.trust-list article {
    min-height: 275px;
    padding: 2rem;
}

.trust-list article + article {
    border-left: 1px solid var(--rule);
}

.trust-list h3 {
    margin-top: 3.25rem;
    font-size: 1.55rem;
}

.privacy-link {
    display: inline-block;
    margin-top: 2rem;
}

.closing-section {
    padding-block: clamp(6rem, 10vw, 10rem);
    background: var(--forest-dark);
    color: var(--white);
}

.closing-inner {
    position: relative;
}

.closing-inner::after {
    position: absolute;
    right: 0;
    bottom: 0.25rem;
    width: clamp(7rem, 18vw, 14rem);
    height: 5px;
    transform: rotate(-2deg);
    border-radius: 99px;
    background: var(--rust);
    content: "";
}

.closing-inner h2 {
    max-width: 11ch;
    font-size: clamp(3.5rem, 7vw, 7rem);
}

.closing-inner > p:not(.eyebrow) {
    max-width: 36rem;
    margin: 2rem 0 0;
    color: rgba(255, 253, 247, 0.72);
    font-size: 1.08rem;
}

.button-paper {
    background: var(--surface);
    color: var(--forest-dark);
}

.button-paper:hover {
    background: var(--paper-deep);
}

.closing-link {
    color: var(--white);
}

.site-footer {
    padding-block: 3.5rem;
    border-top: 1px solid var(--rule);
    background: var(--paper);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 2rem;
}

.footer-brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.footer-grid > div > p {
    max-width: 23rem;
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.copyright {
    grid-column: 1 / -1;
    margin: 1.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Legal and support pages */
.legal-main {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-document {
    max-width: 52rem;
    margin-inline: auto;
    padding: clamp(1.5rem, 5vw, 4rem);
    border: 1px solid var(--rule);
    background: var(--surface);
}

.legal-document h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.96;
}

.legal-document h2 {
    max-width: none;
    margin-top: 3.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    font-family: var(--display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.025em;
}

.legal-document p,
.legal-document li {
    color: #3f4944;
}

.legal-document .lede {
    color: var(--muted);
    font-size: 1.1rem;
}

.legal-document li {
    margin-bottom: 0.65rem;
}

.legal-document a {
    color: var(--forest);
    font-weight: 650;
}

.meta {
    margin: 1rem 0 3rem;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 68rem) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .site-nav {
        justify-self: center;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-copy {
        max-width: 46rem;
    }

    .hero h1 {
        max-width: 10ch;
    }

    .field-stage {
        width: min(100%, 42rem);
        min-height: 570px;
        margin-inline: auto;
    }

    .method-step {
        grid-template-columns: 3rem minmax(15rem, 0.8fr) minmax(18rem, 1.2fr);
    }

    .analysis-grid,
    .word-section,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .analysis-copy,
    .word-copy,
    .review-copy {
        max-width: 42rem;
    }

    .analysis-copy h2,
    .word-copy h2,
    .review-copy h2 {
        max-width: 10ch;
    }

    .phone-frame,
    .dictionary-entry,
    .review-board {
        width: min(100%, 42rem);
        margin-inline: auto;
    }
}

@media (max-width: 52rem) {
    .header-inner {
        grid-template-columns: 1fr auto;
        min-height: 68px;
        gap: 1rem;
    }

    .site-nav {
        display: none;
    }

    .header-action {
        font-size: 0.62rem;
    }

    .source-strip-inner,
    .section-intro,
    .privacy-heading {
        grid-template-columns: 1fr;
    }

    .source-strip-inner {
        padding-block: 1.5rem;
    }

    .source-strip ul {
        width: 100%;
    }

    .source-strip li:first-child {
        border-left: 0;
    }

    .section-intro,
    .privacy-heading {
        align-items: start;
        gap: 2rem;
    }

    .privacy-heading .eyebrow {
        margin-bottom: -0.5rem;
    }

    .method-step {
        grid-template-columns: 2.5rem 1fr;
        min-height: 0;
    }

    .method-step > :last-child {
        grid-column: 2;
    }

    .language-ledger,
    .trust-list {
        grid-template-columns: 1fr;
    }

    .language-ledger > div {
        min-height: 0;
    }

    .language-ledger > div + div,
    .trust-list article + article {
        border-top: 1px solid var(--rule);
        border-left: 0;
    }

    .trust-list article {
        min-height: 0;
    }

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

    .site-footer nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 38rem) {
    .shell {
        width: min(100% - 2rem, 76rem);
    }

    body {
        font-size: 16px;
    }

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

    .header-action {
        max-width: 8rem;
        text-align: right;
    }

    .hero {
        padding-block: 3.5rem 5rem;
        gap: 3.5rem;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 18vw, 4.8rem);
    }

    .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        justify-content: space-between;
        width: 100%;
    }

    .proof-list {
        flex-direction: column;
    }

    .field-stage {
        min-height: 500px;
        padding: 2.5rem 1rem;
    }

    .field-note {
        transform: rotate(-0.6deg);
    }

    .note-sentence {
        margin-top: 2.5rem;
    }

    .token-notes {
        margin-top: 2.5rem;
    }

    .margin-card {
        right: -0.6rem;
        bottom: 1.25rem;
    }

    .source-strip ul {
        grid-template-columns: 1fr 1fr;
    }

    .source-strip li:nth-child(3) {
        border-left: 0;
    }

    .source-strip li:nth-child(n + 3) {
        border-top: 1px solid var(--rule);
    }

    h2 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .section,
    .analysis-section,
    .review-section,
    .privacy-section,
    .closing-section {
        padding-block: 5rem;
    }

    .method-step {
        grid-template-columns: 2rem 1fr;
        padding-block: 2rem;
        gap: 1rem;
    }

    .method-step > :last-child {
        grid-column: 1 / -1;
    }

    .capture-sources span {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .mini-analysis,
    .ledger-line {
        grid-template-columns: 1fr auto;
    }

    .mini-analysis i,
    .ledger-line small {
        display: none;
    }

    .analysis-grid,
    .word-section,
    .review-grid {
        gap: 3rem;
    }

    .phone-frame {
        padding: 0.8rem;
        border-radius: 25px;
    }

    .word-picks {
        grid-template-columns: 1fr;
    }

    .word-picks > div + div {
        border-top: 1px solid var(--rule);
        border-left: 0;
    }

    .entry-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .entry-forms {
        grid-template-columns: 1fr;
    }

    .entry-forms div + div {
        padding-left: 0;
        border-left: 0;
    }

    .review-card-row {
        grid-template-columns: 2rem 1fr;
    }

    .review-card-row b {
        grid-column: 2;
    }

    .language-ledger ul {
        grid-template-columns: 1fr;
    }

    .language-ledger li:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

    .closing-inner::after {
        display: none;
    }

    .legal-main {
        padding-block: 1rem 4rem;
    }

    .legal-document {
        margin-inline: -0.25rem;
    }
}

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

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