/* =========================
   LOCAL FONTS
========================= */

@font-face {
    font-family: "DM Sans";
    src: url("/fonts/DMSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("/fonts/DMSans-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("/fonts/DMSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("/fonts/SpaceGrotesk-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --bg: #f4f1ea;
    --surface: #ffffff;
    --dark: #151515;
    --text: #191919;
    --muted: #68655e;
    --line: #d8d3c9;

    --accent: #d8ff3e;
    --accent-dark: #718000;

    --container: 1180px;
    --radius: 22px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(var(--container), calc(100% - 44px));
    margin: 0 auto;
}

.section {
    padding-top: 115px;
    padding-bottom: 115px;
    border-top: 1px solid var(--line);
}

.section-label,
.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--muted);
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", sans-serif;
}

h1,
h2 {
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

h1 {
    font-size: clamp(52px, 6vw, 82px);
}

h2 {
    font-size: clamp(42px, 5vw, 64px);
}

h1 span,
h2 span {
    color: var(--accent-dark);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    padding: 17px 24px;

    border: 0;
    border-radius: 999px;

    background: var(--dark);
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}

.btn span {
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    height: 78px;
    border-bottom: 1px solid var(--line);
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-dark);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;

    font-size: 14px;
    font-weight: 600;
}

.nav-cta {
    padding: 12px 18px;

    border-radius: 999px;

    background: var(--dark);
    color: #fff;
}

.nav-cta:hover {
    background: #292929;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 90px 0 100px;
}

.hero-grid {
    min-height: 590px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 70px;
}

.hero-content {
    max-width: 620px;
}

.hero h1 {
    margin-top: 20px;
    margin-bottom: 28px;
}

.hero-description {
    max-width: 570px;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 34px;
}

.text-link {
    font-size: 14px;
    font-weight: 700;
}

.text-link:hover {
    text-decoration: underline;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 28px;

    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 18px;
}


/* =========================================================
   HERO BROWSER
========================================================= */

.browser-window {
    position: absolute;

    top: 25px;
    left: 25px;

    width: 88%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #d4d0c7;
    border-radius: 18px;

    box-shadow:
        20px 25px 60px rgba(25, 25, 20, 0.12);

    transform: rotate(-2deg);
}

.browser-bar {
    height: 38px;

    display: flex;
    align-items: center;

    padding: 0 13px;

    border-bottom: 1px solid #e7e4dc;

    color: #aaa;

    font-size: 10px;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #d5d2ca;
}

.browser-url {
    margin: auto;
}

.landing-preview {
    min-height: 365px;
    padding: 55px 42px;

    background: #faf9f5;
}

.preview-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.landing-preview h2 {
    margin-top: 22px;

    font-size: 31px;
    line-height: 1.05;

    color: var(--dark);
}

.landing-preview p {
    max-width: 330px;

    margin-top: 20px;

    color: var(--muted);
    font-size: 13px;
}

.preview-button {
    display: inline-block;

    margin-top: 25px;
    padding: 11px 16px;

    border-radius: 6px;

    background: var(--dark);
    color: #fff;

    font-size: 10px;
    font-weight: 700;
}

.result-card {
    position: absolute;

    right: 0;
    bottom: 35px;

    padding: 20px 24px;

    background: var(--accent);

    border-radius: 15px;

    box-shadow:
        10px 15px 35px rgba(25, 25, 20, 0.15);

    transform: rotate(2deg);
}

.result-card small {
    display: block;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.result-card strong {
    display: block;

    margin-top: 2px;

    font-family: "Space Grotesk", sans-serif;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -2px;
}

.result-card span {
    display: block;

    margin-top: 5px;

    color: #596400;
    font-size: 9px;
}


/* =========================================================
   TWO COLUMNS
========================================================= */

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
    margin-top: 35px;
}

.section-text {
    max-width: 520px;

    color: var(--muted);
    font-size: 17px;
}

.section-text p + p {
    margin-top: 22px;
}

