/*
 * Dyyno landing page — standalone CSS (no Tailwind, no CDN).
 * Palette mirrors resources/js/styles/tokens.css (light values + teal brand).
 * Type: Plus Jakarta Sans, self-hosted (public/fonts) — variable weight, no CDN.
 */

@font-face {
    font-family: "Plus Jakarta Sans";
    font-style: normal;
    font-display: swap;
    font-weight: 200 800;
    src: url("/fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2");
}

:root {
    /* surfaces */
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #f7f8f8; /* subtle tint */
    --surface-3: #f2f4f3;
    --border: #e4e4e7; /* zinc-200 */
    --border-soft: #eef0ef;

    /* text */
    --text: #18181b; /* zinc-900 */
    --text-2: #3f3f46; /* zinc-700 */
    --text-3: #52525b; /* zinc-600 */
    --muted: #71717a; /* zinc-500 */
    --faint: #a1a1aa; /* zinc-400 */

    /* teal brand */
    --brand: #0d9488; /* teal-600 */
    --brand-strong: #134e4a; /* teal-900 */
    --brand-strong-hover: #115e59; /* teal-800 */
    --brand-50: rgba(13, 148, 136, 0.08);
    --brand-100: rgba(13, 148, 136, 0.14);

    /* dark surfaces */
    --ink: #0b1110; /* footer */
    --ink-band: #0c1b18; /* cta band base */

    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --maxw: 1180px;
    --pad: 24px;
    --section-y: 96px;

    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04);
    --shadow-md: 0 6px 20px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0 24px 60px rgba(16, 24, 40, 0.12);
    --font:
        "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji",
        sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.section {
    padding: var(--section-y) 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    color: var(--brand-strong);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

.h-section {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--text);
}
.sub-section {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-3);
}
.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}
.section-head .eyebrow {
    margin-bottom: 18px;
}
.section-head .sub-section {
    margin-top: 14px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    white-space: nowrap;
}
.btn:active {
    transform: scale(0.98);
}
.btn-primary {
    background: var(--brand-strong);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background: var(--brand-strong-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}
.btn-ghost {
    background: var(--surface);
    color: var(--brand-strong);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--brand);
}
.btn-lg {
    padding: 15px 28px;
    font-size: 16px;
}
.btn svg {
    width: 18px;
    height: 18px;
}

