:root {
    --ink: #102522;
    --ink-soft: #536863;
    --green-950: #062f2b;
    --green-900: #083b35;
    --green-800: #0b4c43;
    --green-700: #0e6557;
    --green-600: #16806e;
    --mint-100: #dff5ed;
    --mint-50: #f0faf6;
    --cream: #fbfaf5;
    --white: #ffffff;
    --gold: #efb73e;
    --coral: #eb765f;
    --line: #dce7e3;
    --danger: #b42318;
    --danger-bg: #fff3f1;
    --shadow-sm: 0 10px 30px rgba(6, 47, 43, 0.08);
    --shadow-lg: 0 28px 80px rgba(4, 38, 34, 0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    color: var(--white);
    background: var(--green-700);
}

img,
svg {
    display: block;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--green-950);
    border-radius: 8px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 20;
    color: var(--green-950);
    background: #f9fcfb;
    border-bottom: 1px solid #dce9e5;
    box-shadow: 0 6px 24px rgba(6, 47, 43, 0.06);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 136px;
    gap: 24px;
}

.header-inner > .button-small {
    position: absolute;
    right: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    text-decoration: none;
}

.brand-logo {
    width: auto;
    max-width: 290px;
    height: 90px;
    object-fit: contain;
}

.brand-logo:not([hidden]) + .brand-wordmark {
    display: none;
}

.brand-wordmark {
    color: currentColor;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -1.6px;
}

.brand-wordmark span {
    color: #56d5aa;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(239, 183, 62, 0.75);
    outline-offset: 3px;
}

.button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-primary {
    color: var(--white);
    background: var(--green-700);
    box-shadow: 0 12px 26px rgba(14, 101, 87, 0.22);
}

.button-primary:hover {
    background: var(--green-800);
    box-shadow: 0 16px 34px rgba(14, 101, 87, 0.28);
}

.button-ghost {
    color: var(--green-800);
    border-color: #b9d0ca;
    background: var(--mint-50);
}

.button-ghost:hover {
    border-color: var(--green-600);
    background: var(--mint-100);
}

.button-small {
    min-height: 42px;
    padding: 9px 17px;
    border-radius: 11px;
    font-size: 14px;
}

.button-full {
    width: 100%;
}

.button-light {
    color: var(--green-950);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.button-light:hover {
    background: var(--mint-50);
}

.hero {
    position: relative;
    min-height: 690px;
    padding: 64px 0 78px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 10% 20%, rgba(29, 151, 126, 0.25), transparent 35%),
        linear-gradient(135deg, var(--green-950) 0%, #073d36 55%, #0b5448 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-orb {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.hero-orb-one {
    width: 360px;
    height: 360px;
    top: 90px;
    left: -210px;
}

.hero-orb-two {
    width: 520px;
    height: 520px;
    right: -300px;
    bottom: -250px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.07fr) minmax(420px, 0.93fr);
    align-items: center;
    gap: clamp(58px, 8vw, 112px);
}

.hero-copy {
    padding: 24px 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
    gap: 10px;
    color: #8ce3c4;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 22px;
    height: 2px;
    background: currentColor;
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.hero h1 em {
    display: block;
    color: #6dd8b3;
    font-style: normal;
}

.hero-lead {
    max-width: 620px;
    margin: 28px 0 30px;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.65;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 650;
}

.hero-highlights svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #72dcb8;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.launch-note {
    display: flex;
    max-width: 590px;
    margin-top: 32px;
    padding: 15px 17px;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.launch-note-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    color: var(--green-950);
    background: #78dcb9;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
    font-family: Georgia, serif;
}

.launch-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.55;
}

.signup-card {
    padding: clamp(28px, 3.8vw, 42px);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.card-heading {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--green-700);
    background: var(--mint-100);
    border-radius: 15px;
}

