:root {
    --ink: #07111f;
    --ink-2: #0b1729;
    --ink-3: #11223a;
    --paper: #f5f7fb;
    --paper-warm: #f7f5f0;
    --white: #ffffff;
    --text: #142033;
    --muted: #627086;
    --muted-dark: #9babc0;
    --line: #dfe5ee;
    --line-dark: rgba(255,255,255,.11);
    --blue: #316cff;
    --blue-dark: #1f56df;
    --blue-soft: #eaf0ff;
    --cyan: #50c9ff;
    --green: #21c58b;
    --green-soft: #e6f8f1;
    --amber: #f3a43b;
    --amber-soft: #fff3df;
    --shadow-sm: 0 12px 30px rgba(7,17,31,.08);
    --shadow-lg: 0 28px 70px rgba(7,17,31,.18);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --shell: min(1200px, calc(100% - 48px));
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
    margin: 0;
    overflow-x: clip;
    color: var(--text);
    background: var(--paper);
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.64;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p, h1, h2, h3, h4 { margin-top: 0; }
h1, h2, h3, h4 { color: inherit; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.85rem, 5.3vw, 4.85rem); }
h2 { font-size: clamp(2.1rem, 3.35vw, 3.35rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.75rem); }
ul { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }

.site-shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(72px, 7.5vw, 112px) 0; }
.section-tight { padding: clamp(56px, 6vw, 84px) 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-warm { background: var(--paper-warm); }
.section-white { background: var(--white); }

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--white);
    background: var(--blue);
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.availability-bar { color: #b8c5d7; background: #040a13; font-size: 12px; }
.availability-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.availability-inner span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.availability-inner i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(33,197,139,.12); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(7,17,31,.08);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    transition: box-shadow .22s ease, background .22s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.985); box-shadow: 0 12px 32px rgba(7,17,31,.08); }
.header-inner { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { position: relative; width: 37px; height: 37px; border-radius: 11px; background: var(--ink); box-shadow: 0 9px 22px rgba(7,17,31,.16); }
.brand-mark b, .brand-mark i, .brand-mark em { position: absolute; width: 6px; height: 6px; border-radius: 50%; }
.brand-mark b { left: 8px; top: 15px; background: var(--blue); }
.brand-mark i { right: 8px; top: 8px; background: var(--green); }
.brand-mark em { right: 8px; bottom: 8px; background: var(--cyan); }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; left: 13px; width: 14px; height: 1px; background: rgba(255,255,255,.82); transform-origin: left center; }
.brand-mark::before { top: 17px; transform: rotate(-28deg); }
.brand-mark::after { top: 19px; transform: rotate(28deg); }
.brand-text { display: grid; line-height: 1.03; }
.brand-text strong { font-size: 16px; letter-spacing: -.025em; }
.brand-text small { margin-top: 5px; color: #758195; font-family: var(--mono); font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: 4px; }
.primary-nav > a, .nav-item-control > a { position: relative; padding: 12px 14px; border-radius: 9px; color: #38465a; font-size: 14px; font-weight: 750; }
.primary-nav > a:hover, .primary-nav > a:focus-visible, .primary-nav > a.is-active,
.nav-item-control > a:hover, .nav-item-control > a:focus-visible,
.nav-item.is-active .nav-item-control > a { color: var(--blue); background: var(--blue-soft); }
.nav-item { position: relative; }
.nav-item-control { display: flex; align-items: center; }
.submenu-toggle { display: grid; place-items: center; width: 28px; height: 34px; margin-left: -8px; padding: 0; border: 0; border-radius: 8px; color: #5f6d80; background: transparent; }
.submenu-toggle:hover, .submenu-toggle:focus-visible { color: var(--blue); background: var(--blue-soft); }
.submenu-toggle > span:last-child { width: 7px; height: 7px; border-right: 1.7px solid currentColor; border-bottom: 1.7px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s ease; }
.nav-item.is-open .submenu-toggle > span:last-child { transform: translateY(2px) rotate(225deg); }
.services-submenu { position: absolute; top: calc(100% + 13px); left: 50%; z-index: 1200; display: grid; grid-template-columns: 240px 1fr; width: min(760px, calc(100vw - 36px)); padding: 18px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.99); box-shadow: 0 26px 70px rgba(7,17,31,.18); opacity: 0; visibility: hidden; transform: translate(-42%, 8px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.services-submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -15px; height: 15px; }
.nav-item:hover .services-submenu, .nav-item.is-open .services-submenu { opacity: 1; visibility: visible; transform: translate(-42%, 0); }
.nav-item.is-dismissed .services-submenu { opacity: 0; visibility: hidden; transform: translate(-42%, 8px); }
.submenu-intro { padding: 22px; border-radius: 14px; color: var(--white); background: linear-gradient(145deg, #0a1728, #102642); }
.submenu-intro > span, .submenu-group > span { display: block; color: #8fa8c8; font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.submenu-intro strong { display: block; margin: 34px 0 12px; font-size: 21px; line-height: 1.12; letter-spacing: -.035em; }
.submenu-intro p { margin: 0; color: #aebdd0; font-size: 12px; line-height: 1.55; }
.submenu-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; padding: 6px 8px 42px 22px; }
.submenu-group > span { margin: 5px 0 9px; color: #64748a; }
.submenu-group a { display: grid; gap: 2px; padding: 8px 10px; border-radius: 9px; }
.submenu-group a:hover, .submenu-group a:focus-visible, .submenu-group a.is-current { color: var(--blue); background: var(--blue-soft); }
.submenu-group b { color: var(--text); font-size: 12px; line-height: 1.25; }
.submenu-group a:hover b, .submenu-group a:focus-visible b, .submenu-group a.is-current b { color: var(--blue); }
.submenu-group small { color: #718095; font-size: 9px; line-height: 1.35; }
.submenu-footer-link { position: absolute; right: 26px; bottom: 18px; display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-size: 11px; font-weight: 850; }
.submenu-footer-link span { transition: transform .2s ease; }
.submenu-footer-link:hover span { transform: translateX(3px); }
.nav-mobile-cta { display: none !important; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-open .menu-toggle span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(3) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #4685ff);
    box-shadow: 0 12px 28px rgba(49,108,255,.24);
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(49,108,255,.32); }
.button-small { min-height: 43px; padding-inline: 17px; font-size: 13px; }
.header-cta { white-space: nowrap; }
.button-secondary { color: var(--ink); border-color: var(--line); background: var(--white); box-shadow: none; }
.button-secondary:hover, .button-secondary:focus-visible { border-color: #b7c3d4; box-shadow: var(--shadow-sm); }
.button-dark { color: var(--white); background: var(--ink); box-shadow: 0 12px 28px rgba(7,17,31,.2); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05); box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 800; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(3px); }
.text-link span { transition: transform .2s ease; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--blue); font-family: var(--mono); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow-green { color: var(--green); }
.eyebrow-amber { color: var(--amber); }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2 { max-width: 720px; margin-bottom: 18px; }
.section-heading p { color: var(--muted); font-size: 17px; }
.section-heading-row { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr); gap: 58px; align-items: end; margin-bottom: 44px; }
.section-heading-row p:last-child { margin: 0; color: var(--muted); }

/* Home hero */
.home-hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.home-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.home-hero::after { content: ""; position: absolute; width: 720px; height: 720px; right: -210px; top: -270px; border-radius: 50%; background: radial-gradient(circle, rgba(49,108,255,.28), rgba(80,201,255,.08) 42%, transparent 70%); filter: blur(10px); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr); gap: 64px; align-items: center; min-height: 660px; padding: 72px 0 64px; }
.hero-copy h1 { max-width: 680px; margin-bottom: 25px; font-size: clamp(2.95rem, 4.35vw, 4.2rem); line-height: .97; letter-spacing: -.052em; }
.hero-copy h1 span, .hero-copy h1 em { display: block; }
.hero-copy h1 em { color: var(--cyan); font-style: normal; }
.hero-copy .lead { max-width: 650px; color: #b2c0d2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 27px; color: #9baabe; font-size: 13px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.intelligence-panel { position: relative; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: linear-gradient(155deg, rgba(17,34,58,.96), rgba(7,17,31,.98)); box-shadow: 0 34px 80px rgba(0,0,0,.38); overflow: hidden; }
.intelligence-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 5%, rgba(49,108,255,.22), transparent 32%); pointer-events: none; }
.panel-top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 25px 26px 18px; border-bottom: 1px solid var(--line-dark); }
.panel-top small { display: block; color: #7790b1; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.panel-top strong { display: block; margin-top: 5px; font-size: 19px; }
.health-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid rgba(33,197,139,.25); border-radius: 999px; color: #75e4ba; background: rgba(33,197,139,.08); font-family: var(--mono); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.health-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(33,197,139,.1); }
.dashboard-tabs { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); padding: 12px 14px 0; }
.dashboard-tabs button { padding: 12px 10px; border: 0; border-bottom: 2px solid transparent; color: #7f92ab; background: transparent; font-size: 12px; font-weight: 800; }
.dashboard-tabs button.is-active { color: var(--white); border-color: var(--blue); }
.dashboard-body { position: relative; z-index: 1; padding: 16px 18px 20px; }
.dashboard-panel { animation: panelIn .35s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.signal-summary { display: grid; grid-template-columns: 1.3fr .7fr; gap: 12px; margin-bottom: 12px; }
.summary-chart, .summary-score { min-height: 150px; border: 1px solid var(--line-dark); border-radius: 15px; background: rgba(255,255,255,.035); }
.summary-chart { position: relative; padding: 18px; overflow: hidden; }
.summary-chart small, .summary-score small { color: #7d90aa; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.summary-chart strong { display: block; margin-top: 6px; color: #ffffff; font-size: 15px; }
.chart-lines { position: absolute; left: 18px; right: 18px; bottom: 18px; height: 68px; }
.chart-lines::before, .chart-lines::after { content: ""; position: absolute; inset: 0; border-bottom: 1px solid rgba(255,255,255,.08); border-top: 1px solid rgba(255,255,255,.05); }
.chart-lines svg { width: 100%; height: 100%; overflow: visible; }
.summary-score { display: grid; place-items: center; color: #ffffff; text-align: center; padding: 18px; }
.score-ring { display: grid; place-items: center; width: 74px; height: 74px; margin-bottom: 10px; border-radius: 50%; background: conic-gradient(var(--green) 0 78%, rgba(255,255,255,.08) 78% 100%); }
.score-ring::before { content: ""; width: 56px; height: 56px; border-radius: 50%; background: var(--ink-2); }
.score-ring span { position: absolute; font-size: 15px; font-weight: 900; }
.status-list { display: grid; gap: 10px; }
.status-row { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; min-height: 64px; padding: 11px 13px; border: 1px solid var(--line-dark); border-radius: 13px; background: rgba(255,255,255,.035); }
.status-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; color: #8eaeff; background: rgba(49,108,255,.14); font-family: var(--mono); font-size: 9px; }
.status-row strong { display: block; color: #f7f9fc; font-size: 12px; }
.status-row small { color: #91a4bd; font-size: 10px; }
.status-value { color: #6fe0b5; font-family: var(--mono); font-size: 9px; font-weight: 800; }
.panel-note { margin: 12px 2px 0; color: #72849d; font-size: 10px; }
.platform-strip { position: relative; z-index: 2; padding: 0 0 30px; }
.platform-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.platform-strip span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #aebbd0; background: rgba(255,255,255,.04); font-family: var(--mono); font-size: 9px; }

/* Homepage sections */
.problem-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 82px; align-items: start; }
.problem-intro { position: sticky; top: 130px; }
.problem-intro h2 { margin-bottom: 22px; }
.problem-intro p { color: var(--muted); font-size: 17px; }
.problem-list { border-top: 1px solid var(--line); }
.problem-row { display: grid; grid-template-columns: 46px 1fr auto; gap: 20px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.problem-row > span:first-child { color: var(--blue); font-family: var(--mono); font-size: 10px; font-weight: 800; }
.problem-row h3 { margin-bottom: 8px; font-size: 20px; }
.problem-row p { margin: 0; color: var(--muted); font-size: 14px; }
.problem-tag { padding: 7px 9px; border-radius: 999px; color: #a66310; background: var(--amber-soft); font-family: var(--mono); font-size: 8px; font-weight: 800; text-transform: uppercase; }

.service-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.service-primary { position: relative; min-height: 490px; padding: 38px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, #0b1a2e, #07111f); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-primary::after { content: ""; position: absolute; width: 360px; height: 360px; right: -120px; bottom: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(49,108,255,.52), transparent 65%); }
.service-primary > * { position: relative; z-index: 1; }
.service-primary .service-number { color: #86a6ff; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.service-primary h3 { max-width: 420px; margin: 50px 0 16px; font-size: clamp(2.2rem, 3.5vw, 3.15rem); }
.service-primary p { max-width: 520px; color: #aebdd0; }
.service-primary ul { display: grid; gap: 10px; margin: 28px 0 34px; }
.service-primary li { display: flex; gap: 10px; color: #d9e2ef; font-size: 14px; }
.service-primary li::before { content: "✓"; color: var(--green); font-weight: 900; }
.service-secondary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { display: flex; flex-direction: column; min-height: 238px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #c3d1e9; box-shadow: var(--shadow-sm); }
.service-card .icon-box { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 27px; border-radius: 12px; color: var(--blue); background: var(--blue-soft); font-family: var(--mono); font-size: 10px; font-weight: 900; }
.service-card h3 { margin-bottom: 13px; font-size: 20px; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.service-card a { margin-top: auto; color: var(--blue); font-size: 13px; font-weight: 800; }

.work-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; padding: clamp(34px, 5vw, 70px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.work-feature-copy h2 { margin-bottom: 22px; }
.work-feature-copy p { color: var(--muted); }
.work-facts { display: grid; gap: 0; margin: 28px 0 32px; border-top: 1px solid var(--line); }
.work-facts li { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.work-facts strong { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.product-window { border: 1px solid #dfe5ed; border-radius: 19px; background: #edf1f6; box-shadow: 0 24px 60px rgba(7,17,31,.14); overflow: hidden; transform: rotate(1deg); }
.window-bar { display: flex; align-items: center; gap: 6px; height: 37px; padding: 0 14px; background: #0c1728; }
.window-bar i { width: 7px; height: 7px; border-radius: 50%; background: #3f526c; }
.window-bar i:first-child { background: #ff7a66; }
.window-bar i:nth-child(2) { background: #ffc66e; }
.window-bar i:nth-child(3) { background: #5bd6a6; }
.window-bar span { margin-left: auto; color: #71849f; font-family: var(--mono); font-size: 8px; }
.window-body { display: grid; grid-template-columns: 110px 1fr; min-height: 365px; }
.window-side { display: grid; align-content: start; gap: 8px; padding: 20px 13px; border-right: 1px solid #dde3ea; background: #e6ebf2; }
.window-side span { padding: 8px 10px; border-radius: 8px; color: #718095; font-size: 9px; }
.window-side span.active { color: var(--blue); background: var(--white); box-shadow: 0 8px 18px rgba(7,17,31,.07); font-weight: 800; }
.window-main { padding: 28px; }
.window-main-top { display: flex; justify-content: space-between; gap: 20px; }
.window-main-top small { color: var(--blue); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.window-main-top strong { display: block; max-width: 260px; margin-top: 6px; font-size: 20px; line-height: 1.15; }
.window-main-top span { height: max-content; padding: 7px 10px; border-radius: 999px; color: #147854; background: var(--green-soft); font-size: 8px; font-weight: 800; }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 34px; }
.tool-card { display: grid; min-height: 135px; padding: 15px; border: 1px solid #dfe5ed; border-radius: 12px; background: var(--white); }
.tool-card b { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-family: var(--mono); font-size: 8px; }
.tool-card strong { align-self: end; font-size: 11px; }
.tool-card small { color: var(--muted); font-size: 8px; }

.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 52px; }
.process-step { position: relative; padding-right: 24px; }
.process-step::after { content: ""; position: absolute; left: 49px; right: 0; top: 23px; height: 1px; background: linear-gradient(90deg, rgba(49,108,255,.8), rgba(80,201,255,.18)); }
.process-step:last-child::after { display: none; }
.process-step > span { position: relative; z-index: 1; display: grid; place-items: center; width: 47px; height: 47px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; color: #9ab3f5; background: var(--ink-2); box-shadow: 0 0 0 8px var(--ink); font-family: var(--mono); font-size: 10px; }
.process-step h3 { margin-bottom: 10px; color: var(--white); font-size: 17px; }
.process-step p { margin: 0; color: #91a1b6; font-size: 13px; }

.founder-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 66px; align-items: center; }
.founder-visual { position: relative; min-height: 470px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #2d65f3, #4b83ff 60%, #5ac8ff); overflow: hidden; box-shadow: var(--shadow-lg); }
.founder-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 38px 38px; }
.founder-visual::after { content: "MI"; position: absolute; right: -10px; bottom: -62px; color: rgba(255,255,255,.11); font-size: 240px; line-height: 1; font-weight: 900; letter-spacing: -.09em; }
.founder-quote { position: absolute; inset: auto 34px 34px; z-index: 1; color: var(--white); }
.founder-quote blockquote { margin: 0 0 24px; font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 800; line-height: 1.05; letter-spacing: -.04em; }
.founder-quote strong { display: block; }
.founder-quote small { color: rgba(255,255,255,.72); }
.founder-copy h2 { margin-bottom: 20px; }
.founder-copy p { color: var(--muted); }
.credibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0 34px; }
.credibility-item { padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.credibility-item small { display: block; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.credibility-item strong { display: block; margin-top: 7px; font-size: 13px; }

.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 76px; }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 23px 0; border: 0; color: var(--text); background: transparent; text-align: left; font-weight: 800; }
.faq-item button span:last-child { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: var(--blue); background: var(--blue-soft); font-size: 17px; transition: transform .2s ease; }
.faq-item.is-open button span:last-child { transform: rotate(45deg); }
.faq-panel { padding: 0 46px 22px 0; color: var(--muted); }
.faq-panel p { margin: 0; }

.cta-band { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(125deg, #1d56e8, #3478ff 55%, #36b8e8); }
.cta-band::after { content: ""; position: absolute; width: 430px; height: 430px; right: -100px; top: -250px; border-radius: 50%; border: 70px solid rgba(255,255,255,.08); }
.cta-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; min-height: 220px; padding: 36px 0; }
.cta-band h2 { max-width: 720px; margin-bottom: 12px; font-size: clamp(2.2rem, 3.4vw, 3.35rem); }
.cta-band p { max-width: 660px; margin: 0; color: rgba(255,255,255,.78); }

/* Shared inner pages */
.page-hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(49,108,255,.22), transparent 35%), linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px); background-size: auto, 42px 42px, 42px 42px; }
.page-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(270px, .48fr); gap: 56px; align-items: center; min-height: 340px; padding: 56px 0 52px; }
.page-hero h1 { max-width: 760px; margin-bottom: 18px; font-size: clamp(2.65rem, 3.65vw, 3.65rem); line-height: 1.01; letter-spacing: -.047em; text-wrap: balance; }
.page-hero p { max-width: 700px; margin: 0; color: #b4c1d2; font-size: 16.5px; }
.page-hero-card { padding: 23px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(255,255,255,.045); backdrop-filter: blur(10px); }
.page-hero-card small { color: #8094ae; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.page-hero-card strong { display: block; margin: 12px 0 9px; font-size: 20px; }
.page-hero-card p { font-size: 13px; }
.breadcrumbs { margin-bottom: 20px; color: #8192aa; font-size: 12px; }
.breadcrumbs a { color: #b8c5d7; }
.breadcrumbs span { margin: 0 8px; }

.services-overview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-overview-card { position: relative; min-height: 315px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.service-overview-card.featured { color: var(--white); background: var(--ink); border-color: var(--ink); }
.service-overview-card .number { color: var(--blue); font-family: var(--mono); font-size: 10px; font-weight: 900; }
.service-overview-card h2 { margin: 38px 0 15px; font-size: clamp(1.9rem, 2.8vw, 2.65rem); }
.service-overview-card p { max-width: 520px; color: var(--muted); }
.service-overview-card.featured p { color: #aebdd0; }
.service-overview-card .card-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.service-overview-card .card-links a { padding: 8px 10px; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-size: 11px; font-weight: 800; }
.service-overview-card.featured .card-links a { color: #c8d5ff; background: rgba(49,108,255,.14); }

.service-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 52px; align-items: center; }
.service-snapshot { padding: 25px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(255,255,255,.045); }
.service-snapshot dl { margin: 0; }
.service-snapshot div { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.service-snapshot div:last-child { border-bottom: 0; }
.service-snapshot dt { color: #7f93ad; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.service-snapshot dd { margin: 0; color: #d9e4f2; font-size: 12px; }
.service-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 70px; align-items: start; }
.content-block + .content-block { margin-top: 58px; }
.content-block h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.1vw, 3rem); }
.content-block > p { color: var(--muted); }
.symptom-grid, .deliverable-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.symptom-card, .deliverable-card { padding: 23px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.symptom-card span, .deliverable-card span { color: var(--blue); font-family: var(--mono); font-size: 9px; font-weight: 900; }
.symptom-card h3, .deliverable-card h3 { margin: 23px 0 10px; font-size: 18px; }
.symptom-card p, .deliverable-card p { margin: 0; color: var(--muted); font-size: 13px; }
.steps-list { counter-reset: service-step; display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.steps-list li { counter-increment: service-step; display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.steps-list li::before { content: "0" counter(service-step); color: var(--blue); font-family: var(--mono); font-size: 10px; font-weight: 900; }
.steps-list strong { display: block; margin-bottom: 8px; }
.steps-list p { margin: 0; color: var(--muted); font-size: 14px; }
.sidebar-card { position: sticky; top: 120px; padding: 27px; border-radius: 17px; color: var(--white); background: var(--ink); box-shadow: var(--shadow-lg); }
.sidebar-card h2 { margin-bottom: 14px; font-size: 25px; }
.sidebar-card p { color: #aebdd0; font-size: 14px; }
.sidebar-card ul { display: grid; gap: 10px; margin: 24px 0 28px; }
.sidebar-card li { display: flex; gap: 10px; color: #d7e2ef; font-size: 13px; }
.sidebar-card li::before { content: "✓"; color: var(--green); }
.platform-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.platform-cloud span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: #53637a; background: var(--white); font-family: var(--mono); font-size: 9px; }
.related-work-card { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; margin-top: 32px; padding: 30px; border-radius: 17px; background: var(--blue-soft); }
.related-work-card p { margin: 8px 0 0; color: var(--muted); }

/* Work */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.case-card { display: flex; flex-direction: column; min-height: 350px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .22s ease, box-shadow .22s ease; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.case-card .case-type { color: var(--blue); font-family: var(--mono); font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.case-card h2 { margin: 42px 0 16px; font-size: clamp(1.9rem, 2.55vw, 2.45rem); }
.case-card p { color: var(--muted); }
.case-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0 30px; }
.case-card li { padding: 7px 9px; border-radius: 999px; color: #53637a; background: var(--paper); font-family: var(--mono); font-size: 8px; }
.case-card a { margin-top: auto; color: var(--blue); font-weight: 800; }
.experience-list { display: grid; gap: 14px; }
.experience-item { display: grid; grid-template-columns: 180px 1fr; gap: 40px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.experience-item time { color: var(--blue); font-family: var(--mono); font-size: 10px; font-weight: 900; }
.experience-item h3 { margin-bottom: 8px; }
.experience-item p { margin: 0; color: var(--muted); }
.case-study-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 70px; align-items: start; }
.case-section + .case-section { margin-top: 62px; }
.case-section h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.7vw, 3.3rem); }
.case-section p { color: var(--muted); }
.case-evidence { display: grid; gap: 12px; margin-top: 26px; }
.case-evidence li { padding: 18px 20px; border-left: 3px solid var(--blue); background: var(--white); box-shadow: 0 8px 24px rgba(7,17,31,.04); }
.case-evidence strong { display: block; margin-bottom: 5px; }
.case-evidence span { color: var(--muted); font-size: 13px; }
.case-sidebar { position: sticky; top: 120px; display: grid; gap: 14px; }
.case-sidebar-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.case-sidebar-card h2 { font-size: 19px; }
.case-sidebar-card dl { margin: 18px 0 0; }
.case-sidebar-card div { padding: 11px 0; border-bottom: 1px solid var(--line); }
.case-sidebar-card div:last-child { border-bottom: 0; }
.case-sidebar-card dt { color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.case-sidebar-card dd { margin: 5px 0 0; font-size: 13px; font-weight: 700; }

/* About */
.about-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.about-signature { position: sticky; top: 120px; min-height: 390px; padding: 34px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, #0b1a2e, #07111f); overflow: hidden; }
.about-signature::after { content: "MI"; position: absolute; right: 0; bottom: -60px; color: rgba(255,255,255,.055); font-size: 260px; line-height: 1; font-weight: 900; letter-spacing: -.1em; }
.about-signature > * { position: relative; z-index: 1; }
.about-signature small { color: #7e94b0; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.about-signature h2 { margin: 88px 0 15px; color: var(--white); font-size: clamp(2.6rem, 4vw, 3.6rem); }
.about-signature p { color: #aebdd0; }
.about-story h2 { margin-bottom: 24px; }
.about-story p { color: var(--muted); font-size: 17px; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.principle-card { padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.principle-card span { color: var(--blue); font-family: var(--mono); font-size: 9px; font-weight: 900; }
.principle-card h3 { margin: 24px 0 10px; font-size: 18px; }
.principle-card p { margin: 0; font-size: 13px; }
.tech-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tech-column { padding: 28px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.tech-column h3 { margin-bottom: 20px; }
.tech-column ul { display: grid; gap: 9px; color: var(--muted); font-size: 14px; }
.tech-column li { display: flex; gap: 9px; }
.tech-column li::before { content: "•"; color: var(--blue); font-weight: 900; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 26px; align-items: start; }
.contact-side { display: grid; gap: 15px; }
.contact-card { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.contact-card small { color: var(--blue); font-family: var(--mono); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.contact-card h2 { margin: 18px 0 10px; font-size: 23px; }
.contact-card p { margin: 0; color: var(--muted); font-size: 14px; }
.contact-card a { color: var(--blue); font-weight: 800; }
.next-step-list { display: grid; gap: 14px; margin-top: 22px; }
.next-step-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; }
.next-step-list span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-family: var(--mono); font-size: 8px; font-weight: 900; }
.next-step-list strong { display: block; font-size: 13px; }
.next-step-list small { color: var(--muted); }
.form-panel { padding: clamp(28px, 5vw, 48px); border-radius: var(--radius-lg); color: var(--white); background: var(--ink); box-shadow: var(--shadow-lg); }
.form-panel h2 { max-width: 620px; margin-bottom: 12px; color: var(--white); font-size: clamp(2.25rem, 3.7vw, 3.35rem); }
.form-panel > p { color: #9eafc5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: #d8e2ef; font-size: 12px; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; color: var(--white); background: rgba(255,255,255,.055); outline: none; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #70829a; }
.form-field select {
    color-scheme: dark;
    cursor: pointer;
}
.form-field select option,
.form-field select optgroup {
    color: #f7f9ff;
    background: #111d30;
}
.field-optional {
    color: #8fa3bd;
    font-weight: 500;
}
.field-help {
    display: block;
    margin-top: 7px;
    color: #8fa3bd;
    font-size: .78rem;
    line-height: 1.45;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #7aa0ff; box-shadow: 0 0 0 3px rgba(49,108,255,.15); }
.form-submit { grid-column: 1 / -1; display: grid; gap: 12px; }
.form-submit .button { width: 100%; }
.form-submit small { color: #7f91a8; font-size: 10px; text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-message { margin-bottom: 22px; padding: 14px 16px; border-radius: 10px; font-size: 14px; font-weight: 700; }
.form-message.success { color: #b7f4dd; border: 1px solid rgba(33,197,139,.3); background: rgba(33,197,139,.1); }
.form-message.error { color: #ffd2cc; border: 1px solid rgba(255,109,91,.3); background: rgba(255,109,91,.1); }

/* Legal and 404 */
.prose { max-width: 840px; }
.prose h2 { margin: 48px 0 17px; font-size: 30px; }
.prose h3 { margin: 32px 0 12px; font-size: 21px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { display: grid; gap: 9px; padding-left: 20px; list-style: disc; }
.error-page { min-height: 72vh; display: grid; place-items: center; text-align: center; color: var(--white); background: var(--ink); }
.error-page h1 { margin-bottom: 17px; }
.error-page p { color: #aebdd0; }

/* Footer */
.site-footer { color: #a4b2c5; background: #050c16; }
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr; gap: 50px; padding: 62px 0 48px; }
.brand-footer .brand-text strong { color: var(--white); }
.footer-brand-block p { max-width: 350px; margin: 20px 0 15px; font-size: 14.5px; }
.footer-email { color: #dbe4f0; font-size: 14.5px; font-weight: 800; }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-size: 14.5px; letter-spacing: 0; }
.site-footer ul { display: grid; gap: 10px; font-size: 13.5px; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 20px; }

[data-reveal] { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid rgba(80,201,255,.75); outline-offset: 3px; }

@media (max-width: 1080px) {
    .header-inner { gap: 22px; }
    .primary-nav > a, .nav-item-control > a { padding-inline: 11px; }
    .header-cta { padding-inline: 15px; }
    .hero-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .service-layout { grid-template-columns: 1fr; }
    .service-primary { min-height: 440px; }
    .work-feature { grid-template-columns: 1fr; }
    .product-window { max-width: 720px; margin-inline: auto; }
    .founder-layout { grid-template-columns: .9fr 1.1fr; gap: 40px; }
    .page-hero-inner { grid-template-columns: 1fr .66fr; gap: 40px; }
    .service-content-grid, .case-study-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; }
    .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 34px; }
}

@media (max-width: 880px) {
    :root { --shell: min(calc(100% - 30px), 760px); }
    .availability-note { display: none; }
    .availability-inner { justify-content: center; }
    .header-inner { grid-template-columns: 1fr auto; min-height: 68px; }
    .menu-toggle { display: block; }
    .header-cta { display: none; }
    .primary-nav { position: fixed; inset: 102px 15px auto; display: none; max-height: calc(100dvh - 118px); overflow-y: auto; overscroll-behavior: contain; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-lg); }
    .primary-nav.is-open { display: grid; align-content: start; }
    .primary-nav > a, .nav-item-control > a { display: flex; align-items: center; min-height: 46px; padding: 12px 14px; }
    .nav-item-control { display: grid; grid-template-columns: 1fr 44px; align-items: center; }
    .submenu-toggle { width: 42px; height: 42px; margin: 0; }
    .services-submenu { position: static; display: none; width: auto; margin: 3px 0 9px; padding: 9px; border-radius: 13px; background: #f5f7fb; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: none; }
    .services-submenu::before, .submenu-intro { display: none; }
    .nav-item:hover .services-submenu, .nav-item:focus-within .services-submenu { transform: none; }
    .nav-item.is-open .services-submenu { display: block; transform: none; }
    .nav-item.is-dismissed .services-submenu { display: none; }
    .submenu-groups { grid-template-columns: 1fr; gap: 6px; padding: 2px; }
    .submenu-group > span { margin: 9px 10px 5px; }
    .submenu-group a { padding: 9px 10px; }
    .submenu-group b { font-size: 13px; }
    .submenu-group small { font-size: 10px; }
    .submenu-footer-link { position: static; margin: 8px 10px 5px; font-size: 12px; }
    .nav-mobile-cta { display: inline-flex !important; width: 100%; margin-top: 7px; color: var(--white) !important; background: linear-gradient(135deg, var(--blue), #4685ff) !important; }
    .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 64px; }
    .hero-copy h1 { max-width: 700px; }
    .intelligence-panel { max-width: 680px; }
    .problem-layout, .founder-layout, .faq-layout, .contact-layout, .about-intro-grid { grid-template-columns: 1fr; gap: 42px; }
    .problem-intro, .about-signature { position: static; }
    .service-secondary-grid { grid-template-columns: 1fr 1fr; }
    .section-heading-row { grid-template-columns: 1fr; gap: 18px; }
    .process-track { grid-template-columns: 1fr; gap: 24px; }
    .process-step { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding-right: 0; }
    .process-step::after { left: 23px; right: auto; top: 47px; bottom: -25px; width: 1px; height: auto; }
    .process-step > span { grid-row: 1 / span 2; margin: 0; }
    .process-step h3 { margin: 4px 0 7px; }
    .cta-band-inner { grid-template-columns: 1fr; padding: 50px 0; }
    .page-hero-inner, .service-hero-grid { grid-template-columns: 1fr; min-height: auto; align-items: start; }
    .page-hero-card, .service-snapshot { max-width: 620px; }
    .service-content-grid, .case-study-layout { grid-template-columns: 1fr; }
    .sidebar-card, .case-sidebar { position: static; }
    .services-overview, .work-grid { grid-template-columns: 1fr; }
    .tech-columns { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 620px) {
    :root { --shell: calc(100% - 24px); }
    body { font-size: 16px; }
    .section { padding: 64px 0; }
    .section-tight { padding: 52px 0; }
    .brand-text small { display: none; }
    .brand-mark { width: 35px; height: 35px; }
    .hero-inner { gap: 40px; padding: 52px 0 50px; }
    .hero-copy h1 { font-size: clamp(2.55rem, 10.7vw, 3.1rem); }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .hero-proof { display: grid; gap: 9px; }
    .panel-top { padding: 20px 18px 15px; }
    .panel-top strong { font-size: 16px; }
    .health-chip { padding: 7px 9px; }
    .signal-summary { grid-template-columns: 1fr; }
    .summary-score { min-height: 120px; grid-template-columns: auto 1fr; gap: 15px; text-align: left; }
    .dashboard-tabs button { padding-inline: 3px; font-size: 10px; }
    .status-row { grid-template-columns: 32px 1fr; }
    .status-value { grid-column: 2; }
    .problem-row { grid-template-columns: 34px 1fr; }
    .problem-tag { grid-column: 2; justify-self: start; }
    .service-primary { min-height: 0; padding: 28px; }
    .service-primary h3 { margin-top: 40px; }
    .service-secondary-grid { grid-template-columns: 1fr; }
    .work-feature { padding: 24px; }
    .work-facts li { grid-template-columns: 1fr; gap: 3px; }
    .window-body { grid-template-columns: 1fr; }
    .window-side { display: none; }
    .window-main { padding: 18px; }
    .tool-grid { grid-template-columns: 1fr 1fr; }
    .tool-card:last-child { display: none; }
    .founder-visual { min-height: 390px; }
    .about-signature::after { right: 0; }
    .credibility-grid, .principle-grid { grid-template-columns: 1fr; }
    .faq-panel { padding-right: 0; }
    .cta-band-inner .button { width: 100%; }
    .cta-band h2 { font-size: clamp(2rem, 9vw, 2.75rem); }
    .page-hero-inner { padding: 48px 0 46px; gap: 30px; }
    .page-hero h1 { max-width: 100%; font-size: clamp(2.25rem, 9.4vw, 2.85rem); line-height: 1.03; }
    .page-hero p { font-size: 15.5px; }
    .page-hero-card { padding: 20px; }
    .service-overview-card { min-height: 0; padding: 27px; }
    .service-overview-card h2 { margin-top: 30px; }
    .case-card { min-height: 0; padding: 27px; }
    .case-card h2 { margin-top: 34px; }
    .symptom-grid, .deliverable-grid { grid-template-columns: 1fr; }
    .related-work-card { grid-template-columns: 1fr; }
    .experience-item { grid-template-columns: 1fr; gap: 10px; }
    .form-panel { padding: 26px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field.full, .form-submit { grid-column: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; padding-top: 52px; }
    .footer-brand-block { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
