:root {
    --bg: #07111f;
    --bg-soft: #0f1c31;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-solid: #ffffff;
    --surface-dark: #091426;
    --text: #0f172a;
    --text-soft: #48566f;
    --text-inverse: #dbe7ff;
    --heading: #081120;
    --primary: #2563eb;
    --primary-strong: #1d4ed8;
    --primary-soft: rgba(37, 99, 235, 0.12);
    --secondary: #14b8a6;
    --secondary-soft: rgba(20, 184, 166, 0.14);
    --success: #0f9f6e;
    --success-soft: rgba(15, 159, 110, 0.12);
    --warning: #f59e0b;
    --danger: #ef4444;
    --line: rgba(148, 163, 184, 0.24);
    --line-strong: rgba(100, 116, 139, 0.26);
    --warm: #f5e8d8;
    --warm-soft: #fff7ed;
    --shadow-lg: 0 30px 70px rgba(6, 16, 34, 0.14);
    --shadow-md: 0 16px 36px rgba(6, 16, 34, 0.08);
    --shadow-sm: 0 8px 20px rgba(6, 16, 34, 0.06);
    --radius-xl: 10px;
    --radius-lg: 8px;
    --radius-md: 6px;
    --radius-sm: 4px;
    --container: 1220px;
    --header-h: 84px;
    --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 30%),
        linear-gradient(225deg, rgba(20, 184, 166, 0.1), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #fffaf3 32%, #f6f8fc 100%);
    line-height: 1.5;
}
body.nav-open { overflow: hidden; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-strong); }
img, svg { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
pre, code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #fff;
    color: #000;
    padding: 12px 16px;
    z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 840px); margin: 0 auto; }
.section { padding: 88px 0; position: relative; }
.section-lg { padding: 108px 0; position: relative; }
.section-xl { padding: 120px 0; position: relative; }
.section-tight { padding: 64px 0; }
.soft-bg { background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(244,247,252,0.9)); border-top: 1px solid rgba(255,255,255,0.7); border-bottom: 1px solid rgba(226,232,240,0.9); }
.dark-band {
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(20,184,166,.18), transparent 20%),
        linear-gradient(180deg, #07111f 0%, #0b1830 100%);
    color: var(--text-inverse);
}
.center-text { text-align: center; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--primary-strong);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}
.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}
.dark-band .eyebrow { color: #9ec0ff; }
.dark-band .eyebrow::before { box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.12); }
h1, h2, h3, h4 { margin: 0 0 18px; color: var(--heading); line-height: 1.12; letter-spacing: 0; }
.dark-band h1, .dark-band h2, .dark-band h3, .dark-band h4 { color: #fff; }
h1 { font-size: clamp(2rem, 2.4vw, 2.7rem); }
h2 { font-size: clamp(1.65rem, 2.0vw, 2.0rem); }
h3 { font-size: 1.35rem; line-height: 1.2; }
p { margin: 0 0 16px; }
.lead { font-size: 1.18rem; color: var(--text-soft); max-width: 760px; line-height: 1.55; }
.dark-band .lead,
.dark-band p,
.dark-band .muted { color: rgba(219, 231, 255, 0.8); }
.muted { color: var(--text-soft); }
.micro { font-size: 0.9rem; color: var(--text-soft); }
.section-head { max-width: 800px; margin-bottom: 36px; }
.section-head.center-text { margin-left: auto; margin-right: auto; }
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.highlight-text { color: var(--primary-strong); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 250, 255, 0.68);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--heading);
}
.brand-mark {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    font-weight: 900;
    background: transparent;
    box-shadow: none;
    flex: 0 0 auto;
}
.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
}
.brand strong { display: block; font-size: 19px; line-height: normal;}
.brand small { display: block; color: var(--text-soft); font-size: 14px; }
.nav-toggle {
    display: none;
    border: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #eff4ff;
    color: var(--heading);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
}
.site-nav { display: flex; align-items: center; gap: 8px; }
.nav-link,
.nav-cta,
.nav-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 10px;
    font-weight: 700;
    transition: all .22s ease;
}
.nav-link { color: var(--text-soft); }
.nav-link:hover,
.nav-link.active {
    color: var(--heading);
    background: rgba(37, 99, 235, 0.08);
}
.nav-ghost {
    color: var(--heading);
    background: rgba(15, 23, 42, 0.04);
}
.nav-ghost:hover { background: rgba(37, 99, 235, 0.08); }
.nav-cta {
    margin-left: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 12px 20px rgba(37, 99, 235, 0.18);
}
.nav-cta:hover { color: #fff; transform: translateY(-1px); }

@media (max-width: 1080px) {
    .site-header { padding: 10px 0; }
    .header-inner { min-height: 70px; }
    .nav-toggle { display: inline-block; }
    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 22px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(255,255,255,0.78);
    }
    .site-nav.open { display: flex; }
    .nav-link,
    .nav-cta,
    .nav-ghost { width: 100%; }
    .nav-cta { margin-left: 0; }
}

