/*!*********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./assets/scss/color-1.scss ***!
  \*********************************************************************************************************************************************************************************************************************/

:root {
    --ink: #0A0A0A;
    --ink-soft: #3A3F44;
    --paper: #FFFFFF;
    --paper-raised: #FFFFFF;
    --line: #E3E6E8;
    --line-strong: #D0D4D8;
    --green: #66C79A;
    --green-dark: #4FA47D;
    --green-tint: #EAF7F1;
    --red: #D6564C;
    --red-tint: #FBEAE9;
    --muted: #667085;
    --font-display: 'Space Grotesk',sans-serif;
    --font-body: 'Inter',sans-serif;
    --font-mono: 'IBM Plex Mono',monospace;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

@@media(prefers - reduced - motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* ---------- focus ---------- */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--green-dark);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ---------- nav ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    max-width: var(--max);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    color: var(--ink);
}

    .logo .dot {
        color: var(--green);
    }

.nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
    font-size: 15px;
}

    .nav-links a {
        text-decoration: none;
        color: var(--ink-soft);
    }

        .nav-links a:hover {
            color: var(--ink);
        }

.nav-cta {
    background: #66c79a;
    color: #66c79a;
    padding: 10px 20px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
}

    .nav-cta:hover {
        background: var(--ink-soft);
    }

.nav-toggle {
    display: none;
}

@@media(max - width:760px) {
    .nav-links {
        position: fixed;
        inset: 64px 0 auto 0;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 28px 20px;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .18s ease, transform .18s ease;
    }

        .nav-links.open {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .nav-links a {
            padding: 12px 0;
            width: 100%;
            border-bottom: 1px solid var(--line);
        }

        .nav-links .nav-cta {
            margin-top: 14px;
            text-align: center;
        }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
    }

        .nav-toggle span {
            width: 22px;
            height: 2px;
            background: var(--ink);
            display: block;
        }
}

/* ---------- hero ---------- */
.hero {
    padding: 76px 0 88px;
}

    .hero .wrap {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 56px;
        align-items: center;
    }

.eyebrow-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--green-dark);
    margin-bottom: 20px;
}

    .eyebrow-line .rule {
        width: 28px;
        height: 1px;
        background: var(--green-dark);
    }

h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin: 0 0 22px;
    font-weight: 700;
}

.hero p.lead {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 46ch;
    margin: 0 0 32px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--green);
    color: #fff;
    padding: 14px 26px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15.5px;
    display: inline-block;
    border: 1px solid var(--green);
}

    .btn-primary:hover {
        background: var(--green-dark);
        border-color: var(--green-dark);
    }

.btn-ghost {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 15.5px;
    padding: 14px 6px;
    border-bottom: 1px solid var(--ink);
}

    .btn-ghost:hover {
        color: var(--green-dark);
        border-color: var(--green-dark);
    }

/* ---------- receipt mock ---------- */
.receipt-stage {
    position: relative;
    display: flex;
    justify-content: center;
}

.receipt {
    background: var(--paper-raised);
    border: 1px solid var(--line-strong);
    width: 100%;
    max-width: 340px;
    padding: 26px 26px 30px;
    position: relative;
    box-shadow: 0 22px 44px -28px rgba(20,33,61,0.35);
    clip-path: polygon( 0% 1.5%, 3% 0%, 6% 1.5%, 9% 0%, 12% 1.5%, 15% 0%, 18% 1.5%, 21% 0%, 24% 1.5%, 27% 0%, 30% 1.5%, 33% 0%, 36% 1.5%, 39% 0%, 42% 1.5%, 45% 0%, 48% 1.5%, 51% 0%, 54% 1.5%, 57% 0%, 60% 1.5%, 63% 0%, 66% 1.5%, 69% 0%, 72% 1.5%, 75% 0%, 78% 1.5%, 81% 0%, 84% 1.5%, 87% 0%, 90% 1.5%, 93% 0%, 96% 1.5%, 100% 0%, 100% 98.5%, 97% 100%, 94% 98.5%, 91% 100%, 88% 98.5%, 85% 100%, 82% 98.5%, 79% 100%, 76% 98.5%, 73% 100%, 70% 98.5%, 67% 100%, 64% 98.5%, 61% 100%, 58% 98.5%, 55% 100%, 52% 98.5%, 49% 100%, 46% 98.5%, 43% 100%, 40% 98.5%, 37% 100%, 34% 98.5%, 31% 100%, 28% 98.5%, 25% 100%, 22% 98.5%, 19% 100%, 16% 98.5%, 13% 100%, 10% 98.5%, 7% 100%, 4% 98.5%, 0% 100% );
}

.receipt-head {
    text-align: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed var(--line-strong);
}

    .receipt-head .brand {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 16px;
    }

    .receipt-head .sub {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--muted);
        margin-top: 4px;
    }

.receipt-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    padding: 7px 0;
    color: var(--ink-soft);
}

    .receipt-row .k {
        color: var(--muted);
    }

    .receipt-row .v {
        color: var(--ink);
        text-align: right;
        white-space: nowrap;
    }

.receipt-total {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--line-strong);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 15px;
}

.stamp {
    position: absolute;
    bottom: -14px;
    right: -18px;
    width: 116px;
    height: 116px;
    border: 3px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-align: center;
    transform: rotate(-16deg) scale(0);
    background: rgba(255,255,255,0.88);
    animation: stampIn 0.55s cubic-bezier(.2,1.4,.4,1) 0.5s forwards;
}

    .stamp::before {
        content: "";
        position: absolute;
        inset: 6px;
        border: 1px solid var(--green);
        border-radius: 50%;
    }