.section-text strong {
    color: var(--text);
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how h2 {
    margin-top: 18px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 60px;

    border-top: 1px solid var(--line);
}

.step {
    min-height: 260px;

    padding: 25px 22px 20px 0;
    margin-right: 22px;

    border-right: 1px solid var(--line);
}

.step:last-child {
    border-right: 0;
    margin-right: 0;
}

.step-number {
    color: #77736b;

    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.step h3 {
    margin-top: 42px;
    margin-bottom: 12px;

    font-size: 21px;
}

.step p {
    color: var(--muted);
    font-size: 14px;
}


/* =========================================================
   FREE OFFER
========================================================= */

.free-offer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
    padding: 65px;

    background: var(--dark);
    color: #fff;

    border-radius: var(--radius);
}

.free-offer-box .section-label {
    color: #999;
}

.free-offer-box h2 {
    margin-top: 18px;
    margin-bottom: 20px;
}

.free-offer-box p {
    max-width: 550px;
    color: #aaa;
}

.price-badge {
    width: 170px;
    height: 170px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid #555;
    border-radius: 50%;

    transform: rotate(7deg);
}

.price-badge strong {
    color: var(--accent);

    font-family: "Space Grotesk", sans-serif;
    font-size: 46px;
    line-height: 1;
    letter-spacing: -3px;
}

.price-badge span {
    margin-top: 8px;

    text-align: center;

    font-size: 9px;
    line-height: 1.4;
    letter-spacing: 1.5px;
}


/* =========================================================
   CALCULATOR
========================================================= */

.calculator {
    padding: 30px;

    background: var(--surface);

    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.calculator label {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 14px;
    font-weight: 600;
}

.calculator output {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.calculator input {
    width: 100%;
    margin: 30px 0;

    accent-color: var(--dark);
}

.calculator-result {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding-top: 22px;

    border-top: 1px solid var(--line);
}

.calculator-result span {
    color: var(--muted);
    font-size: 13px;
}

.calculator-result strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 35px;
    line-height: 1;
    letter-spacing: -2px;
}

.calculator small {
    display: block;

    margin-top: 15px;

    color: #999;
    font-size: 11px;
}


/* =========================================================
   POSITIONING
========================================================= */

.positioning {
    padding-bottom: 100px;
}

.positioning-list {
    padding-top: 20px;
}

.positioning-list div {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);

    font-weight: 600;
}

.positioning-list span {
    margin-right: 15px;

    color: #a16c5d;
    font-size: 22px;
}

.big-statement {
    margin-top: 85px;
    padding: 45px;

    background: var(--accent);

    border-radius: var(--radius);
}

.big-statement .section-label {
    color: var(--dark);
}

.big-statement strong {
    display: block;

    margin-top: 18px;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -2px;
}


/* =========================================================
   CONTACT / FORM
========================================================= */

.contact {
    background: var(--dark);
    color: #fff;
    border-top: 0;
}

.contact-inner {
    max-width: 800px;
}

.contact .section-label {
    color: #999;
}

.contact h2 {
    margin-top: 18px;
    margin-bottom: 22px;
}

.contact > .container > p {
    max-width: 650px;
    color: #aaa;
}

#lead-form {
    margin-top: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 7px;

    color: #aaa;

    font-size: 11px;
    font-weight: 600;
}

.form-field input {
    width: 100%;

    padding: 16px 17px;

    border: 1px solid #3d3d3d;
    border-radius: 9px;

    outline: none;

    background: #242424;
    color: #fff;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field input::placeholder {
    color: #777;
}

.form-field input:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(216, 255, 62, 0.08);
}

.form-field input:invalid:not(:placeholder-shown) {
    border-color: #8f5b50;
}

#lead-form > .form-field {
    margin-top: 14px;
}

#lead-form .btn {
    margin-top: 20px;
}

#lead-form .btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.form-note {
    margin-top: 13px;

    color: #777;
    font-size: 11px;
}

.form-status {
    min-height: 20px;

    margin-top: 15px;

    font-size: 13px;
    line-height: 1.5;
}

.form-status.success {
    color: var(--accent);
}

.form-status.error {
    color: #ff9d8c;
}


/* =========================================================
   HONEYPOT ANTI-SPAM
========================================================= */

.hp-field {
    position: absolute;

    left: -9999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: var(--bg);
}

.footer-inner {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #888;
    font-size: 11px;
}

.footer-inner .logo {
    color: var(--dark);
    font-size: 17px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero {
        padding-top: 65px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .free-offer-box {
        padding: 45px;
    }

    .price-badge {
        width: 140px;
        height: 140px;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 32px, var(--container));
    }

    .site-header {
        height: 68px;
    }

    .hero {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .hero-visual {
        min-height: 370px;
    }

    .hero-image img {
        border-radius: 14px;
    }

    .browser-window {
        left: 0;
        width: 94%;
    }

    .landing-preview {
        min-height: 290px;
        padding: 35px 25px;
    }

    .landing-preview h2 {
        font-size: 25px;
    }

    .result-card {
        right: 0;
        bottom: 10px;
    }

    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    h2 {
        font-size: 42px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: auto;

        padding: 25px 0;
        margin-right: 0;

        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .step:last-child {
        border-bottom: 0;
    }

    .step h3 {
        margin-top: 25px;
    }

    .free-offer-box {
        display: block;
        padding: 38px 28px;
    }

    .price-badge {
        margin: 35px auto 0;
    }

    .big-statement {
        padding: 35px 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        min-height: 110px;

        flex-wrap: wrap;

        padding-top: 25px;
        padding-bottom: 25px;
    }

}