.page-hero { padding: 84px 0 48px; }
/* .page-hero h1 { font-size: clamp(2.2rem, 2.1vw, 2.35rem); } */
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button-row.center { justify-content: center; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 500;
    transition: transform .18s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.2);
}
.button.primary:hover { color: #fff; }
.button.secondary {
    color: var(--heading);
    background: rgba(255,255,255,0.78);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: var(--shadow-sm);
}
.button.secondary:hover { color: var(--heading); }
.button.ghost {
    color: var(--heading);
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(148, 163, 184, 0.14);
}
.button.full { width: 100%; }
.button svg { width: 18px; height: 18px; }

.card,
.feature-card,
.price-card,
.compare-card,
.cta-panel,
.visual-card,
.info-card,
.stat-card,
.step-card,
.flow-stage,
.badge-card,
.dashboard-panel,
.mini-panel,
.legal,
.timeline article,
.form-shell,
.highlight-card,
.checklist-card,
.demo-context,
.response-card,
.code-box,
.stack-card,
.metric-card,
.pricing-addon,
.tab-shell {
    position: relative;
    overflow: visible;
    background: var(--surface);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.card::before,
.feature-card::before,
.price-card::before,
.visual-card::before,
.info-card::before,
.cta-panel::before,
.demo-context::before,
.response-card::before,
.form-shell::before,
.highlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.32), rgba(255,255,255,0));
    pointer-events: none;
}
.card,
.feature-card,
.price-card,
.compare-card,
.cta-panel,
.visual-card,
.info-card,
.stat-card,
.step-card,
.flow-stage,
.badge-card,
.dashboard-panel,
.mini-panel,
.legal,
.timeline article,
.form-shell,
.highlight-card,
.checklist-card,
.demo-context,
.response-card,
.code-box,
.stack-card,
.metric-card,
.pricing-addon,
.tab-shell { padding: 28px; }
.card:hover,
.feature-card:hover,
.price-card:hover,
.compare-card:hover,
.visual-card:hover,
.info-card:hover,
.step-card:hover,
.flow-stage:hover,
.badge-card:hover,
.dashboard-panel:hover,
.mini-panel:hover,
.highlight-card:hover,
.stack-card:hover,
.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.price-card.featured {
    border-color: rgba(37, 99, 235, 0.32);
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(255, 255, 255, 0.95));
}
.price-card.featured::after {
    content: none;
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-strong);
    background: rgba(37, 99, 235, 0.1);
}
.center-stack > * + * { margin-top: 12px; }
.surface-dark {
    background: linear-gradient(180deg, #081120, #0d1830);
    border-color: rgba(148, 163, 184, 0.16);
    color: #dbe7ff;
}
.surface-dark h3,
.surface-dark h4,
.surface-dark .muted { color: #dbe7ff; }
.surface-dark .micro { color: rgba(219, 231, 255, 0.72); }

.hero {
    padding: 56px 0 90px;
    overflow: hidden;
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.42;
}
.hero::before {
    width: 360px;
    height: 360px;
    top: -120px;
    right: -60px;
    background: rgba(37, 99, 235, 0.22);
}
.hero::after {
    width: 260px;
    height: 260px;
    left: -80px;
    bottom: -60px;
    background: rgba(20, 184, 166, 0.18);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: flex-start;
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 { max-width: 760px; }
.hero-copy .lead { margin-bottom: 22px; }
.hero-actions { margin-bottom: 18px; }
.hero-note { margin-top: 14px; }
.pill-row, .trust-list, .mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}
.pill,
.trust-list li,
.mini-badges li,
.stat-pill,
.inline-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: var(--shadow-sm);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--heading);
}
.inline-pill { font-size: 0.84rem; }
.trust-list li::before,
.mini-badges li::before,
.inline-pill::before,
.stat-pill::before,
.pill::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.hero-visual-wrap { position: relative; z-index: 1; }
.visual-orb,
.visual-orb-secondary {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.75;
}
.visual-orb {
    width: 120px;
    height: 120px;
    top: 6%;
    right: 8%;
    background: rgba(37, 99, 235, 0.18);
}
.visual-orb-secondary {
    width: 90px;
    height: 90px;
    bottom: 10%;
    left: 8%;
    background: rgba(20, 184, 166, 0.18);
}
.dashboard-panel {
    padding: 24px;
    min-height: 620px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247, 250, 255, 0.94));
}
.legacy-dashboard-panel { display: none; }
.asset-figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,248,255,0.95));
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: var(--shadow-lg);
}
.asset-figure img {
    display: block;
    width: 100%;
    height: auto;
}
.asset-caption {
    display: block;
    padding: 10px 14px 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255,255,255,0.82);
    color: var(--text-soft);
    font-size: 0.78rem;
    line-height: 1.45;
}
.lightbox-target {
    position: relative;
}
.lightbox-target img {
    cursor: zoom-in;
}
.image-lightbox[hidden] {
    display: none;
}
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: min(5vw, 44px);
    background: rgba(3, 7, 18, 0.86);
    backdrop-filter: blur(10px);
}
.image-lightbox__panel {
    width: min(1160px, 100%);
    max-height: 100%;
    display: grid;
    gap: 14px;
}
.image-lightbox__close {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border-color: transparent !important;
    background: transparent;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    font-family: var(--font);
    outline:none !important;
}
.image-lightbox__close:hover,.image-lightbox__close:active { 
    border-color: transparent !important;
    background: transparent;
    outline:none !important;
 }
.image-lightbox__image {
    display: block;
    width: 100%;
    max-height: calc(100vh - 156px);
    object-fit: contain;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}
.image-lightbox__caption {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.5;
    text-align: center;
}
body.lightbox-open {
    overflow: hidden;
}
.hero-asset-panel {
    padding: 14px;
    min-height: 520px;
}
.hero-asset-panel img {
    min-height: 492px;
    object-fit: cover;
}
.solution-asset {
    padding: 18px;
    align-self: stretch;
}
.page-asset-slot,
.compact-asset-slot {
    padding: 0;
    background: transparent;
    border-radius: 14px;
}
.page-asset-slot img,
.compact-asset-slot img {
    display: block;
    width: 100%;
}
.page-asset-slot img {
    aspect-ratio: auto;
    object-fit: contain;
}
.compact-asset-slot {
    margin: 24px 0 0;
}
.solution-list { max-width: 680px; }
.dashboard-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}
.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--heading);
}
.dashboard-brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(20,184,166,.14));
}
.metric-row,
.metric-grid,
.badge-grid,
.card-grid,
.feature-grid,
.info-grid,
.security-grid,
.flow-grid,
.three-col,
.two-col,
.comparison-grid,
.pricing-grid,
.stack-grid,
.visual-grid,
.section-grid,
.support-grid,
.showcase-grid,
.check-grid,
.mini-grid,
.dashboard-grid,
.demo-grid,
.response-grid,
.benefit-grid,
.tile-grid,
.pricing-compare-grid {
    display: grid;
    gap: 22px;
}
.metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metric-card {
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(148, 163, 184, 0.18);
}
.metric-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--heading);
    letter-spacing: 0;
}
.metric-label { font-size: 0.9rem; color: var(--text-soft); font-weight: 700; }
.dashboard-grid { grid-template-columns: 1.1fr .9fr; margin-top: 22px; }
.chat-window,
.log-panel,
.mock-window,
.code-box {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.mock-window,
.code-box,
.log-panel {
    background: linear-gradient(180deg, #081120, #0c1629);
    color: #dbe7ff;
}
.mock-bar,
.window-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.mock-bar span,
.window-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.3);
}
.mock-window pre,
.code-box pre {
    margin: 0;
    padding: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}
.chat-window {
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(255,255,255,0.98));
    padding: 18px;
}
.chat-message {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}
.chat-bubble {
    max-width: 92%;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.55;
}
.chat-bubble.user {
    margin-left: auto;
    background: rgba(37, 99, 235, 0.1);
    border-bottom-right-radius: 6px;
}
.chat-bubble.ai {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-bottom-left-radius: 6px;
}
.log-panel { padding-bottom: 14px; }
.log-items { padding: 16px 18px 0; display: grid; gap: 12px; }
.log-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
}
.log-item strong { display: block; color: #fff; }
.log-item span { color: rgba(219, 231, 255, 0.74); font-size: 0.88rem; }
.log-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    background: rgba(96, 165, 250, 0.14);
    color: #9ec0ff;
    white-space: nowrap;
}
.floating-chip,
.status-pill,
.visual-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: var(--shadow-md);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--heading);
}
.status-pill { bottom: 22px; left: -18px; }
.floating-chip.top-right { top: 24px; right: -16px; }
.floating-chip.bottom-right { bottom: 110px; right: -18px; }
.floating-chip svg,
.status-pill svg,
.visual-chip svg { width: 18px; height: 18px; color: var(--primary); }

