*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --bg: #fafaf9;
    --bg2: #f3f2f0;
    --bg3: #eceae7;
    --border: #e4e3e0;
    --border2: #cccac6;
    --text: #111110;
    --text2: #706e6a;
    --text3: #b3b1ac;
    --green: #2d6a4f;
    --green-deep: #1f4d39;
    --green-bg: #f0faf5;
    --green-bd: #b6e0cc;
    --sans: "Inter", sans-serif;
    --serif: "Fraunces", Georgia, serif;
}
::selection {
    background: var(--green);
    color: var(--bg);
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--text);
}
.muted {
    color: var(--text2);
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 56px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: rgba(250, 250, 249, 0.92);
    backdrop-filter: blur(12px);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.logo-img {
    width: 26px;
    height: 26px;
    image-rendering: pixelated;
}
.nav-links {
    display: flex;
    gap: 24px;
}
.nav-links a {
    font-size: 13px;
    color: var(--text2);
    transition: color 0.15s;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    border: 1px solid var(--border2);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.15s;
}
.nav-cta:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

main {
    flex: 1;
    padding: 72px 48px 80px;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.page-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    margin-bottom: 16px;
}
.page-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4.4vw, 44px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-bottom: 12px;
}
.page-lead {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 560px;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    border: 1px solid var(--green-bd);
    background: var(--green-bg);
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
}
.success-badge svg {
    flex-shrink: 0;
}

.steps-card {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg2);
}
.steps-card li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--text2);
    line-height: 1.5;
}
.step-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-copy strong {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 2px;
}

.note-box {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 28px;
}
.note-box strong {
    color: var(--text);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.15s, background 0.15s;
}
.btn-primary {
    background: var(--green);
    color: #fff;
    border: 1px solid var(--green);
    box-shadow: 0 2px 10px rgba(45, 106, 79, 0.18);
}
.btn-primary:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: #fff;
}
.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border2);
}
.btn-secondary:hover {
    background: var(--bg2);
}

/* Privacy policy */
.policy h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 32px 0 10px;
}
.policy h2:first-of-type {
    margin-top: 0;
}
.policy p,
.policy li {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 12px;
}
.policy ul {
    margin: 0 0 12px 20px;
}
.policy li {
    margin-bottom: 6px;
}
.policy a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.policy .updated {
    font-size: 12px;
    color: var(--text3);
    margin-bottom: 24px;
}

footer {
    padding: 24px 48px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.flogo {
    font-size: 14px;
    font-weight: 700;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 8px;
}
.flogo img {
    width: 20px;
    height: 20px;
    image-rendering: pixelated;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    font-size: 12px;
    color: var(--text3);
}
.footer-links a:hover {
    color: var(--text);
}
.fnote {
    font-size: 11px;
    color: var(--text3);
    margin-left: auto;
}

@media (max-width: 640px) {
    nav {
        padding: 0 20px;
    }
    .nav-links {
        display: none;
    }
    main {
        padding: 48px 20px 64px;
    }
    footer {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .fnote {
        margin-left: 0;
    }
}
