﻿@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --ink: #11110f;
    --muted: #5a5a52;
    --sand: #f5f1ea;
    --mint: #d9f2e1;
    --sage: #2b5f4a;
    --rose: #f6d6c9;
    --coal: #1b1a18;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body.landing {
    margin: 0;
    font-family: "Space Grotesk", "Helvetica Neue", "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(1200px 600px at 10% -10%, #fbe9dd 0%, transparent 55%),
                radial-gradient(900px 500px at 90% 10%, #d9f2e1 0%, transparent 60%),
                var(--sand);
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

.landing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 8%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.brand-mark {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: inline-block;
    background-color: var(--sage);
    -webkit-mask-image: url("/assets/images/logo.png?v=20260130");
    mask-image: url("/assets/images/logo.png?v=20260130");
    -webkit-mask-mode: alpha;
    mask-mode: alpha;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.brand-name {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: var(--sage);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(43, 95, 74, 0.25);
}

.btn.secondary {
    background: var(--coal);
    color: var(--white);
}

.btn.ghost {
    border-color: rgba(27, 26, 24, 0.2);
}

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

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 50px;
    padding: 40px 8% 20px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--sage);
    font-weight: 700;
}

.hero h1 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 64px);
    margin: 14px 0 12px;
}

.lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.prompt-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.prompt-pill {
    padding: 8px 12px;
    background: var(--white);
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 500;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-card-top {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--sage);
    font-weight: 600;
    font-size: 12px;
}

.chip.outline {
    background: transparent;
    border: 1px solid rgba(43, 95, 74, 0.3);
}

.question {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px;
}

.answer {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.big-number {
    font-size: 46px;
    font-weight: 700;
    color: var(--coal);
}

.caption {
    color: var(--muted);
    font-size: 14px;
}

.sparkline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    height: 70px;
    align-items: end;
    margin-bottom: 16px;
}

.sparkline span {
    display: block;
    width: 100%;
    background: var(--rose);
    border-radius: 6px;
}

.mini-table {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 12px;
}

.mini-table .row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--muted);
    padding: 6px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 40px 8%;
}

.value-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-height: 150px;
}

.value-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.how-it-works {
    padding: 20px 8% 60px;
}

.how-header h2 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: clamp(28px, 3.2vw, 40px);
    margin-bottom: 8px;
}

.how-header p {
    color: var(--muted);
    margin-top: 0;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.step {
    background: var(--white);
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.step-number {
    color: var(--sage);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.4px;
}

.step h4 {
    margin: 8px 0 8px;
    font-size: 18px;
}

.step p {
    margin: 0;
    color: var(--muted);
}

.closing {
    padding: 20px 8% 80px;
}

.info-section {
    padding: 0 8% 90px;
}

.info-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.info-copy h2 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 36px);
    margin-top: 0;
}

.info-copy p {
    color: var(--muted);
    line-height: 1.6;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.info-list li::before {
    content: "â€¢";
    color: var(--sage);
    display: inline-block;
    margin-right: 10px;
}

.info-form {
    display: grid;
    gap: 14px;
}

.info-form label {
    font-size: 13px;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

.info-form input,
.info-form textarea {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    background: #fbfaf7;
}

.info-form textarea {
    resize: vertical;
    min-height: 110px;
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

.closing-card {
    background: var(--coal);
    color: var(--white);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.closing-card h2 {
    margin: 0;
    font-size: 30px;
}

.closing-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

.landing-footer {
    display: flex;
    justify-content: space-between;
    padding: 24px 8% 40px;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .value-grid,
    .how-steps {
        grid-template-columns: 1fr;
    }
    .landing-header {
        flex-direction: column;
        gap: 16px;
    }
    .landing-footer {
        flex-direction: column;
        gap: 10px;
    }
    .info-card {
        grid-template-columns: 1fr;
    }
}