.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-col,
.comparison-grid,
.pricing-compare-grid,
.section-grid,
.showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.support-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.security-grid { grid-template-columns: 1.2fr .8fr; align-items: start; }
.flow-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.visual-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.response-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tile-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stack-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.preview-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: var(--shadow-md);
}
.preview-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #f7fbff;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}
.preview-meta { padding: 22px; }
.preview-meta span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--primary-strong);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.preview-meta p {
    margin-bottom: 0;
    color: var(--text-soft);
}

.card,
.info-card,
.step-card,
.flow-stage,
.badge-card,
.checklist-card,
.highlight-card,
.stack-card { min-height: 100%; }
.icon-badge,
.feature-icon,
.step-icon,
.compare-icon,
.inline-icon,
.badge-icon,
.stat-icon {
    width: 50px;
    height: 50px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.14));
    color: var(--primary-strong);
}
.icon-badge svg,
.feature-icon svg,
.step-icon svg,
.compare-icon svg,
.inline-icon svg,
.badge-icon svg,
.stat-icon svg { width: 24px; height: 24px; }
.card-list,
.feature-list,
.check-list,
.clean-list,
.compare-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 11px;
}
.clean-list li,
.card-list li,
.feature-list li,
.check-list li,
.compare-list li {
    position: relative;
    padding-left: 26px;
    color: var(--text-soft);
}
.clean-list li::before,
.card-list li::before,
.feature-list li::before,
.check-list li::before,
.compare-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.problem-card { padding-right: 34px; }
.problem-card .problem-index {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.24);
}

.flow-stage { text-align: center; }
.flow-stage::after {
    content: "";
    position: absolute;
    top: 52px;
    right: -22px;
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, rgba(37,99,235,.35), rgba(20,184,166,.35));
}
.flow-stage:last-child::after { display: none; }
.flow-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(37,99,235,.08);
    color: var(--primary-strong);
    font-size: 0.8rem;
    font-weight: 900;
}
.flow-caption { color: var(--text-soft); font-size: 0.96rem; }

.badge-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 22px; }
.badge-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.76);
}
.badge-card strong { display: block; color: var(--heading); }
.badge-card span { color: var(--text-soft); font-size: 0.88rem; }

.visual-card.large { padding: 34px; min-height: 100%; }
.pro-change-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 34px;
    align-items: start;
}
.pro-change-panel .compact-asset-slot {
    margin: 0;
}
.pro-change-list {
    margin-top: 22px;
}
.pro-change-list li + li {
    margin-top: 10px;
}
.pro-change-panel .button-row {
    margin-top: 22px;
}
.pro-change-panel .stat-block {
    display: grid;
    align-content: start;
    gap: 6px;
}
.pro-change-panel .stat-block strong {
    line-height: 1.18;
}
.pro-change-panel .stat-block span {
    line-height: 1.35;
}
.pro-change-panel .signal-row {
    margin-top: 25px;
}
.dashboard-shell {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f8fbff, #eff5ff);
    border: 1px solid rgba(148, 163, 184, 0.18);
}
.dashboard-header-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.dashboard-title { font-size: 1rem; font-weight: 900; }
.dashboard-sub { color: var(--text-soft); font-size: 0.9rem; }
.signal-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.signal-tag {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--heading);
}
.line-chart {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: end;
    gap: 10px;
    min-height: 120px;
    margin: 18px 0 22px;
}
.line-chart span {
    display: block;
    border-radius: 999px 999px 12px 12px;
    background: linear-gradient(180deg, rgba(37,99,235,.24), rgba(20,184,166,.64));
}
.stats-strip { margin-top: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.stat-block {
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
}
.stat-block strong { display: block; font-size: 1.2rem; color: var(--heading); }
.stat-block span { color: var(--text-soft); font-size: 0.84rem; }
.mock-sidebar {
    margin-top: 20px;
    display: grid;
    gap: 14px;
}
.side-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
}
.side-chip strong { font-size: 0.92rem; }
.side-chip span { font-size: 0.8rem; color: var(--text-soft); }
.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(15, 159, 110, 0.35);
    animation: pulse 2s infinite;
}

