:root {
    --ink: #17332f;
    --muted: #65736e;
    --paper: #f6f4ee;
    --surface: #fffdf8;
    --line: #d9ded5;
    --accent: #d96745;
    --accent-dark: #b84e31;
    --sage: #dfe9dd;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header,
.site-footer,
main {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 750;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.85rem;
}

nav,
.site-footer span:last-child {
    display: flex;
    gap: 22px;
}

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

.signup-button {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
    color: var(--muted);
    cursor: not-allowed;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.85;
}

.signup-button span {
    margin-left: 5px;
    color: var(--accent-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

nav a:hover,
.site-footer a:hover,
.text-link:hover {
    color: var(--accent-dark);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: clamp(40px, 8vw, 110px);
    align-items: center;
    min-height: 610px;
    padding: 72px 0 104px;
}

.eyebrow {
    margin: 0 0 15px;
    color: var(--accent-dark);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 680px;
    margin-bottom: 24px;
    font-size: clamp(3.4rem, 8vw, 6.6rem);
    font-weight: 650;
    letter-spacing: -0.075em;
    line-height: 0.96;
}

.hero-text {
    max-width: 530px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 1.1rem;
}

.primary-button {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    padding: 14px 20px;
    border-radius: 4px;
    background: var(--accent);
    color: #fffaf1;
    font-weight: 700;
    text-decoration: none;
    transition: background 150ms ease, transform 150ms ease;
}

.primary-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.hero-card {
    position: relative;
    min-height: 390px;
    padding: 42px;
    border-radius: 180px 28px 28px 28px;
    background: var(--sage);
    box-shadow: 18px 18px 0 rgba(23, 51, 47, 0.08);
}

.signal-dot {
    width: 13px;
    height: 13px;
    margin-bottom: 105px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(217, 103, 69, 0.15);
}

.card-label,
.card-note {
    color: var(--muted);
    font-size: 0.85rem;
}

.card-quote {
    max-width: 260px;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.card-rule {
    width: 50px;
    height: 3px;
    margin-bottom: 17px;
    background: var(--accent);
}

.proof-strip {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
    padding: 35px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.counter-value {
    margin-bottom: -8px;
    font-size: 3.4rem;
    font-weight: 650;
    letter-spacing: -0.07em;
    line-height: 1;
}

.counter-label {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.proof-copy {
    max-width: 380px;
    margin-bottom: 3px;
    color: var(--muted);
}

.content-section {
    padding: 125px 0;
}

.section-heading {
    max-width: 520px;
    margin-bottom: 50px;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    letter-spacing: -0.065em;
    line-height: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card,
.content-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
}

.feature-number {
    display: block;
    margin-bottom: 55px;
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 800;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.legal-page {
    max-width: 720px;
    padding: 90px 0 130px;
}

.legal-page h1 {
    margin-bottom: 10px;
    font-size: clamp(3rem, 7vw, 5.6rem);
}

.legal-date {
    margin-bottom: 70px;
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-page h2 {
    margin: 42px 0 10px;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.legal-page p {
    color: var(--muted);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
}

@media (max-width: 720px) {
    .site-header,
    .site-footer,
    main {
        width: min(100% - 28px, 1120px);
    }

    .site-header {
        padding: 20px 0;
    }

    .hero {
        display: block;
        min-height: auto;
        padding: 70px 0 85px;
    }

    h1 {
        font-size: clamp(3.2rem, 17vw, 5.5rem);
    }

    .hero-card {
        min-height: 310px;
        margin-top: 70px;
        padding: 30px;
        border-radius: 120px 22px 22px 22px;
    }

    .signal-dot {
        margin-bottom: 65px;
    }

    .proof-strip,
    .site-footer {
        display: block;
    }

    .proof-copy {
        margin-top: 25px;
    }

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

    .feature-number {
        margin-bottom: 30px;
    }

    .content-section {
        padding: 85px 0;
    }

    .site-footer span:last-child {
        margin-top: 12px;
    }
}
