/* ====================================================
   KOTIZANDO · LANDING — Modern, light, single typeface
   ==================================================== */

:root {
    /* paleta */
    --bg: #FAFAF7;
    --surface: #FFFFFF;
    --surface-2: #F4F2EC;
    --ink: #0E0F12;
    --ink-2: #2A2C33;
    --muted: #6B6F76;
    --muted-2: #9CA0A8;
    --border: #E8E5DE;
    --border-strong: #D6D2C8;

    --accent: #FF5E2B;
    --accent-deep: #E84A18;
    --accent-soft: #FFE7DB;

    --shadow-xs: 0 1px 2px rgba(14,15,18,0.04);
    --shadow-sm: 0 4px 12px -6px rgba(14,15,18,0.08);
    --shadow-md: 0 12px 32px -12px rgba(14,15,18,0.12);

    /* tipografía: una sola */
    --font: 'Geist', 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    font-feature-settings: 'ss01', 'cv11';
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, p, ul, ol, li, figure, blockquote, figcaption {
    margin: 0;
    padding: 0;
    font-weight: inherit;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--ink); color: var(--bg); }

/* ============== LAYOUT PRIMITIVES ============== */

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.section {
    padding: 120px 0;
    position: relative;
}
.section--alt { background: var(--surface-2); }

.section__head {
    max-width: 720px;
    margin: 0 0 72px;
}

.kicker {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--accent);
    margin-bottom: 20px;
}

.section__title {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--ink);
}

.section__lede {
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--muted);
    max-width: 580px;
}

/* grids */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .section { padding: 80px 0; }
    .container { padding: 0 24px; }
}

/* ============== BUTTONS ============== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }
.btn--block { width: 100%; }

.btn--primary {
    background: var(--ink);
    color: var(--bg);
}
.btn--primary:hover { background: #000; }

.btn--accent {
    background: var(--accent);
    color: #fff;
}
.btn--accent:hover { background: var(--accent-deep); }

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); }

/* ============== NAV ============== */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 247, 0.78);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--border);
}
.nav__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand__mark {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: var(--ink);
    color: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.02em;
}
.brand__name {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.nav__links {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
    color: var(--muted);
}
.nav__links a { transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }

.nav__cta { display: inline-flex; gap: 8px; }

@media (max-width: 880px) {
    .nav__links { display: none; }
    .nav__inner { grid-template-columns: auto 1fr; }
    .nav__cta { justify-content: end; }
    .nav__cta .btn--ghost { display: none; }
}

/* ============== HERO ============== */

.hero {
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 880px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--ink-2);
    box-shadow: var(--shadow-xs);
    transition: border-color .15s ease, transform .15s ease;
    margin-bottom: 32px;
}
.badge:hover { border-color: var(--border-strong); transform: translateY(-1px); }
.badge__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(255,94,43,0.16);
}

.hero__title {
    font-size: clamp(2.6rem, 6.4vw, 4.8rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.04;
    color: var(--ink);
}
.hero__title .accent { color: var(--accent); }

.hero__lede {
    margin: 28px auto 0;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.55;
    color: var(--muted);
    max-width: 620px;
}

.hero__actions {
    margin-top: 36px;
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__fineprint {
    margin-top: 24px;
    font-size: 13px;
    color: var(--muted-2);
}

/* mockup */
.mockup {
    margin-top: 90px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.mockup__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
}
.mockup__bar > span {
    width: 11px; height: 11px;
    border-radius: 50%;
    background: var(--border-strong);
}
.mockup__url {
    margin-left: 14px;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mockup__body {
    padding: 32px;
}
.mockup__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}
.mockup__id {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
}
.mockup__head h3 {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.mockup__head p {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.status--live {
    background: var(--accent-soft);
    color: var(--accent-deep);
}
.status__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.mockup__quotes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.quoterow {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    transition: border-color .15s ease, background .15s ease;
}
.quoterow:hover { border-color: var(--border-strong); }
.quoterow--best {
    border-color: var(--accent);
    background: linear-gradient(180deg, var(--accent-soft) 0%, rgba(255,231,219,0.4) 100%);
}

.quoterow__prov {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.avatar {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--surface-2);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}
.avatar--accent {
    background: var(--accent);
    color: #fff;
}
.quoterow__prov strong {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--ink);
}
.quoterow__prov span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.quoterow__bar {
    height: 6px;
    background: var(--surface-2);
    border-radius: 999px;
    overflow: hidden;
}
.quoterow__bar > span {
    display: block;
    height: 100%;
    background: var(--ink);
    border-radius: 999px;
}
.quoterow--best .quoterow__bar > span { background: var(--accent); }

.quoterow__amount {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.tag--accent { background: var(--accent); color: #fff; }

@media (max-width: 720px) {
    .mockup__body { padding: 20px; }
    .quoterow {
        grid-template-columns: 1fr auto;
        gap: 12px 16px;
    }
    .quoterow__bar { grid-column: 1 / -1; order: 3; }
}

/* ============== STEPS ============== */

.step {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color .15s ease, transform .2s ease, box-shadow .2s ease;
}
.step:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.step__num {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 24px;
}
.step h3 {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.step p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ============== AUDIENCIAS ============== */

.aud-card {
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.aud-card__tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
}
.aud-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--ink);
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--ink-2);
    line-height: 1.4;
}
.checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--accent-soft);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E84A18' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 11px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    align-self: flex-start;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: color .15s ease, border-color .15s ease, gap .2s ease;
}
.link-arrow:hover { color: var(--accent); border-bottom-color: var(--accent); gap: 10px; }

/* ============== ANTES vs DESPUÉS ============== */

.compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}
.compare__grid::before {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: 22px;
    font-weight: 400;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--bg);
}