.compare-card.bad { background: linear-gradient(180deg, rgba(255,243,243,.88), rgba(255,255,255,.94)); border-color: rgba(239, 68, 68, 0.2); }
.compare-card.good { background: linear-gradient(180deg, rgba(237,255,248,.88), rgba(255,255,255,.94)); border-color: rgba(15, 159, 110, 0.24); }
.compare-card h3 { margin-bottom: 12px; }
.compare-card .micro { margin-top: 12px; }
.compare-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.compare-card.bad .compare-label { background: rgba(239,68,68,.1); color: #b91c1c; }
.compare-card.good .compare-label { background: rgba(15,159,110,.12); color: #047857; }

.price { font-size: clamp(2rem, 3vw, 3rem); font-weight: 950; letter-spacing: 0; margin-bottom: 6px; }
.plan-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}
.plan-sites {
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 850;
    white-space: nowrap;
}
.billing-ref {
    margin: -2px 0 14px;
    color: var(--text-soft);
    font-size: 0.94rem;
    font-weight: 800;
}
.plan-availability {
    margin: 12px 0 0;
    text-align: center;
}
.price-options {
    display: grid;
    gap: 12px;
    margin: 6px 0 18px;
}
.price-option {
    padding: 14px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 12px;
    background: rgba(255,255,255,0.72);
}
.price-option span,
.price-option small {
    display: block;
}
.price-option span {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.price-option strong {
    display: block;
    color: var(--heading);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.08;
    margin-top: 4px;
}
.price-option small {
    color: var(--text-soft);
    margin-top: 4px;
}
.price-note {
    margin: -2px 0 14px;
    color: var(--primary-strong);
    font-size: 0.92rem;
    font-weight: 850;
}
.price-sub { color: var(--text-soft); margin-bottom: 18px; }
.pricing-note {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(15,23,42,.04);
    font-size: 0.9rem;
    color: var(--text-soft);
}
.table-wrap {
    overflow-x: auto;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.76);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}
table { width: 100%; min-width: 700px; border-collapse: collapse; }
th, td { padding: 18px 20px; text-align: left; border-bottom: 1px solid rgba(148, 163, 184, 0.14); }
th { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); background: rgba(248,250,252,.9); }
td strong { color: var(--heading); }
.table-check { color: var(--success); font-weight: 900; }
.table-dash { color: #94a3b8; }

.tab-shell { padding: 20px; }
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}
.tab-button {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255,255,255,0.82);
    color: var(--text-soft);
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s ease;
}
.tab-button:hover,
.tab-button.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    box-shadow: 0 16px 26px rgba(37, 99, 235, 0.18);
}
.demo-panel { display: none; }
.demo-panel.active { display: block; }
.demo-context { margin-bottom: 20px; }
.response-card { min-height: 100%; }
.response-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.response-card.bad .response-badge { background: rgba(239,68,68,.1); color: #b91c1c; }
.response-card.good .response-badge { background: rgba(15,159,110,.12); color: #047857; }
.response-card.bad { background: linear-gradient(180deg, rgba(255,243,243,.9), rgba(255,255,255,.96)); border-color: rgba(239,68,68,.18); }
.response-card.good { background: linear-gradient(180deg, rgba(237,255,248,.9), rgba(255,255,255,.96)); border-color: rgba(15,159,110,.22); }
.response-card blockquote {
    margin: 0;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(148, 163, 184, 0.16);
    font-size: 0.98rem;
}
.response-card footer { margin-top: 14px; color: var(--text-soft); font-size: 0.9rem; }
.demo-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.demo-flow span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(37,99,235,.08);
    color: var(--heading);
    font-size: 0.84rem;
    font-weight: 800;
}

.value-story-section {
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,247,255,.8));
}
.value-story-grid {
    display: grid;
    gap: 18px;
}
.value-scenario-card {
    display: grid;
    grid-template-columns: minmax(240px, .9fr) minmax(0, 1.35fr) minmax(220px, .8fr);
    gap: 18px;
    align-items: stretch;
    padding: 22px;
    border-radius: 12px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(148,163,184,.18);
    box-shadow: var(--shadow-sm);
}
.value-scenario-question {
    display: grid;
    align-content: start;
    gap: 10px;
}
.value-scenario-question h3 {
    margin: 0;
}
.value-scenario-question p,
.value-scenario-columns p,
.value-scenario-impact span {
    color: var(--text-soft);
}
.value-scenario-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.value-scenario-columns > div,
.value-scenario-impact {
    padding: 16px;
    border-radius: 10px;
    background: rgba(248,250,252,.86);
    border: 1px solid rgba(148,163,184,.14);
}
.value-scenario-impact {
    display: grid;
    align-content: start;
    gap: 8px;
    background: linear-gradient(180deg, rgba(236,253,245,.9), rgba(255,255,255,.92));
    border-color: rgba(15,159,110,.18);
}
.value-scenario-impact strong {
    color: var(--heading);
}
.upgrade-takeaway {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
    padding: 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(7,17,31,.96), rgba(12,31,58,.94));
    color: #eaf2ff;
    box-shadow: var(--shadow-md);
}
.upgrade-takeaway h3 {
    color: #fff;
    margin-top: 12px;
}
.upgrade-takeaway p {
    color: rgba(234,242,255,.78);
}
.upgrade-takeaway .pricing-note {
    grid-column: 1 / -1;
    margin-top: 0;
    background: rgba(255,255,255,.08);
    color: rgba(234,242,255,.84);
}
.free-pro-upgrade {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: 24px;
    align-items: stretch;
}
.upgrade-card {
    position: relative;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255,255,255,0.86);
    box-shadow: var(--shadow-sm);
}
.upgrade-card.pro {
    border-color: rgba(37, 99, 235, 0.24);
    background:
        linear-gradient(135deg, rgba(239,246,255,0.96), rgba(240,253,250,0.92)),
        rgba(255,255,255,0.9);
    box-shadow: var(--shadow-md);
}
.upgrade-card h3 {
    margin: 12px 0 10px;
}
.upgrade-card p {
    color: var(--text-soft);
}
.pro-value-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}
.pro-value-strip span {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: var(--heading);
    font-weight: 900;
    font-size: 0.9rem;
    line-height: 1.28;
}
.pro-upgrade-list li strong {
    color: var(--heading);
}


.faq-list { display: grid; gap: 12px; }
details {
    border-radius: 22px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.76);
    box-shadow: var(--shadow-sm);
    padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 850; color: var(--heading); }
details p { margin-top: 12px; color: var(--text-soft); }
.guide-list,
.timeline,
.form-card { display: grid; gap: 18px; }
.docs-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }
.docs-nav { position: sticky; top: 118px; display: grid; gap: 8px; }
.docs-search-panel {
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow-sm);
}
.docs-search-panel label {
    color: var(--heading);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.docs-search-panel input {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255,255,255,0.94);
    color: var(--heading);
    font: inherit;
}
.docs-search-panel input:focus {
    outline: 3px solid rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.5);
}
.docs-search-status {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.4;
}
.docs-nav a[hidden] {
    display: none;
}
.docs-search-active .docs-search-match {
    scroll-margin-top: 120px;
}
.docs-search-active .docs-search-match > h2 {
    text-decoration: underline;
    text-decoration-color: rgba(37, 99, 235, 0.35);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}
.docs-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.72);
    color: var(--text-soft);
    border: 1px solid rgba(255,255,255,0.72);
}
.docs-nav a:hover { color: var(--heading); background: rgba(37,99,235,.08); }
.docs-content section { padding: 30px 0; border-bottom: 1px solid rgba(148, 163, 184, 0.14); }
.docs-hub-layout { grid-template-columns: 280px minmax(0, 1fr); }
.docs-hub-nav {
    max-height: calc(100vh - 140px);
    overflow: auto;
    padding-right: 4px;
}
.docs-hub-nav a {
    padding: 10px 12px;
    font-size: 0.9rem;
    line-height: 1.25;
}
.docs-hub-content section:first-child { padding-top: 0; }
.docs-hub-content h2 { margin-bottom: 12px; }
.docs-hub-content h3 { margin-bottom: 8px; }
.docs-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}
.docs-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(37,99,235,.08);
    color: var(--primary-strong);
    border: 1px solid rgba(37,99,235,.14);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.docs-badge-free {
    background: rgba(15,159,110,.1);
    color: #047857;
    border-color: rgba(15,159,110,.18);
}
.docs-badge-pro {
    background: rgba(37,99,235,.1);
    color: #1d4ed8;
    border-color: rgba(37,99,235,.18);
}
.docs-badge-warn {
    background: rgba(239,68,68,.1);
    color: #b91c1c;
    border-color: rgba(239,68,68,.18);
}
.docs-callout {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 10px;
    background: rgba(37,99,235,.07);
    border: 1px solid rgba(37,99,235,.16);
    color: var(--text);
}
.docs-callout.security {
    background: linear-gradient(135deg, rgba(7,17,31,.95), rgba(12,31,58,.92));
    border-color: rgba(255,255,255,.12);
    color: #eaf2ff;
}
.docs-card-grid {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}
.docs-card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.docs-card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.docs-card,
.endpoint-card {
    padding: 22px;
    border-radius: 10px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(148,163,184,.18);
    box-shadow: var(--shadow-sm);
}
.docs-card .code-row { margin-top: 14px; }
.docs-steps {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 24px;
    color: var(--text);
}
.docs-steps li { padding-left: 4px; }
.endpoint-card {
    margin-top: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.92));
}
.endpoint-list {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 10px 16px;
    margin-top: 16px;
}
.endpoint-list dt {
    color: var(--heading);
    font-weight: 900;
}
.endpoint-list dd {
    margin: 0;
    color: var(--text-soft);
}
.code-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #081120, #0d1830);
    color: #dbe7ff;
    overflow: auto;
}
.code-row.stacked {
    align-items: flex-start;
    flex-direction: column;
}
.code-row code {
    overflow-wrap: anywhere;
    line-height: 1.65;
}
.code-row button {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 900;
    cursor: pointer;
}