.card-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eyebrow-card {
    margin: 0 0 3px;
    color: var(--green-700);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.card-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(23px, 2.5vw, 29px);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.card-intro {
    margin: 18px 0 25px;
    color: var(--ink-soft);
    font-size: 14px;
}

.signup-form {
    display: grid;
    gap: 17px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field-group {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.field-group label {
    margin-bottom: 7px;
    color: #2e4742;
    font-size: 13px;
    font-weight: 750;
}

.field-group input {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    border: 1px solid #cfdeda;
    border-radius: var(--radius-sm);
    background: #fcfefd;
    box-shadow: 0 1px 0 rgba(6, 47, 43, 0.02);
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field-group input::placeholder {
    color: #91a19d;
}

.field-group input:hover {
    border-color: #a9c2bb;
}

.field-group input:focus {
    border-color: var(--green-600);
    outline: 0;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(22, 128, 110, 0.12);
}

.field-group input[aria-invalid="true"] {
    border-color: #d92d20;
    background: #fffafa;
}

.field-hint {
    margin-top: 5px;
    color: #748681;
    font-size: 11px;
}

.field-error {
    min-height: 0;
    margin-top: 5px;
    color: var(--danger);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.field-error:empty {
    display: none;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 19px 1fr;
    align-items: start;
    gap: 10px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    accent-color: var(--green-700);
}

.checkbox-group label {
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.55;
}

.checkbox-group a {
    color: var(--green-700);
    font-weight: 750;
}

.checkbox-group.has-error label {
    color: var(--danger);
}

.checkbox-error {
    margin-top: -12px;
    padding-left: 29px;
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -3px 0 0;
    gap: 7px;
    color: #748681;
    font-size: 11px;
    text-align: center;
}

.form-privacy svg {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--green-600);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-status {
    min-height: 0;
    color: var(--ink-soft);
    font-size: 12px;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.alert {
    display: grid;
    padding: 13px 15px;
    border: 1px solid;
    border-radius: var(--radius-sm);
    font-size: 13px;
    line-height: 1.45;
}

.alert-error {
    color: #8a1c13;
    border-color: #f2b8b2;
    background: var(--danger-bg);
}

.value-section {
    padding: 105px 0 115px;
    background: var(--cream);
}

.section-heading {
    max-width: 680px;
    margin: 0 auto 55px;
    text-align: center;
}

.eyebrow-dark {
    justify-content: center;
    margin-bottom: 15px;
    color: var(--green-700);
}

.section-heading h2,
.closing-cta h2 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(34px, 4vw, 50px);
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-heading > p:last-child {
    max-width: 560px;
    margin: 18px auto 0;
    color: var(--ink-soft);
    font-size: 18px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.value-card {
    position: relative;
    min-height: 318px;
    padding: 34px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e3ebe8;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 46px rgba(6, 47, 43, 0.12);
}

.value-number {
    position: absolute;
    top: 24px;
    right: 27px;
    color: #e4eeeb;
    font-size: 42px;
    font-weight: 850;
    letter-spacing: -0.06em;
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 34px;
    border-radius: 16px;
}

.value-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-icon-mint {
    color: var(--green-700);
    background: var(--mint-100);
}

.value-icon-gold {
    color: #9b6800;
    background: #fff3d4;
}

.value-icon-coral {
    color: #a83f2b;
    background: #ffebe7;
}

.value-card h3 {
    margin: 0 0 12px;
    color: var(--green-950);
    font-size: 22px;
    letter-spacing: -0.025em;
}

.value-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
}

.closing-cta {
    color: var(--white);
    background: var(--green-800);
}

.closing-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 270px;
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 44px;
}

.closing-cta h2 {
    max-width: 650px;
    color: var(--white);
}

.closing-cta .eyebrow {
    margin-bottom: 13px;
}

.site-footer {
    padding: 58px 0 28px;
    color: rgba(255, 255, 255, 0.66);
    background: #041f1c;
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 40px;
    gap: 42px;
}

.brand-footer {
    color: var(--white);
}

.footer-grid p {
    max-width: 390px;
    margin: 13px 0 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 28px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 22px;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    max-width: 620px;
    margin: 0;
    font-size: 11px;
}

.simple-page {
    background: #f4f8f6;
}

.simple-main {
    min-height: 620px;
}

.message-panel {
    display: grid;
    min-height: 620px;
    place-items: center;
    padding: 70px 20px 90px;
    background:
        radial-gradient(circle at 15% 15%, rgba(111, 216, 179, 0.18), transparent 24%),
        radial-gradient(circle at 85% 80%, rgba(239, 183, 62, 0.11), transparent 25%),
        #f4f8f6;
}

.message-card {
    width: min(100%, 620px);
    padding: clamp(34px, 6vw, 64px);
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.success-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 26px;
    color: var(--white);
    background: var(--green-700);
    border: 8px solid var(--mint-100);
    border-radius: 50%;
}

.success-mark svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.message-card .eyebrow {
    justify-content: center;
    margin-bottom: 12px;
}

.message-card h1 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(36px, 6vw, 52px);
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.message-card > p:not(.eyebrow) {
    margin: 20px 0 0;
    color: var(--ink-soft);
    font-size: 17px;
}

.message-note {
    display: flex;
    align-items: flex-start;
    margin: 28px 0;
    padding: 15px 17px;
    gap: 11px;
    color: var(--ink-soft);
    background: var(--mint-50);
    border-radius: 13px;
    font-size: 13px;
    text-align: left;
}

.message-note svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    fill: none;
    stroke: var(--green-700);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.legal-main {
    padding: 75px 0 105px;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.36fr) minmax(0, 0.64fr);
    align-items: start;
    gap: clamp(50px, 8vw, 110px);
}

.legal-aside {
    position: sticky;
    top: 32px;
}

.legal-aside .eyebrow {
    justify-content: flex-start;
}

.legal-aside h1 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(35px, 4vw, 48px);
    letter-spacing: -0.05em;
    line-height: 1.06;
}

.legal-date {
    margin: 18px 0 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.legal-contact {
    display: grid;
    margin-top: 30px;
    padding: 18px;
    gap: 3px;
    background: var(--mint-100);
    border-radius: 14px;
    font-size: 13px;
}

.legal-contact span {
    color: var(--ink-soft);
}

.legal-contact a {
    color: var(--green-800);
    font-weight: 800;
}

.legal-content {
    padding: clamp(27px, 5vw, 56px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.legal-intro {
    margin: 0;
    padding-bottom: 30px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 19px;
    line-height: 1.7;
}

.legal-content section {
    padding-top: 31px;
}

.legal-content h2 {
    margin: 0 0 12px;
    color: var(--green-950);
    font-size: 21px;
    letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
    color: var(--ink-soft);
    font-size: 15px;
}

.legal-content p {
    margin: 0;
}

.legal-content ul {
    display: grid;
    margin: 12px 0;
    padding-left: 22px;
    gap: 6px;
}

.legal-content a {
    color: var(--green-700);
    font-weight: 700;
    text-underline-offset: 3px;
}

.legal-reference {
    margin-top: 32px;
    padding: 24px !important;
    background: var(--mint-50);
    border-radius: 14px;
}

@media (max-width: 980px) {
    .hero {
        padding-top: 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-copy {
        max-width: 760px;
        padding-bottom: 0;
    }

    .signup-card {
        width: min(100%, 650px);
        margin-inline: auto;
    }

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

    .value-card {
        min-height: 0;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .legal-aside {
        position: static;
        max-width: 680px;
    }

    .legal-contact {
        max-width: 380px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 108px;
    }

    .brand-logo {
        max-width: 220px;
        height: 70px;
    }

    .header-inner > .button-small {
        display: none;
    }

    .button-small {
        min-height: 39px;
        padding-inline: 13px;
        font-size: 12px;
    }

    .hero {
        padding: 31px 0 57px;
    }

    .hero-grid {
        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-lead {
        margin-top: 23px;
        font-size: 17px;
    }

    .hero-highlights {
        display: grid;
        gap: 10px;
    }

    .signup-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .value-section {
        padding: 72px 0 80px;
    }

    .section-heading {
        margin-bottom: 35px;
        text-align: left;
    }

    .section-heading .eyebrow {
        justify-content: flex-start;
    }

    .section-heading > p:last-child {
        font-size: 16px;
    }

    .value-card {
        padding: 27px;
    }

    .closing-inner {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .closing-inner .button {
        width: 100%;
    }

    .footer-grid,
    .footer-bottom {
        flex-direction: column;
    }

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

    .message-panel {
        min-height: 560px;
        padding: 48px 14px 70px;
    }

    .legal-main {
        padding: 52px 0 75px;
    }

    .legal-content {
        border-radius: 16px;
    }

    .legal-intro {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