/* ── Navbar (frosted glass) ──────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border-soft);
    transition:
        box-shadow 0.25s ease,
        background 0.25s ease;
}
.nav.scrolled {
    box-shadow: 0 4px 24px rgba(16, 24, 40, 0.06);
    background: rgba(255, 255, 255, 0.85);
}
.nav-inner {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s;
}
.brand:hover {
    opacity: 0.8;
}
.brand img {
    height: 34px;
    width: 34px;
    display: block;
}
.brand span {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-3);
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--brand-strong);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-login {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--brand-strong);
    padding: 8px 14px;
    border-radius: 10px;
    transition: background 0.2s;
}
.nav-login:hover {
    background: var(--brand-50);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 108px 0 72px;
    background:
        radial-gradient(
            900px 420px at 75% 12%,
            var(--brand-50),
            transparent 70%
        ),
        linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%);
    overflow: hidden;
}
.hero .container {
    width: 100%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.hero h1 {
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin: 22px 0 20px;
}
.hero h1 .accent {
    color: var(--brand-strong);
    font-style: italic;
    font-weight: 700;
}
.hero p.lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-3);
    max-width: 540px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}
.hero-note svg {
    width: 18px;
    height: 18px;
    color: var(--brand);
}

/* Hero chat mock (CSS only, illustrative) */
.mock {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 460px;
    margin-left: auto;
}
.mock-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--brand-strong);
    color: #fff;
}
.mock-head .ava {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.mock-head .t {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.1;
}
.mock-head .s {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
}
.mock-body {
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--surface-2);
    min-height: 300px;
}
.bub {
    max-width: 82%;
    padding: 11px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: var(--shadow-sm);
}
.bub.u {
    align-self: flex-end;
    background: var(--brand-strong);
    color: #fff;
    border-bottom-right-radius: 5px;
}
.bub.b {
    align-self: flex-start;
    background: var(--surface);
    color: var(--text-2);
    border: 1px solid var(--border);
    border-bottom-left-radius: 5px;
}
.mock-foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}
.mock-foot .field {
    flex: 1;
    color: var(--faint);
    font-size: 14px;
}
.mock-foot .send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-strong);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mock-foot .send svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* ── Live demo section ───────────────────────────────────── */
.demo {
    position: relative;
    background:
        radial-gradient(
            900px 460px at 50% -10%,
            var(--brand) 0%,
            transparent 70%
        ),
        linear-gradient(160deg, var(--brand-strong) 0%, #0a2c28 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
/* On the green band, the section header flips to light text */
.demo .h-section {
    color: #ffffff;
}
.demo .sub-section {
    color: rgba(255, 255, 255, 0.78);
}
.demo .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}
.demo .eyebrow .dot {
    background: #ffffff;
}
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    max-width: 980px;
    margin: 0 auto;
}
.context-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.context-top {
    display: flex;
    align-items: center;
    gap: 14px;
}
.context-top .badge {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        var(--brand) 0%,
        var(--brand-strong) 100%
    );
    color: #fff;
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.context-top .badge svg {
    width: 26px;
    height: 26px;
}
.context-top h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.context-top p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 2px;
}
.context-card .desc {
    color: var(--text-3);
    font-size: 15.5px;
    line-height: 1.6;
}
.context-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-strong);
    margin-bottom: 12px;
}
.product-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 0;
    font-size: 15px;
    color: var(--text-2);
}
.product-row + .product-row {
    border-top: 1px solid var(--border-soft);
}
.product-row .price {
    color: var(--brand-strong);
    font-weight: 700;
    white-space: nowrap;
}
.chips {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--surface-3);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-3);
}
.widget-frame {
    height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

/* ── Generic card grids ──────────────────────────────────── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}
.card:hover {
    border-color: var(--brand-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.card .ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-50);
    color: var(--brand-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.card .ico svg {
    width: 26px;
    height: 26px;
}
.card h3 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.card p {
    color: var(--text-3);
    font-size: 15px;
    line-height: 1.6;
}

/* ── Shared editorial helpers ────────────────────────────── */
.h-display {
    font-size: clamp(30px, 4.4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: var(--text);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--brand-strong);
}
.text-link svg {
    width: 17px;
    height: 17px;
    transition: transform 0.2s ease;
}
.text-link:hover svg {
    transform: translateX(4px);
}
.section-head--tight {
    margin-bottom: 48px;
}

/* ── Solutions: editorial split + numbered rows (white) ──── */
.solutions {
    background: var(--surface);
}
.solutions-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: start;
}
.solutions-lead {
    position: sticky;
    top: 104px;
}
.solutions-lead .h-display {
    margin: 18px 0 20px;
}
.solutions-lead .sub-section {
    max-width: 420px;
}
.solutions-lead .text-link {
    margin-top: 30px;
}
.problem-list {
    list-style: none;
}
.problem-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    padding: 30px 0;
    align-items: baseline;
}
.problem-list li:first-child {
    padding-top: 4px;
}
.problem-list li + li {
    border-top: 1px solid var(--border);
}
.problem-list .idx {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--brand);
    font-variant-numeric: tabular-nums;
    min-width: 2ch;
}
.problem-body h3 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 9px;
}
.problem-body p {
    color: var(--text-3);
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 460px;
}