label { display: block; margin-bottom: 8px; font-weight: 800; color: var(--heading); }
input, select, textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 14px;
    padding: 13px 14px;
    background: rgba(255,255,255,0.88);
}
input:focus, select:focus, textarea:focus {
    outline: 3px solid rgba(37,99,235,.12);
    border-color: rgba(37,99,235,.48);
}
.form-shell { display: grid; gap: 14px; }
button:disabled { opacity: 0.7; cursor: not-allowed; }

.site-footer {
    margin-top: 0;
    padding: 72px 0 28px;
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.14), transparent 28%),
        linear-gradient(180deg, #07111f, #0b1830);
    color: #dbe7ff;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1fr 1fr 1fr; gap: 28px; align-items: start; }
.footer-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}
.footer-visual img {
    display: block;
    width: 100%;
    min-height: 170px;
    object-fit: cover;
}
.footer-grid a { display: block; color: rgba(219, 231, 255, 0.78); margin: 8px 0; }
.footer-grid a:hover { color: #fff; }
.footer-brand { color: #fff; }
.footer-copy { max-width: 460px; color: rgba(219, 231, 255, 0.78); margin-top: 14px; }
.footer-title {
    margin-bottom: 12px;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(219, 231, 255, 0.64);
    font-size: 0.9rem;
}

/* Premium visual pass 2: more editorial rhythm, fewer template-like cards. */
.site-header { background: rgba(248, 251, 255, 0.78); }

.section { padding: 112px 0; }
.section-tight { padding: 42px 0 42px; }
.section-head { max-width: 900px; margin-bottom: 46px; }
.wide-head {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    gap: 44px;
    align-items: end;
    max-width: none;
}
.wide-head .lead { margin-bottom: 0; }

.hero {
    padding: 86px 0 112px;
    background:
        linear-gradient(112deg, rgba(219, 234, 254, 0.86) 0%, rgba(236, 253, 245, 0.76) 48%, rgba(255, 247, 237, 0.92) 100%);
}
.hero-grid {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 58px;
    align-items: flex-start;
}
.hero-copy h1 {
    max-width: 780px;
    margin-bottom: 24px;
}
.hero-copy .lead {
    max-width: 700px;
    margin-bottom: 28px;
}
.hero-note { max-width: 620px; }
.hero-asset-panel {
    padding: 0;
    min-height: 0;
    border-radius: var(--radius-xl);
    background: transparent;
}
.hero-asset-panel img {
    min-height: 0;
    object-fit: contain;
}
.hero-context-panel {
    width: min(420px, 86%);
    margin: -54px 0 0 auto;
    position: relative;
    z-index: 2;
    padding: 22px 24px;
    border-radius: 10px;
    background: rgba(8, 17, 32, 0.94);
    color: #dbe7ff;
    box-shadow: var(--shadow-lg);
}
.hero-context-panel strong,
.hero-context-panel span { display: block; }
.hero-context-panel strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 6px;
}
.hero-context-panel span {
    color: rgba(219, 231, 255, 0.78);
    font-size: .94rem;
    line-height: 1.55;
}

.button {
    border-radius: 12px;
    min-height: 54px;
    padding: 0 22px;
    margin-top: 15px;
}

.button.primary,
.nav-cta {
    background: linear-gradient(135deg, #1d4ed8, #0f766e);
    margin-top: 15px;
}
.flow-stage .icon-badge, .flow-stage .feature-icon, .flow-stage .step-icon, .flow-stage .compare-icon, 
.flow-stage .inline-icon, .flow-stage .badge-icon, .flow-stage .stat-icon{
    margin-left: 10px;
}
@media (max-width: 640px) {
    .button.primary,
    .nav-cta, .hero-actions{
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }
    .button-row { gap: 4px; }
}

@media (max-width: 900px) {
    .docs-hub-nav {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
    .docs-card-grid.two,
    .docs-card-grid.three {
        grid-template-columns: 1fr;
    }
    .endpoint-list {
        grid-template-columns: 1fr;
    }
    .value-scenario-card {
        grid-template-columns: 1fr;
    }
    .upgrade-takeaway {
        grid-template-columns: 1fr;
    }
    .free-pro-upgrade {
        grid-template-columns: 1fr;
    }
    .pro-value-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .docs-hub-content section {
        padding: 24px 0;
    }
    .docs-card,
    .endpoint-card,
    .docs-callout {
        padding: 18px;
    }
    .docs-pill-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .docs-badge {
        justify-content: center;
    }
    .value-scenario-card {
        padding: 18px;
    }
    .value-scenario-columns {
        grid-template-columns: 1fr;
    }
    .upgrade-takeaway {
        padding: 20px;
    }
    .upgrade-card {
        padding: 22px;
    }
    .pro-value-strip {
        grid-template-columns: 1fr;
    }
}

.header .button.primary,
.nav-cta {
  margin-top: 0px;
}
.button.secondary {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.12);
}
.button.ghost {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.16);
}

.badge-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.badge-card {
    border-radius: 0;
    border: 0;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    background: transparent;
    padding: 24px 28px;
}
.badge-card:last-child { border-right: 0; }

.editorial-band {
    background:
        linear-gradient(180deg, #fffaf3 0%, #f8fbff 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.editorial-split {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 68px;
    align-items: flex-start;
}
.editorial-copy h2 { max-width: 760px; }
.editorial-points {
    list-style: none;
    padding: 0;
    margin: 34px 0 0;
    display: grid;
    gap: 20px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}
.editorial-points li {
    padding-top: 20px;
    color: var(--text-soft);
    line-height: 1.5;
}
.editorial-points strong { color: var(--heading); }
.human-asset-panel,
.solution-asset,
.pro-workflow-panel,
.answer-comparison-asset {
    padding: 0;
    background: transparent;
    border-radius: var(--radius-lg);
}
.human-asset-panel img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}
.solution-asset img,
.pro-workflow-panel img,
.answer-comparison-asset img {
    aspect-ratio: auto;
    object-fit: contain;
}

.tool-layer-section {
    background: #f8fbff;
}
.solution-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
    margin-top: 30px;
}