.compare__col {
    padding: 36px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.compare__col--before {
    background: var(--surface);
    color: var(--muted);
}
.compare__col--before .compare__list li { color: var(--muted); }
.compare__col--before h3 { color: var(--ink-2); }
.compare__col--after {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.compare__col--after h3 { color: var(--bg); }
.compare__col--after .compare__list li { color: rgba(250,250,247,0.78); }
.compare__col--after .compare__list li::before {
    background-color: rgba(255,255,255,0.08);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5E2B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.compare__col--after .compare__list strong { color: var(--bg); }

.compare__col header { display: flex; flex-direction: column; gap: 10px; }
.compare__tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.compare__tag--bad {
    background: rgba(14,15,18,0.06);
    color: var(--muted);
}
.compare__tag--good {
    background: rgba(255,94,43,0.18);
    color: var(--accent);
}
.compare__col h3 {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.compare__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.compare__list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.compare__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(14,15,18,0.06);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6F76' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='6' y1='6' x2='18' y2='18'/><line x1='6' y1='18' x2='18' y2='6'/></svg>");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.compare__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    margin-top: auto;
    align-self: flex-start;
}
.compare__chip--bad {
    background: rgba(14,15,18,0.06);
    color: var(--muted);
}
.compare__chip--good {
    background: var(--accent);
    color: #fff;
}

@media (max-width: 880px) {
    .compare__grid { grid-template-columns: 1fr; gap: 16px; }
    .compare__grid::before {
        left: 50%; top: calc(50% - 8px);
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

/* ============== FEATURES (rich) ============== */

.features { gap: 20px; }

.feature-rich {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .15s ease, transform .2s ease, box-shadow .2s ease;
}
.feature-rich:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.feature-rich__copy {
    padding: 32px 32px 24px;
}
.feature-rich__num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 14px;
    display: inline-block;
}
.feature-rich h3 {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.2;
}
.feature-rich p {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.55;
}

.feature-rich__viz {
    margin: 8px 32px 32px;
    padding: 22px;
    background: var(--surface-2);
    border-radius: 12px;
    min-height: 180px;
}

/* viz: bars */
.feature-rich__viz--bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}
.bar {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 12px;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
}
.bar__lab { font-weight: 500; color: var(--ink-2); }
.bar__track {
    height: 8px;
    background: var(--surface);
    border-radius: 999px;
    overflow: hidden;
}
.bar__fill {
    display: block;
    height: 100%;
    background: var(--ink-2);
    border-radius: 999px;
}
.bar__amt { font-family: var(--mono); font-size: 12px; color: var(--ink); font-weight: 500; }
.bar--best .bar__lab { color: var(--accent-deep); }
.bar--best .bar__fill { background: var(--accent); }
.bar--best .bar__amt { color: var(--accent-deep); }

/* viz: chat */
.feature-rich__viz--chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: flex-start;
}
.chat-bubble {
    display: inline-block;
    max-width: 80%;
    padding: 10px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px 14px 14px 4px;
    font-size: 13px;
    color: var(--ink);
}
.chat-bubble--alt {
    align-self: flex-end;
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    border-radius: 14px 14px 4px 14px;
    font-weight: 500;
}

/* viz: notif */
.feature-rich__viz--notif {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}
.notif {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-xs);
}
.notif__icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.notif strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}
.notif span:not(.notif__icon):not(.notif__time) {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}
.notif__time {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted-2);
    flex-shrink: 0;
}
.notif--muted .notif__icon {
    background: rgba(14,15,18,0.06);
    color: var(--muted);
}

