:root {
    color-scheme: light;
    --bg: #f2efe7;
    --panel: #fffdf8;
    --panel-strong: #111827;
    --text: #192235;
    --muted: #667085;
    --line: #ddd5c8;
    --accent: #0f766e;
    --accent-strong: #115e59;
    --accent-soft: #dff7f3;
    --gold: #c98213;
    --danger-soft: #fff1f2;
    --danger: #be123c;
    --shadow: rgba(25, 34, 53, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(15, 118, 110, 0.17), transparent 30%),
        radial-gradient(circle at 86% 0%, rgba(201, 130, 19, 0.14), transparent 28%),
        linear-gradient(180deg, #fbfaf5 0%, var(--bg) 100%);
    line-height: 1.65;
}

a {
    color: var(--accent-strong);
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 52px 20px 72px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #134e4a);
    box-shadow: 0 8px 22px rgba(15, 118, 110, 0.22);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
    font-size: 0.94rem;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.hero,
.card,
.notice {
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--line);
    box-shadow: 0 18px 55px var(--shadow);
    backdrop-filter: blur(8px);
}

.hero {
    border-radius: 32px;
    padding: clamp(28px, 5vw, 46px);
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(201, 130, 19, 0.16));
    pointer-events: none;
}

.card,
.notice {
    border-radius: 24px;
    padding: 28px;
}

.notice {
    margin-top: 24px;
    background: rgba(223, 247, 243, 0.75);
}

.notice.warning {
    background: var(--danger-soft);
    border-color: rgba(190, 18, 60, 0.22);
}

.hero-copy {
    max-width: 790px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 16px;
}

h1,
h2,
h3 {
    line-height: 1.12;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.15rem, 6vw, 4.3rem);
}

h2 {
    font-size: 1.32rem;
}

h3 {
    font-size: 1.05rem;
    margin-top: 24px;
}

.stacked h2 {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

p,
ul,
ol {
    margin: 0 0 16px;
}

ul,
ol {
    padding-left: 22px;
}

li + li {
    margin-top: 6px;
}

.muted,
.meta,
.micro-note,
footer {
    color: var(--muted);
}

.meta {
    margin-bottom: 24px;
}

.actions,
.grid,
.feature-list,
.table-grid {
    display: grid;
    gap: 16px;
}

.actions {
    margin-top: 30px;
}

.primary-action {
    display: flex;
    justify-content: flex-start;
}

.secondary-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 14px;
}

.grid {
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    margin-top: 24px;
}

.feature-list {
    margin-top: 24px;
}

.feature-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
}

.feature-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid rgba(15, 118, 110, 0.22);
    position: relative;
    top: 4px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
}

.legal-links a,
.secondary-link {
    color: var(--accent-strong);
    text-decoration: none;
    font-weight: 800;
}

.secondary-link {
    display: inline-block;
    margin-bottom: 24px;
}

.button,
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
}

.button {
    border: 1px solid var(--line);
    color: var(--text);
    background: #fff;
}

.button.primary,
.cta {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 7px 11px;
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--accent-strong);
    margin: 4px 6px 4px 0;
}

.table-grid {
    grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1.2fr) minmax(220px, 1.2fr);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    gap: 0;
    margin: 18px 0;
}

.table-grid > div {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.table-grid > div:nth-child(3n+1) {
    font-weight: 800;
    background: #fbfaf5;
}

.table-grid > div:nth-last-child(-n+3) {
    border-bottom: 0;
}

.micro-note {
    margin-top: 18px;
    font-size: 0.95rem;
}

footer {
    margin-top: 30px;
    font-size: 0.95rem;
}

@media (max-width: 760px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .secondary-actions,
    .table-grid {
        grid-template-columns: 1fr;
    }

    .table-grid > div,
    .table-grid > div:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--line);
    }

    .hero,
    .card,
    .notice {
        padding: 24px;
    }
}