.flow-stage {
    text-align: left;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-top: 2px solid rgba(37, 99, 235, 0.18);
    padding: 25px;
}
.flow-stage::after { display: none; }
.flow-label {
    border-radius: 8px;
    background: rgba(20, 184, 166, .1);
}

.feature-ledger-section {
    background:
        linear-gradient(180deg, #081120 0%, #0b1830 58%, #f8fbff 58%, #f8fbff 100%);
    color: #dbe7ff;
}
.feature-ledger-section h2,
.feature-ledger-section .eyebrow { color: #fff; }
.feature-ledger-section .lead { color: rgba(219, 231, 255, 0.78); }
.feature-ledger-head {
    max-width: none;
}
.feature-ledger-head h2 {
    max-width: 760px;
    margin-top: 0;
}
.feature-ledger-head .lead {
    max-width: 760px;
}
.feature-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #e5e9f1;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: var(--shadow-lg);
}
.feature-ledger .feature-card {
    border-radius: 0;
    box-shadow: none;
    border: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: none;
    padding: 32px;
}
.feature-ledger .feature-card:hover,
.flow-stage:hover,
.badge-card:hover {
    transform: none;
}
.feature-ledger .feature-icon {
    border-radius: 10px;
    margin-bottom: 24px;
}

#pro .visual-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 58px;
    align-items: flex-start;
}
.pro-editorial-column {
    display: grid;
    gap: 28px;
}
.pro-feature-list {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
}
.pro-feature-list .stack-card {
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    background: transparent;
    padding: 20px 0;
}
.pro-feature-list .stack-card:hover {
    transform: none;
    box-shadow: none;
}
.pro-feature-list .inline-pill {
    box-shadow: none;
    border-radius: 8px;
    padding: 7px 10px;
    margin-bottom: 8px;
}

.security-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    gap: 56px;
    align-items: flex-start;
}
.security-art-stack {
    display: grid;
    gap: 18px;
}
.security-shield-figure {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
}
.security-shield-figure img {
    width: 100%;
    display: block;
}
.code-box {
    border-radius: 10px;
}

.editorial-preview-grid {
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 18px;
}
.preview-card {
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(6, 16, 34, 0.08);
}
.preview-card:first-child {
    grid-row: span 2;
}
.preview-card:first-child img {
    aspect-ratio: auto;
}
.preview-meta {
    padding: 24px;
}

.answer-comparison-asset {
    margin: 0 auto 28px;
    max-width: 960px;
}
.response-card {
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}
.response-card blockquote {
    line-height: 1.5;
    border-radius: 10px;
}
.table-wrap {
    border-radius: 10px;
}
details {
    border-radius: 10px;
    box-shadow: none;
}
.cta-panel {
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(236,253,245,.82));
}

.card,
.feature-card,
.price-card,
.compare-card,
.visual-card,
.info-card,
.stat-card,
.step-card,
.badge-card,
.mini-panel,
.legal,
.timeline article,
.form-shell,
.highlight-card,
.checklist-card,
.demo-context,
.response-card,
.code-box,
.stack-card,
.metric-card,
.pricing-addon,
.tab-shell,
.download-panel {
    border-radius: var(--radius-md);
}

.button,
.nav-link,
.nav-cta,
.nav-ghost,
.tab-button,
.inline-pill,
.pricing-note,
input,
select,
textarea {
    border-radius: var(--radius-sm);
}

.asset-figure,
.preview-card,
.table-wrap,
.cta-panel,
.footer-visual,
.security-shield-figure {
    border-radius: var(--radius-lg);
}

.asset-figure img,
.preview-card img,
.security-shield-figure img,
.compact-asset-slot img,
.page-asset-slot img {
    border-radius: var(--radius-md);
}

.asset-caption {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: rgba(255,255,255,0.9);
}

.download-panel {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: var(--shadow-md);
}

.download-panel .button-row {
    margin-top: 22px;
}

.roadmap-section {
    background:
        linear-gradient(180deg, rgba(255,250,243,0.86), rgba(248,251,255,0.94));
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    background: rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: var(--shadow-md);
}
.roadmap-grid.compact-roadmap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.roadmap-item,
.roadmap-note {
    background: rgba(255,255,255,0.92);
    padding: 28px;
}
.roadmap-item h3,
.roadmap-note h2 {
    line-height: 1.12;
}
.roadmap-item p,
.roadmap-note p {
    color: var(--text-soft);
    margin-bottom: 0;
}
.roadmap-status {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.09);
    color: var(--primary-strong);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

[data-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-float] { animation: float 6s ease-in-out infinite; }
[data-float="delay"] { animation-delay: 1.2s; }
[data-float="slow"] { animation-duration: 8s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(15, 159, 110, 0.34); }
    70% { box-shadow: 0 0 0 12px rgba(15, 159, 110, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 159, 110, 0); }
}

@media (max-width: 1120px) {
    h2 { font-size: clamp(1.85rem, 2vw, 2rem); }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tile-grid, .badge-grid, .info-grid, .benefit-grid, .stack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dashboard-grid, .visual-grid, .security-grid, .showcase-grid { grid-template-columns: 1fr; }
    .wide-head,
    .editorial-split,
    #pro .visual-grid,
    .security-grid { grid-template-columns: 1fr; }
    .roadmap-grid,
    .roadmap-grid.compact-roadmap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .editorial-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .preview-card:first-child { grid-row: auto; }
    .status-pill { left: auto; right: 18px; bottom: 18px; }
    .floating-chip.top-right { right: 12px; }
    .floating-chip.bottom-right { right: 12px; }
}

