:root {
    --bg: #0a0a0b;
    --bg-alt: #111114;
    --surface: #16161a;
    --surface-2: #1e1e24;
    --border: #26262e;
    --text: #f5f5f7;
    --text-muted: #8a8a96;
    --pink: #ff2d92;
    --pink-bright: #ff4fa3;
    --pink-soft: rgba(255, 45, 146, 0.12);
    --pink-glow: rgba(255, 45, 146, 0.35);

    --radius: 14px;
    --radius-sm: 8px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    --max-w: 1180px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--pink-bright);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.accent {
    color: var(--pink);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 760px;
}

/* ── NAV ───────────────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 10, 11, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.logo:hover {
    text-decoration: none;
}

.logo__mark {
    color: var(--pink);
    font-size: 16px;
    transform: translateY(-1px);
}

.nav__links {
    display: flex;
    gap: 28px;
}

.nav__links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease;
}

.nav__links a:hover {
    color: var(--text);
    text-decoration: none;
}

@media (max-width: 720px) {
    .nav__links { display: none; }
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
    white-space: nowrap;
}

.btn:hover { text-decoration: none; }

.btn--primary {
    background: var(--pink);
    color: #0a0a0b;
}

.btn--primary:hover {
    background: var(--pink-bright);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px -10px var(--pink-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn--ghost:hover {
    border-color: var(--pink);
    color: var(--pink-bright);
}

.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 96px 0 80px;
    overflow: hidden;
    isolation: isolate;
}

.hero__glow {
    position: absolute;
    inset: -10% 30% auto -10%;
    height: 520px;
    background:
        radial-gradient(circle at 30% 30%, var(--pink-glow), transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(255, 45, 146, 0.15), transparent 65%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.hero__badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--pink-soft);
    color: var(--pink-bright);
    border: 1px solid rgba(255, 45, 146, 0.25);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero__title {
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    max-width: 12ch;
}

.hero__lede {
    font-size: clamp(17px, 1.5vw, 20px);
    color: var(--text-muted);
    max-width: 56ch;
    margin: 0 0 36px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 64px;
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (max-width: 720px) {
    .hero__metrics { grid-template-columns: 1fr; gap: 20px; }
}

.metric__value {
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.metric__unit {
    color: var(--text-muted);
    font-size: 0.55em;
    font-weight: 600;
    margin-left: 4px;
}

.metric__label {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 6px;
}

/* ── SECTIONS ──────────────────────────────────────────────────── */
.section {
    padding: 96px 0;
}

.section--alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section__head {
    max-width: 760px;
    margin: 0 0 48px;
}

.section__head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.eyebrow {
    color: var(--pink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.section h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.section__lede {
    color: var(--text-muted);
    font-size: 17px;
    margin: 0;
}

/* ── PROBLEM GRID ──────────────────────────────────────────────── */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.problem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.problem-card:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
}

.problem-card__num {
    color: var(--pink);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 15px;
}

/* ── HOW IT WORKS ──────────────────────────────────────────────── */
.how {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

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

.how__step {
    position: relative;
    padding-top: 16px;
}

.how__step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--pink);
}

.how__num {
    font-family: var(--font-mono);
    color: var(--pink);
    font-weight: 600;
    font-size: 13px;
    margin: 14px 0 6px;
    letter-spacing: 0.05em;
}

.how__body h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.how__body p {
    color: var(--text-muted);
    margin: 0;
    font-size: 15px;
}

/* ── CODEBLOCK ─────────────────────────────────────────────────── */
.codeblock {
    background: #07070a;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px -40px rgba(255, 45, 146, 0.4);
}

.codeblock__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.dot--r { background: #ff5f57; }
.dot--y { background: #febc2e; }
.dot--g { background: #28c840; }

.codeblock__path {
    margin-left: 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.codeblock pre {
    margin: 0;
    padding: 24px;
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text);
}

.c-key { color: var(--pink-bright); font-weight: 600; }
.c-mut { color: var(--text-muted); }

/* ── COMPARE TABLE ─────────────────────────────────────────────── */
.compare {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.compare table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.compare th,
.compare td {
    text-align: left;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
}

.compare thead th {
    background: var(--surface-2);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.compare th.th--us {
    color: var(--pink);
}

.compare td.td--us {
    color: var(--text);
    font-weight: 500;
    background: var(--pink-soft);
}

.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody td:first-child { color: var(--text-muted); }

@media (max-width: 720px) {
    .compare th, .compare td { padding: 14px 14px; font-size: 14px; }
}

/* ── TECH GRID ─────────────────────────────────────────────────── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1000px) {
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.tech-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.tech-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-card h3 .accent {
    font-size: 14px;
}

.tech-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14.5px;
}

/* ── PRICING ───────────────────────────────────────────────────── */
.pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}

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

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.price-card--alt {
    background: linear-gradient(180deg, var(--pink-soft) 0%, var(--surface) 60%);
    border-color: var(--pink);
}

.price-card__name {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.price-card__price {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1;
}

.price-card__unit {
    color: var(--text-muted);
    font-size: 0.36em;
    font-weight: 500;
    margin-left: 6px;
}

.price-card__lede {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0 0 24px;
}

.price-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
}

.price-card__list li {
    padding: 9px 0 9px 26px;
    position: relative;
    color: var(--text);
    font-size: 14.5px;
    border-bottom: 1px solid var(--border);
}

.price-card__list li:last-child { border-bottom: none; }

.price-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--pink);
    border-bottom: 2px solid var(--pink);
    transform: rotate(-45deg);
}

/* ── CONTACT ───────────────────────────────────────────────────── */
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    transition: background 0.15s ease;
}

.contact-line:last-child { border-bottom: none; }

a.contact-line:hover {
    background: var(--pink-soft);
    text-decoration: none;
}

.contact-line__label {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-line__value {
    font-family: var(--font-mono);
    color: var(--pink-bright);
    font-size: 15px;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 13px;
}

.footer__brand {
    color: var(--text);
    font-weight: 700;
}

.footer__tag {
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 8px;
}

@media (max-width: 600px) {
    .footer__inner { flex-direction: column; align-items: flex-start; }
}