/* ── Features: asymmetric bento (subtle tint) ────────────── */
.features {
    background: var(--surface-2);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.bento {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}
.bento-hero {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.bento-hero .ico-lg {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 24px;
}
.bento-hero .ico-lg svg {
    width: 30px;
    height: 30px;
}
.bento-hero h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}
.bento-hero p {
    color: var(--text-3);
    font-size: 16px;
    line-height: 1.65;
    max-width: 420px;
}
.status-card {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    align-self: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 18px;
    box-shadow: var(--shadow-sm);
}
.live-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
}
.live-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--brand);
    animation: ping 1.9s ease-out infinite;
}
@keyframes ping {
    0% {
        transform: scale(0.55);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}
.status-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.status-card span {
    font-size: 12.5px;
    color: var(--muted);
}
.bento-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.bento-item:hover {
    border-color: var(--brand-100);
    box-shadow: var(--shadow-md);
}
.bento-item .ico {
    margin-bottom: 0;
    flex-shrink: 0;
}
.bento-item h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.bento-item p {
    color: var(--text-3);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing {
    background:
        radial-gradient(
            760px 420px at 50% 0%,
            var(--brand-50),
            transparent 60%
        ),
        linear-gradient(180deg, var(--surface) 0%, var(--surface-3) 100%);
}
.pricing-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    max-width: 1040px;
    margin: 0 auto 52px;
    flex-wrap: wrap;
}
.pricing-head .h-section {
    margin-top: 16px;
}
.pricing-sub {
    max-width: 320px;
    text-align: right;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 1040px;
    margin: 0 auto;
}
.tier {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.tier.featured {
    border: 2px solid var(--brand);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.tier .tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-strong);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}
.tier h3 {
    font-size: 20px;
    font-weight: 700;
}
.tier .blurb {
    color: var(--muted);
    font-size: 14px;
    margin-top: 4px;
}
.tier .price {
    margin: 20px 0 4px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.tier .price .amt {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
}
.tier .price .per {
    color: var(--muted);
    font-size: 15px;
}
.tier ul {
    margin: 24px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.tier li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-2);
}
.tier li svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    margin-top: 1px;
}
.tier li.yes svg {
    color: var(--brand);
}
.tier li.no {
    color: var(--faint);
}
.tier li.no svg {
    color: var(--faint);
}
.tier .btn {
    width: 100%;
}
.price-note {
    text-align: center;
    margin-top: 30px;
    color: var(--muted);
    font-size: 14px;
}

/* ── CTA band ────────────────────────────────────────────── */
.cta {
    padding: 40px var(--pad);
}
.cta-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    background:
        radial-gradient(
            600px 300px at 80% 0%,
            rgba(13, 148, 136, 0.35),
            transparent 60%
        ),
        var(--ink-band);
    border-radius: 28px;
    padding: 72px 40px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.cta-inner h2 {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.02em;
    font-weight: 800;
    max-width: 720px;
    margin: 0 auto 16px;
}
.cta-inner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-on-dark {
    background: #fff;
    color: var(--brand-strong);
}
.btn-on-dark:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}
.btn-outline-dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}
.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.12);
}
.cta-fine {
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Footer (darkest) ────────────────────────────────────── */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.62);
    padding: 72px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
}
.footer .brand span {
    color: #fff;
}
.footer .blurb {
    margin-top: 18px;
    max-width: 320px;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}
.footer h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.footer ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer ul a {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}
.footer ul a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-grid,
    .demo-grid,
    .grid-3,
    .price-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: auto;
        padding: 116px 0 56px;
        text-align: center;
    }
    .hero-grid {
        gap: 36px;
    }
    .hero .eyebrow {
        margin: 0 auto;
    }
    .hero p.lead {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta,
    .hero-note {
        justify-content: center;
    }
    .mock {
        margin: 4px auto 0;
    }
    .tier.featured {
        transform: none;
    }
    .nav-links {
        display: none;
    }
    /* Solutions split → stacked, lead no longer sticky */
    .solutions-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .solutions-lead {
        position: static;
        top: auto;
    }
    /* Bento → single column, hero spans full width */
    .bento {
        grid-template-columns: 1fr;
    }
    .bento-hero {
        grid-column: auto;
        grid-row: auto;
    }
    /* Pricing head → stacked, both left-aligned */
    .pricing-head {
        align-items: flex-start;
    }
    .pricing-sub {
        text-align: left;
    }
    .footer-grid {
        gap: 32px;
    }
    :root {
        --section-y: 72px;
    }
}
@media (max-width: 600px) {
    :root {
        --pad: 18px;
        --section-y: 60px;
    }
    .nav-login {
        display: none;
    }
    .nav-inner {
        height: 60px;
    }
    .brand span {
        font-size: 19px;
    }
    .cta {
        padding: 24px 14px;
    }
    .cta-inner {
        padding: 48px 24px;
        border-radius: 22px;
    }
    .bento-hero {
        padding: 30px;
    }
    .bento-item {
        padding: 24px;
    }
    .context-card {
        padding: 26px;
    }
    .widget-frame {
        height: 480px;
    }
    .problem-list li {
        gap: 18px;
        padding: 24px 0;
    }
    .pricing-head {
        margin-bottom: 36px;
    }
}
@media (max-width: 520px) {
    .hero-cta,
    .cta-actions {
        flex-direction: column;
    }
    .hero-cta .btn,
    .cta-actions .btn {
        width: 100%;
    }
}