@media (max-width: 980px) {
    /*
    h1 { font-size: clamp(2.35rem, 6vw, 3.2rem); }
    h2 { font-size: clamp(1.8rem, 4.8vw, 2.25rem); }
    */
    .site-header { padding: 10px 0; }
    .header-inner { min-height: 70px; }
    .nav-toggle { display: inline-block; }
    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 22px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(255,255,255,0.78);
    }
    .site-nav.open { display: flex; }
    .nav-link,
    .nav-cta,
    .nav-ghost { width: 100%; }
    .nav-cta { margin-left: 0; }
    .hero-grid,
    .two-col,
    .comparison-grid,
    .pricing-grid,
    .security-grid,
    .pro-change-grid,
    .flow-grid,
    .support-grid,
    .response-grid,
    .docs-layout,
    .card-grid,
    .three-col,
    .section-grid,
    .mini-grid,
    .preview-grid,
    .pricing-compare-grid,
    .stack-grid,
    .benefit-grid,
    .metric-grid,
    .stats-strip,
    .check-grid,
    .tile-grid { grid-template-columns: 1fr; }
    .badge-grid,
    .feature-grid,
    .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .badge-grid { border: 0; gap: 1px;  }
    .badge-card { background: rgba(255,255,255,.72); border-right: 0; }
    .feature-ledger { grid-template-columns: 1fr; }
    .solution-list { grid-template-columns: 1fr; }
    .dashboard-panel { min-height: auto; }
    .docs-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .flow-stage::after { display: none; }
}

@media (max-width: 640px) {
    .container, .narrow { width: min(calc(100% - 24px), var(--container)); }
    .section, .section-lg, .section-xl { padding: 64px 0; }
    .page-hero { padding: 72px 0 36px; }
    .hero { padding-top: 32px; }
    /* h1 { font-size: 2.42rem; line-height: 1.12; } 
    .hero-copy h1 { font-size: 2.58rem; }
    .page-hero h1 { font-size: 2.22rem; }
    */
    h2 { font-size: 1.86rem; line-height: 1.16; }
    h3 { font-size: 1.2rem; }
    .lead { font-size: 1.03rem; line-height: 1.68; }
    .button, .button-row .button { width: 100%; }
    .button-row { width: 100%; }
    .pill-row, .trust-list { display: grid; }
    .feature-grid,
    .badge-grid,
    .info-grid,
    .editorial-preview-grid,
    .roadmap-grid,
    .roadmap-grid.compact-roadmap,
    .footer-grid,
    .docs-nav { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .dashboard-panel,
    .card,
    .feature-card,
    .price-card,
    .compare-card,
    .cta-panel,
    .visual-card,
    .info-card,
    .stat-card,
    .step-card,
    .flow-stage,
    .badge-card,
    .legal,
    .timeline article,
    .form-shell,
    .highlight-card,
    .checklist-card,
    .demo-context,
    .response-card,
    .stack-card,
    .metric-card { padding: 22px; }
    .status-pill,
    .floating-chip,
    .visual-chip { position: static; margin-top: 14px; }
    .hero-asset-panel { min-height: 0; padding: 10px; }
    .hero-asset-panel img { min-height: 0; object-fit: contain; }
    .hero-context-panel {
        width: 100%;
        margin: 14px 0 0;
    }
    .feature-ledger .feature-card { padding: 24px; }
    .security-grid { grid-template-columns: 1fr; }
    table {
        min-width: 0;
        table-layout: fixed;
    }
    th,
    td {
        overflow-wrap: anywhere;
        padding: 12px 10px;
    }
    th {
        font-size: 0.7rem;
        letter-spacing: 0.04em;
    }
    .table-wrap {
        overflow-x: visible;
    }
}

/* Web Development services page */
.service-hero {
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(248, 251, 255, 0.96) 0%, rgba(240, 253, 250, 0.88) 48%, rgba(255, 251, 235, 0.82) 100%);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 58px;
    align-items: center;
}

/*
.service-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 4.8vw, 4.45rem);
}
*/
.service-hero-copy .lead {
    max-width: 760px;
}

.service-proof-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.service-proof-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(100, 116, 139, 0.16);
    border-radius: var(--radius-md);
    color: var(--heading);
    font-weight: 800;
    line-height: 1.35;
}

.service-proof-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #0f766e;
}

.service-visual {
    margin: 0;
    min-width: 0;
}

.service-visual-hero {
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.service-visual-hero img,
.service-inline-image img,
.service-wide-image img,
.showcase-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.workspace-frame {
    min-height: 520px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
    padding: 22px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(8, 17, 32, 0.94), rgba(15, 23, 42, 0.9)),
        #081120;
    overflow: hidden;
}

.workspace-browser {
    display: flex;
    gap: 8px;
}

.workspace-browser span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
}

.workspace-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(170px, .8fr);
    gap: 18px;
    min-height: 320px;
}

.workspace-main,
.workspace-side,
.workspace-metrics strong {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
}

.workspace-main {
    position: relative;
    overflow: hidden;
}

.workspace-main::before,
.workspace-main::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.78);
}

.workspace-main::before {
    top: 38px;
    height: 112px;
}

.workspace-main::after {
    bottom: 34px;
    height: 118px;
    background:
        linear-gradient(90deg, rgba(20, 184, 166, 0.9) 0 28%, rgba(255, 255, 255, 0.86) 28% 100%);
}

.workspace-side {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 20px;
}

.workspace-side span {
    display: block;
    height: 74px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.18);
}

.workspace-side span:nth-child(2) {
    background: rgba(20, 184, 166, 0.26);
}

.workspace-side span:nth-child(3) {
    background: rgba(245, 158, 11, 0.24);
}

.workspace-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.workspace-metrics strong {
    display: grid;
    place-items: center;
    min-height: 76px;
    color: #fff;
    font-size: 1rem;
}

.service-card-grid,
.website-type-grid,
.pricing-guidance-grid,
.process-grid,
.service-image-row {
    display: grid;
    gap: 18px;
}

.service-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.website-type,
.pricing-guidance-card,
.process-step,
.quote-fit-box,
.outcome-list article {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.service-card,
.pricing-guidance-card,
.process-step,
.quote-fit-box,
.outcome-list article {
    padding: 24px;
}

.service-card p,
.service-row p,
.website-type p,
.pricing-guidance-card p,
.process-step p,
.quote-fit-box p {
    margin-bottom: 0;
    color: var(--text-soft);
}

.service-ledger {
    display: grid;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.service-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.service-row > span,
.process-step > span {
    color: #0f766e;
    font-weight: 900;
    font-size: 0.84rem;
    text-transform: uppercase;
}

.service-row h3 {
    margin-bottom: 8px;
}

.service-outcome-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: start;
}

.outcome-list {
    display: grid;
    gap: 12px;
}

.outcome-list article {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.outcome-list article p {
    margin-bottom: 0;
    color: rgba(219, 231, 255, 0.86);
}

.website-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.website-type {
    min-height: 100%;
    padding: 22px;
    display: grid;
    align-content: start;
    gap: 12px;
}

.website-type span {
    width: 36px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1d4ed8, #0f766e, #f59e0b);
}

.website-type h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.website-type p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.58;
}

.showcase-panel {
    display: grid;
    grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: stretch;
}

.showcase-image,
.service-inline-image,
.service-wide-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
}