@keyframes stampIn {
    0% {
        transform: rotate(-16deg) scale(0);
        opacity: 0;
    }

    60% {
        transform: rotate(-13deg) scale(1.08);
        opacity: 1;
    }

    100% {
        transform: rotate(-13deg) scale(1);
        opacity: 1;
    }
}



/* ---------- section shell ---------- */
section {
    padding: 86px 0;
}

.section-head {
    max-width: 56ch;
    margin-bottom: 44px;
}

.kicker {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--green-dark);
    margin: 0 0 12px;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(26px,3vw,36px);
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    font-weight: 700;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 16.5px;
    margin: 0;
}

/* ---------- problem ---------- */
.problem {
    background: var(--paper-raised);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.msg-card {
    border: 1px solid var(--line-strong);
    background: var(--paper);
    padding: 22px;
}

    .msg-card h3 {
        font-family: var(--font-display);
        font-size: 16px;
        margin: 0 0 14px;
        display: flex;
        align-items: center;
        gap: 9px;
    }

.badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex: none;
}

    .badge.no {
        background: var(--red);
    }

    .badge.yes {
        background: var(--green);
    }

.bubble {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 14px 16px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.msg-card.fake .bubble {
    border-color: #E3B7B2;
    background: var(--red-tint);
}

.msg-card.real .bubble {
    border-color: #A9CBB4;
    background: var(--green-tint);
}

.msg-card .verdict {
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--ink-soft);
}

.problem-copy {
    margin-top: 28px;
    max-width: 64ch;
    color: var(--ink-soft);
    font-size: 16px;
}

/* ---------- how it works ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    border-top: 1px solid var(--line-strong);
}

.step {
    padding: 28px 26px 30px 0;
    border-right: 1px solid var(--line-strong);
    position: relative;
}

    .step:last-child {
        border-right: none;
    }

.step-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--green-dark);
    margin-bottom: 14px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 19px;
    margin: 0 0 10px;
    font-weight: 600;
}

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

@@media(max - width:760px) {
    .steps {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .step {
        border-right: none;
        border-top: 1px solid var(--line-strong);
        padding: 26px 0;
    }
}

@@media(max - width:820px) {
    .hero .wrap {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero {
        padding: 44px 0 60px;
    }

    .receipt-stage {
        order: 2;
    }

    .receipt {
        max-width: 360px;
    }
}

@@media(max - width:640px) {
    .compare {
        grid-template-columns: 1fr;
    }

    .cta-final .btn-primary, .hero-ctas {
        flex-wrap: wrap;
    }
}

/* ---------- features (ledger list) ---------- */
.ledger {
    border-top: 1px solid var(--line-strong);
}

.ledger-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

    .ledger-row .tag {
        font-family: var(--font-mono);
        font-size: 12.5px;
        color: var(--green-dark);
        padding-top: 2px;
    }

    .ledger-row h3 {
        font-family: var(--font-display);
        font-size: 18px;
        margin: 0 0 6px;
        font-weight: 600;
    }

    .ledger-row p {
        margin: 0;
        color: var(--ink-soft);
        font-size: 15px;
        max-width: 56ch;
    }

@@media(max - width:640px) {
    .ledger-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ---------- coverage ---------- */
.coverage {
    background: var(--ink);
    color: var(--paper);
}

    .coverage h2 {
        color: #fff;
    }

    .coverage .section-head p {
        color: #C4CBDA;
    }

.cov-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.14);
}

.cov-item {
    background: var(--ink);
    padding: 26px 24px;
}

    .cov-item .k {
        font-family: var(--font-mono);
        font-size: 12px;
        color: #9BC7AE;
        margin-bottom: 8px;
    }

    .cov-item p {
        margin: 0;
        font-size: 15px;
        color: #DCE1EC;
    }

@@media(max - width:760px) {
    .cov-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- pricing ---------- */
.plans {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.plan {
    border: 1px solid var(--line-strong);
    background: var(--paper-raised);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
}

    .plan.featured {
        border-color: var(--green);
        box-shadow: 0 0 0 1px var(--green);
    }

.plan-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 6px;
}

.plan-for {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 22px;
}

.plan-price {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 2px;
}

    .plan-price span {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 500;
        color: var(--muted);
    }

.plan-cadence {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 22px;
}

.plan ul {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    flex: 1;
}

.plan li {
    font-size: 14.5px;
    color: var(--ink-soft);
    padding: 9px 0;
    border-top: 1px solid var(--line);
}

    .plan li:first-child {
        border-top: none;
    }

.plan-cta {
    text-align: center;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14.5px;
    border: 1px solid var(--ink);
    color: var(--ink);
}

.plan.featured .plan-cta {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.plan-cta:hover {
    opacity: 0.85;
}

@@media(max - width:860px) {
    .plans {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* ---------- final cta ---------- */
.cta-final {
    background: var(--green-tint);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

    .cta-final h2 {
        margin-bottom: 10px;
    }

    .cta-final p {
        color: var(--ink-soft);
        font-size: 16.5px;
        margin: 0 0 28px;
    }

/* ---------- footer ---------- */
footer {
    padding: 52px 0 40px;
}

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
}

.foot-links {
    display: flex;
    gap: 28px;
    font-size: 14.5px;
    flex-wrap: wrap;
}

    .foot-links a {
        text-decoration: none;
        color: var(--ink-soft);
    }

        .foot-links a:hover {
            color: var(--ink);
        }

.fine {
    font-size: 13px;
    color: var(--muted);
    max-width: 70ch;
}