/* viz: rows */
.feature-rich__viz--rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}
.hist-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 10px 14px;
    background: var(--surface);
    border-radius: 8px;
    font-family: var(--mono);
    font-size: 12px;
    border: 1px solid var(--border);
}
.hist-row__id { color: var(--muted); }
.hist-row__amt { color: var(--ink); font-weight: 500; }
.hist-row__status {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(14,15,18,0.06);
    color: var(--muted);
}
.hist-row__status--ok {
    background: var(--accent-soft);
    color: var(--accent-deep);
}

/* ============== TESTIMONIO ============== */

.testi__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.testi__inner .kicker { display: block; margin-bottom: 24px; }
.testi blockquote {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.testi blockquote strong { color: var(--accent); font-weight: 500; }
.testi figcaption {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}
.testi__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}
.testi__person {
    font-size: 14px;
    color: var(--muted);
}
.testi__person strong {
    display: block;
    color: var(--ink);
    font-weight: 500;
}

/* ============== STATS ============== */

.stats { gap: 32px; }
.stats > div {
    border-left: 1px solid var(--border);
    padding-left: 24px;
}
.stats > div:first-child { border-left: none; padding-left: 0; }

.stat__num {
    display: block;
    font-size: clamp(2.6rem, 4.8vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 10px;
}
.stat__pct {
    color: var(--muted);
    font-size: 0.55em;
    vertical-align: 0.3em;
    margin-left: 2px;
}
.stat__lab {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

@media (max-width: 980px) {
    .stats > div:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 640px) {
    .stats > div { border-left: none; padding-left: 0; }
}

/* ============== PRICING ============== */

.pricing { align-items: stretch; }
.pricing--single { display: flex; justify-content: center; }
.pricing--single .plan { width: 100%; max-width: 440px; }
.plan {
    position: relative;
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: border-color .15s ease, transform .2s ease;
}
.plan:hover { border-color: var(--border-strong); transform: translateY(-2px); }

.plan h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.015em;
}
.plan__price {
    margin-top: 8px;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
    color: var(--ink);
}
.plan__price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
    margin-left: 4px;
}
.plan header > p {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
}

.plan--pro {
    border-color: var(--ink);
    background: var(--ink);
}
.plan--pro h3, .plan--pro .plan__price { color: var(--bg); }
.plan--pro .plan__price span { color: rgba(250,250,247,0.55); }
.plan--pro header > p { color: rgba(250,250,247,0.65); }
.plan--pro .checklist li { color: rgba(250,250,247,0.85); }
.plan--pro .checklist li::before {
    background-color: rgba(255,255,255,0.1);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5E2B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

.plan__badge {
    position: absolute;
    top: -10px;
    left: 32px;
    padding: 4px 10px;
    background: var(--accent);
    color: #fff;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
}

/* ============== CTA ============== */

.cta {
    padding: 120px 0;
    text-align: center;
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--ink);
}
.cta p {
    margin: 20px auto 36px;
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.55;
}
.cta__actions {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
@media (max-width: 640px) {
    .cta { padding: 80px 0; }
}

/* ============== FOOTER ============== */

.foot {
    padding: 64px 0 32px;
    background: var(--bg);
}
.foot__inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}
.foot__brand p {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
}
.foot__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.foot__cols h4 {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 14px;
}
.foot__cols a {
    display: block;
    padding: 4px 0;
    font-size: 14px;
    color: var(--muted);
    transition: color .15s ease;
}
.foot__cols a:hover { color: var(--ink); }

.foot__bottom {
    margin-top: 24px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted-2);
}

@media (max-width: 760px) {
    .foot__inner { grid-template-columns: 1fr; gap: 32px; }
    .foot__cols { grid-template-columns: repeat(2, 1fr); }
}