.showcase-image {
    min-height: 100%;
}

.service-inline-image {
    margin-top: 28px;
    height: 260px;
}

.dark-band .service-inline-image {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.service-wide-image {
    margin-top: 28px;
    height: 340px;
}

.concept-section {
    background:
        linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(255, 250, 243, 0.78));
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.concept-card {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

.concept-card figure {
    margin: 0;
    background: #f8fafc;
}

.concept-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.concept-card-body {
    padding: 22px;
}

.concept-card-body span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--primary-strong);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.concept-card-body p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.62;
}

.concept-note {
    max-width: 860px;
    margin: 24px auto 0;
    padding: 14px 18px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-soft);
    text-align: center;
    font-size: 0.94rem;
}

.service-image-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.service-image-slot {
    min-height: 240px;
    margin: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.service-image-slot::before,
.service-image-slot::after {
    content: "";
    position: absolute;
    border-radius: var(--radius-md);
}

.commerce-slot {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.commerce-slot::before {
    inset: 28px 28px auto 28px;
    height: 64px;
    background: #0f172a;
}

.commerce-slot::after {
    left: 28px;
    right: 28px;
    bottom: 30px;
    height: 88px;
    background:
        linear-gradient(90deg, #ffffff 0 31%, transparent 31% 35%, #ffffff 35% 66%, transparent 66% 70%, #ffffff 70% 100%);
}

.strategy-slot {
    background: linear-gradient(135deg, #fff7ed 0%, #f1f5f9 100%);
}

.strategy-slot::before {
    width: 48%;
    height: 132px;
    left: 28px;
    bottom: 32px;
    background: rgba(15, 23, 42, 0.88);
}

.strategy-slot::after {
    width: 32%;
    height: 88px;
    right: 30px;
    top: 34px;
    background: rgba(20, 184, 166, 0.34);
}

.process-slot {
    background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
}

.process-slot::before {
    left: 30px;
    right: 30px;
    top: 44px;
    height: 10px;
    background: rgba(15, 23, 42, 0.2);
}

.process-slot::after {
    left: 30px;
    right: 30px;
    bottom: 42px;
    height: 118px;
    background:
        linear-gradient(90deg, rgba(29, 78, 216, 0.9) 0 30%, rgba(15, 118, 110, 0.9) 30% 66%, rgba(245, 158, 11, 0.9) 66% 100%);
}

.investment-section {
    background: #f8fbff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.investment-panel {
    max-width: 960px;
    margin: 0 auto;
    padding: 38px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(236,253,245,.78));
    box-shadow: var(--shadow-md);
}

.investment-panel h2 {
    max-width: 760px;
}

.investment-panel .lead {
    max-width: 820px;
}

.investment-panel .button {
    margin-top: 8px;
}

.pricing-guidance-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-guidance-card span {
    display: block;
    margin-bottom: 14px;
    color: var(--primary-strong);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-guidance-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.qualification-note {
    max-width: 720px;
    margin: 24px auto 0;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(15, 118, 110, 0.1);
    color: var(--heading);
    text-align: center;
    font-weight: 850;
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
    min-height: 100%;
}

.quote-grid {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 44px;
    align-items: start;
}

.quote-copy {
    position: sticky;
    top: 118px;
}

.quote-fit-box {
    margin-top: 28px;
}

.quote-fit-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--heading);
}

.quote-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
}

.quote-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-notice {
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius-md);
    background: rgba(248, 251, 255, 0.9);
}

.form-notice strong {
    display: block;
    margin-bottom: 6px;
    color: var(--heading);
}

.form-notice p {
    margin-bottom: 0;
    color: var(--text-soft);
}

.form-notice.success {
    border-color: rgba(15, 159, 110, 0.28);
    background: var(--success-soft);
}

.form-notice.warning {
    border-color: rgba(245, 158, 11, 0.32);
    background: rgba(245, 158, 11, 0.11);
}

.form-notice.error {
    border-color: rgba(239, 68, 68, 0.28);
    background: rgba(239, 68, 68, 0.08);
}

.field-error {
    margin: 7px 0 0;
    color: #b91c1c;
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 750;
}

.quote-form [aria-invalid="true"] {
    border-color: rgba(239, 68, 68, 0.56);
}

.privacy-note {
    margin-bottom: 0;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-fieldset {
    min-width: 0;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius-md);
    background: rgba(248, 251, 255, 0.74);
}

.quote-fieldset legend {
    padding: 0 8px;
    color: var(--heading);
    font-weight: 850;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}

.checkbox-grid label,
.radio-row label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--text-soft);
    font-weight: 760;
    line-height: 1.35;
}

.checkbox-grid input,
.radio-row input {
    width: auto;
    flex: 0 0 auto;
}

.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.quote-form .button {
    margin-top: 0;
}

.quote-image-stack {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.quote-image-stack .service-inline-image {
    margin-top: 0;
}

.quote-portrait {
    height: 220px;
}

.quote-portrait img {
    object-position: center 32%;
}

@media (max-width: 1180px) {
    .service-hero-grid,
    .service-outcome-grid,
    .quote-grid,
    .showcase-panel {
        grid-template-columns: 1fr;
    }

    .service-card-grid,
    .pricing-guidance-grid,
    .process-grid,
    .concept-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .website-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quote-copy {
        position: static;
    }
}

@media (max-width: 760px) {
    .service-hero {
        padding-top: 64px;
    }

    .service-proof-list,
    .service-card-grid,
    .pricing-guidance-grid,
    .process-grid,
    .concept-grid,
    .service-image-row,
    .form-grid.two,
    .checkbox-grid,
    .website-type-grid {
        grid-template-columns: 1fr;
    }

    .service-visual-hero,
    .quote-form {
        padding: 14px;
    }

    .investment-panel {
        padding: 24px;
    }

    .workspace-frame {
        min-height: 390px;
        padding: 16px;
    }

    .workspace-layout {
        grid-template-columns: 1fr;
        min-height: 260px;
    }

    .workspace-side {
        display: none;
    }

    .workspace-metrics {
        grid-template-columns: 1fr;
    }

    .workspace-metrics strong {
        min-height: 48px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-image-slot {
        min-height: 210px;
    }

    .service-inline-image,
    .service-wide-image {
        height: 220px;
    }

    .radio-row {
        display: grid;
        gap: 10px;
    }
}
