:root {
    --field-green: #0f766e;
    --field-green-strong: #0b5e57;
    --deep-green: #102b28;
    --ink: #ecf1ed;
    --muted: #b8c4ba;
    --paper: #0f1d1c;
    --line: rgba(231, 188, 89, 0.16);
    --gold: #d9b25a;
    --success: rgba(33, 79, 66, 0.92);
    --warning: rgba(78, 62, 28, 0.92);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 8%, rgba(217, 178, 90, 0.14), transparent 24rem),
        radial-gradient(circle at 84% 0%, rgba(15, 118, 110, 0.20), transparent 22rem),
        linear-gradient(135deg, #10211f, #132725 48%, #1a231b);
}

a {
    color: #9ee0cd;
    font-weight: 700;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.page {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 40px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 42px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #f4ecd2;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    padding: 3px;
    overflow: hidden;
    border-radius: 12px;
    background: #097e41;
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 13px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 34px;
    align-items: center;
}

.card,
.side-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(25, 49, 44, 0.94), rgba(16, 34, 32, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.card {
    padding: clamp(28px, 5vw, 56px);
    position: relative;
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border: 34px solid rgba(217, 178, 90, 0.08);
    border-radius: 50%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(217, 178, 90, 0.12);
    color: #efd79b;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 0.92;
    letter-spacing: -0.07em;
    color: #f7f1db;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

h2,
h3 {
    color: #f2e7c5;
    letter-spacing: -0.03em;
}

.lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: #dfe7e0;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    font-family: Verdana, Geneva, sans-serif;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(15, 118, 110, 0.22);
    background: linear-gradient(145deg, var(--field-green), var(--field-green-strong));
    color: #f8faf7;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.24);
}

.button.secondary {
    background: rgba(217, 178, 90, 0.12);
    color: #f0ddb0;
    border-color: rgba(217, 178, 90, 0.22);
    box-shadow: none;
}

.button.secondary:hover {
    background: rgba(217, 178, 90, 0.18);
    text-decoration: none;
}

.side-card {
    padding: 24px;
}

.meter {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #0f3130 0%, #0c2525 100%);
    color: #fff;
    font-family: Verdana, Geneva, sans-serif;
}

.meter strong {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.meter-bar {
    height: 11px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.meter-bar span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), #7ddf95);
}

.feature-list,
.policy-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    color: #d4ddd5;
}

.feature-list li,
.policy-list li {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.notice,
.note,
.success {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    line-height: 1.55;
}

.notice {
    border-left: 4px solid var(--gold);
    background: rgba(86, 67, 30, 0.30);
    color: #ead8ac;
}

.note {
    border: 1px solid rgba(15, 118, 110, 0.14);
    background: rgba(18, 55, 49, 0.85);
    color: #cfe9df;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
}

.success {
    border-left: 4px solid var(--field-green);
    background: var(--success);
    color: #d7ede4;
}

.content {
    display: grid;
    gap: 24px;
}

.section-card {
    padding: 28px;
}

.grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.plan-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.plan-card.featured {
    border-color: rgba(15, 118, 110, 0.28);
    box-shadow: 0 16px 36px rgba(15, 118, 110, 0.14);
}

.plan-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.price {
    margin: 0 0 12px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #f3e0aa;
}

.price small {
    font-size: 12px;
    color: #b8c4ba;
}

.muted {
    color: #c3cec5;
}

.legal-copy {
    display: grid;
    gap: 16px;
    color: #d6dfd7;
    line-height: 1.7;
}

.legal-copy p,
.legal-copy li {
    margin: 0;
}

.legal-copy ul {
    margin: 0;
    padding-left: 18px;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #b8c4ba;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
}

@media (max-width: 780px) {
    .topbar,
    .hero {
        display: block;
    }

    .nav {
        justify-content: flex-start;
        margin-top: 18px;
    }

    .side-card {
        margin-top: 18px;
    }

    .section-card {
        padding: 22px;
    }
}
