:root {
    --ink: #07152d;
    --ink-soft: #3d5473;
    --line: #d7e1ee;
    --surface: #ffffff;
    --surface-subtle: #f4f7fb;
    --surface-strong: #eaf1fa;
    --blue: #0b6cff;
    --blue-dark: #064fbf;
    --cyan: #43c7e8;
    --focus-dark: #064fbf;
    --focus-light: #ffffff;
    --success: #17834f;
    --header-height: 76px;
    --shell: 1180px;
    --radius: 8px;
    --shadow-soft: 0 18px 42px rgba(7, 21, 45, 0.09);
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font-size: 15px;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h2,
h3,
h4,
strong {
    text-wrap: balance;
}

h1 {
    margin-bottom: 16px;
    font-size: 64px;
    font-weight: 760;
    line-height: 1.02;
}

h2 {
    margin-bottom: 16px;
    font-size: 44px;
    font-weight: 740;
    line-height: 1.08;
}

h3 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.25;
}

h4 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.3;
}

p {
    margin-bottom: 16px;
}

.shell {
    width: min(var(--shell), calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.section-compact {
    padding: 64px 0;
}

.section-head {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-head.left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.section-head p,
.section-copy {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.6;
}

.section-label,
.platform-state,
.workflow-number {
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 760;
    line-height: 1.4;
    text-transform: uppercase;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 16px;
    border: 1px solid var(--blue);
    border-radius: 6px;
    background: var(--blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 720;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.btn:hover {
    border-color: var(--blue-dark);
    background: var(--blue-dark);
}

.btn.secondary {
    border-color: #b7c8dd;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
}

.btn.secondary:hover {
    border-color: var(--ink-soft);
    background: var(--surface);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-height);
    border-bottom: 1px solid rgba(215, 225, 238, 0.9);
    background: var(--surface);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    gap: 2px;
    text-decoration: none;
}

.brand img {
    width: 112px;
    height: auto;
    aspect-ratio: 400 / 72;
    object-fit: contain;
}

.brand-tagline {
    color: #47617d;
    font-size: 10px;
    font-weight: 620;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-links a {
    color: #29415f;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--blue-dark);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.mobile-navigation[hidden] {
    display: none;
}

.mobile-navigation {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.mobile-navigation a,
.mobile-navigation button {
    display: block;
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: var(--ink);
    font-size: 15px;
    font-weight: 650;
    text-align: left;
    text-decoration: none;
}

.mobile-navigation a:hover,
.mobile-navigation button:hover {
    background: var(--surface-subtle);
}

.hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 560px;
    padding: 48px 0;
}

.hero-content {
    width: 58%;
    max-width: 700px;
}

.hero-content h1 {
    max-width: 700px;
}

.hero .lead {
    max-width: 640px;
    margin-bottom: 24px;
    color: var(--ink-soft);
    font-size: 20px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.proof-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.proof-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #29415f;
    font-size: 13px;
    font-weight: 620;
    line-height: 1.45;
}

.dot-check {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--success);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.hero-media {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 0;
    width: 76%;
    height: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 24%, rgba(0, 0, 0, 0.16) 42%, #000000 66%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 24%, rgba(0, 0, 0, 0.16) 42%, #000000 66%);
}

.hero-commerce-chat {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: right top;
}

.customer-strip {
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
    background: var(--surface-strong);
}

.customer-trust {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 48px;
}

.customer-copy span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 760;
    text-transform: uppercase;
}

.customer-copy h2 {
    font-size: 44px;
}

.customer-copy p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.customer-gallery {
    min-width: 0;
}

.customer-carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.customer-carousel-status {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

.customer-carousel-controls {
    display: flex;
    gap: 8px;
}

.customer-carousel-controls button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink);
    font-size: 20px;
}

.customer-carousel-controls button:hover {
    border-color: var(--blue);
    color: var(--blue-dark);
}

.customer-carousel-viewport {
    min-width: 0;
    overflow: hidden;
}

.customer-chat-track {
    display: flex;
    transition: transform 600ms ease;
    will-change: transform;
}

.customer-chat-card {
    display: grid;
    flex: 0 0 100%;
    gap: 12px;
    padding: 12px;
    border: 1px solid #c7d5e6;
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    text-decoration: none;
    scroll-snap-align: start;
}

.customer-chat-card:hover {
    border-color: var(--blue);
}

.customer-chat-frame {
    display: block;
    width: 100%;
    max-width: 660px;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 6px;
    background: #05070b;
}

.customer-chat-frame img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.customer-chat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 660px;
    margin-inline: auto;
    gap: 12px;
    font-size: 14px;
}

.customer-chat-meta span {
    color: var(--blue-dark);
    font-weight: 700;
}

.problem-section {
    background: var(--surface);
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.problem-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 32px;
}

.problem-item + .problem-item {
    border-left: 1px solid var(--line);
}

.problem-item p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 15px;
}

.icon,
.data-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--surface-strong);
}

.icon img,
.data-icon img {
    width: 30px;
    height: 30px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.problem-item .icon {
    background: transparent;
}

.problem-item .icon img {
    width: 42px;
    height: 42px;
}

.how-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
    gap: 64px;
}

.solution-list {
    display: grid;
    gap: 16px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.solution-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
}

.solution-list .check {
    color: var(--success);
    font-weight: 800;
}

.solution-list strong,
.solution-list span span {
    display: block;
}

.solution-list span span {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 15px;
}

.workflow {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.workflow li {
    display: grid;
    grid-template-columns: 32px 48px 1fr;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.workflow img {
    width: 48px;
    height: 48px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.workflow strong,
.workflow div span {
    display: block;
}

.workflow div span {
    color: var(--ink-soft);
    font-size: 15px;
}

.capabilities-section {
    background: var(--surface-subtle);
}

.capability-rows {
    border-top: 1px solid var(--line);
}

.capability-row {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 64px;
    min-height: 420px;
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
}

.capability-row-reverse .capability-copy {
    order: 2;
}

.capability-copy h3 {
    margin-top: 12px;
    font-size: 32px;
    line-height: 1.15;
}

.capability-copy p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 18px;
}

.discovery-proof,
.availability-proof,
.completion-proof {
    border: 1px solid #c8d7e8;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.discovery-proof,
.completion-proof {
    border-radius: 18px;
}

.discovery-proof {
    overflow: hidden;
}

.proof-message {
    margin: 24px 24px 16px auto;
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 14px 14px 2px 14px;
    background: var(--blue);
    color: #ffffff;
    font-size: 14px;
}

.proof-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.proof-products > div {
    display: grid;
    gap: 8px;
    padding: 16px;
}

.proof-products > div + div {
    border-left: 1px solid var(--line);
}

.proof-products img {
    width: 100%;
    height: 176px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: var(--surface-subtle);
}

.proof-products span,
.availability-status {
    color: var(--success);
    font-size: 12px;
    font-weight: 720;
}

.proof-products small {
    color: var(--ink-soft);
}

.availability-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border-radius: 18px;
}

.availability-proof > img {
    width: 100%;
    height: 260px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: var(--surface-subtle);
}

.availability-proof p {
    margin-bottom: 16px;
    color: var(--ink-soft);
}

.variant-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.variant-row span,
.variant-row strong {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 13px;
}

.variant-row strong {
    border-color: var(--blue);
    color: var(--blue-dark);
}

.cart-action {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 720;
}

.completion-proof {
    display: grid;
    gap: 14px;
    padding: 28px;
}

.completion-chat-line {
    display: grid;
    gap: 5px;
    width: min(88%, 430px);
}

.completion-chat-line > span {
    color: var(--ink-soft);
    font-size: 12px;
}

.completion-chat-customer {
    justify-self: end;
}

.completion-chat-customer > span {
    text-align: right;
}

.completion-chat-bubble {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 4px 14px 14px;
    background: #ffffff;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.5;
}

.completion-chat-customer .completion-chat-bubble {
    border-color: var(--blue);
    border-radius: 14px 4px 14px 14px;
    background: var(--blue);
    color: #ffffff;
}

.completion-chat-confirmation .completion-chat-bubble {
    border-color: #a7d8bd;
    background: #f0faf5;
}

.completion-chat-confirmation strong {
    display: flex;
    align-items: center;
    gap: 9px;
}

.completion-chat-confirmation .dot-check {
    color: #ffffff;
}

.completion-chat-confirmation p {
    display: block;
    margin: 9px 0 0;
    color: var(--ink-soft);
    font-size: 13px;
}

.lead-section {
    color: #ffffff;
    background: var(--ink);
}

.lead-capture {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
    gap: 64px;
}

.lead-copy .section-label {
    margin-bottom: 12px;
    color: var(--cyan);
}

.lead-copy .section-copy {
    color: #c5d3e5;
}

.lead-points {
    display: grid;
    gap: 16px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.lead-points li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
}

.lead-points li > span:first-child {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid #46617f;
    border-radius: 50%;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 750;
}

.lead-points b,
.lead-points b + * {
    display: block;
}

.lead-points b + * {
    margin-top: 4px;
    color: #aebfd3;
    font-size: 14px;
}

.lead-flow-panel {
    overflow: hidden;
    border: 1px solid #bfd0e4;
    border-radius: 18px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.lead-flow-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
}

.lead-flow-head strong,
.lead-flow-head span {
    display: block;
}

.lead-flow-head div span {
    color: var(--ink-soft);
    font-size: 13px;
}

.lead-status {
    color: var(--success);
    font-size: 13px;
    font-weight: 740;
}

.lead-chat {
    display: grid;
    gap: 16px;
    padding: 24px;
    background: var(--surface-subtle);
}

.lead-chat-line {
    max-width: 82%;
}

.lead-chat-line.customer {
    margin-left: auto;
}

.lead-chat-line small {
    display: block;
    margin-bottom: 4px;
    color: var(--ink-soft);
    font-size: 12px;
}

.lead-chat-line.customer small {
    text-align: right;
}

.lead-bubble {
    padding: 12px 16px;
    border-radius: 14px 14px 14px 2px;
    background: var(--surface-strong);
    font-size: 14px;
    line-height: 1.5;
}

.customer .lead-bubble {
    border-radius: 14px 14px 2px 14px;
    background: var(--blue);
    color: #ffffff;
}

.lead-bubble.confirm {
    border: 1px solid #a7d8bd;
    background: #f0faf5;
}

.lead-result-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.lead-result {
    display: grid;
    gap: 4px;
    padding: 16px;
}

.lead-result + .lead-result {
    border-left: 1px solid var(--line);
}

.lead-result span {
    color: var(--ink-soft);
    font-size: 12px;
}

.lead-result strong {
    font-size: 13px;
}

.usecase-section {
    background: var(--surface);
}

.buying-proof-list {
    border-top: 1px solid var(--line);
}

.buying-proof-row {
    display: grid;
    grid-template-columns: 170px 1.02fr 0.78fr 1.2fr;
    min-height: 184px;
    border-bottom: 1px solid var(--line);
}

.buying-proof-row > * {
    min-width: 0;
    padding: 22px;
}

.buying-proof-row > * + * {
    border-left: 1px solid var(--line);
}

.buying-proof-media {
    display: grid;
    place-items: center;
    background: var(--surface-subtle);
}

.buying-proof-media img {
    width: 135px;
    height: 135px;
    object-fit: contain;
}

.buying-proof-question,
.buying-proof-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.buying-proof-question small,
.buying-proof-result small {
    font-size: 10px;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.buying-proof-question small {
    color: var(--blue-dark);
}

.buying-proof-question strong {
    font-size: 18px;
    line-height: 1.4;
}

.buying-proof-result strong {
    font-size: 14px;
    line-height: 1.42;
}

.buying-proof-result p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.5;
}

.buying-proof-result.ordinary {
    background: #f1f3f5;
    color: #5f6973;
}

.buying-proof-result.ordinary small {
    color: #7c8690;
}

.buying-proof-result.neuwon {
    background: #eaf8f1;
}

.buying-proof-result.neuwon small,
.buying-proof-truth {
    color: var(--success);
}

.buying-proof-truth {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 720;
}

.buying-proof-truth::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--success);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
}

#alustat {
    background: var(--surface-subtle);
}

.platform-current {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.platform-current > div:first-child {
    display: flex;
    align-items: center;
    gap: 24px;
}

.platform-logo {
    width: 72px;
    height: 56px;
    object-fit: contain;
}

.platform-logo.magento {
    width: 84px;
    height: 72px;
}

.platform-state {
    display: block;
    color: var(--ink-soft);
}

.platform-state.current {
    color: var(--success);
}

.platform-current h3,
.platform-current p {
    margin-bottom: 0;
}

.platform-current p {
    color: var(--ink-soft);
}

.platform-queue {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
}

.platform-queue > div {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 16px;
    padding: 24px;
}

.platform-queue > div + div {
    border-left: 1px solid var(--line);
}

.platform-queue .platform-state {
    grid-column: 1 / -1;
}

.platform-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 32px;
}

.platform-actions p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--ink-soft);
}

.launch-section {
    color: #ffffff;
    background: #0b2342;
}

.launch-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.launch-section .section-head p,
.launch-section .data-list p,
.launch-timeline p {
    color: #bfd0e3;
}

.data-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #345170;
}

.data-list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid #345170;
}

.data-list article:nth-child(odd) {
    padding-right: 24px;
}

.data-list article:nth-child(even) {
    padding-left: 24px;
    border-left: 1px solid #345170;
}

.data-list .data-icon,
.preview-note .data-icon {
    background: #173b63;
}

.data-list .data-icon {
    background: transparent;
}

.data-list .data-icon img {
    width: 42px;
    height: 42px;
}

.data-list h3,
.data-list p {
    margin-bottom: 0;
}

.data-list h3 {
    font-size: 17px;
}

.data-list p {
    font-size: 14px;
}

.launch-timeline {
    padding-left: 32px;
    border-left: 1px solid #345170;
}

.launch-timeline ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.launch-timeline li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid #345170;
}

.launch-timeline li > span {
    color: var(--cyan);
    font-size: 14px;
    font-weight: 760;
}

.launch-timeline h3,
.launch-timeline p {
    margin-bottom: 0;
}

.launch-timeline h3 {
    font-size: 19px;
}

.preview-note {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    margin-top: 32px;
    padding: 24px;
    border: 1px solid #466788;
    border-radius: var(--radius);
    background: #102e50;
}

.preview-note p {
    margin: 4px 0 0;
    font-size: 14px;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefit-list article {
    padding: 32px 24px;
}

.benefit-list article + article {
    border-left: 1px solid var(--line);
}

.benefit-list .icon {
    margin-bottom: 24px;
    background: transparent;
}

.benefit-list .icon img {
    width: 42px;
    height: 42px;
}

.benefit-list h3 {
    font-size: 19px;
}

.benefit-list p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

#faq {
    background: var(--surface-subtle);
}

.faq {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item > button {
    position: relative;
    width: 100%;
    padding: 24px 48px 24px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.faq-item > button::after {
    position: absolute;
    top: 24px;
    right: 8px;
    content: "+";
    color: var(--blue-dark);
    font-size: 24px;
    line-height: 1;
}

.faq-item > button[aria-expanded="true"]::after {
    content: "−";
}

.faq-item > p {
    max-width: 720px;
    padding: 0 48px 24px 0;
    margin-bottom: 0;
    color: var(--ink-soft);
}

.info-bar {
    max-width: 860px;
    margin: 32px auto 0;
    padding: 16px;
    border-left: 3px solid var(--blue);
    background: var(--surface-strong);
    color: var(--ink-soft);
    font-size: 14px;
}

.contact-section {
    padding: 96px 0;
    color: #ffffff;
    background: var(--blue-dark);
}

.cta-band {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: center;
    gap: 64px;
}

.cta-band h2 {
    max-width: 720px;
}

.cta-band .section-copy {
    max-width: 680px;
    color: #d8e6f7;
}

.cta-band .hero-actions {
    margin-top: 24px;
    margin-bottom: 0;
}

.cta-band .btn {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--blue-dark);
}

.cta-band .btn:hover {
    background: var(--surface-strong);
}

.contact-proof {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 18px;
    background: rgba(7, 21, 45, 0.32);
}

.contact-proof-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-proof p {
    padding: 16px;
    border-radius: 14px 14px 14px 2px;
    background: #ffffff;
    color: var(--ink);
    font-size: 14px;
}

.contact-proof > div:last-child {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
}

.contact-modal[hidden] {
    display: none;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
}

body.dialog-open {
    overflow: hidden;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 21, 45, 0.72);
}

.contact-dialog {
    position: relative;
    z-index: 1;
    width: min(700px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 32px 80px rgba(7, 21, 45, 0.28);
}

.contact-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-dialog-head h2 {
    margin-bottom: 8px;
    font-size: 34px;
}

.contact-dialog-head p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.contact-close {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
}

.contact-form {
    display: grid;
    gap: 16px;
}

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

.contact-grid label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 680;
}

.contact-grid label[data-platform-other][hidden] {
    display: none;
}

.contact-grid label.wide {
    grid-column: 1 / -1;
}

.contact-grid small {
    color: var(--ink-soft);
    font-weight: 500;
}

.contact-grid input,
.contact-grid select,
.contact-grid textarea {
    width: 100%;
    min-height: 44px;
    padding: 12px;
    border: 1px solid #b8c9dd;
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink);
}

.contact-grid textarea {
    min-height: 112px;
    resize: vertical;
}

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

.contact-status {
    min-height: 24px;
    font-size: 14px;
}

.contact-status.is-ok {
    color: var(--success);
}

.contact-status.is-error {
    color: #b42318;
}

.contact-form .btn {
    justify-self: start;
}

.exit-intent-panel {
    width: min(620px, 100%);
}

.exit-intent-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.exit-intent-later {
    min-height: 44px;
    padding: 8px 4px;
    border: 0;
    background: transparent;
    color: var(--ink-soft);
    font-weight: 700;
}

.exit-intent-later:hover {
    color: var(--ink);
}

.site-footer {
    padding: 64px 0 24px;
    color: #d6e1ef;
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
}

.footer-grid img {
    width: 136px;
    height: auto;
    aspect-ratio: 400 / 72;
    object-fit: contain;
}

.footer-grid p {
    max-width: 360px;
    margin: 16px 0 0;
    color: #9fb1c7;
    font-size: 14px;
}

.footer-grid > div > strong {
    display: block;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 14px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a,
.footer-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #aebfd3;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
}

.footer-links a:hover,
.footer-link-button:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #28405d;
    color: #8ea3ba;
    font-size: 13px;
}

@media (max-width: 1100px) {
    h1 {
        font-size: 54px;
    }

    .hero-content {
        width: 58%;
    }

    .proof-list {
        grid-template-columns: 1fr;
    }

    .capability-row,
    .lead-capture,
    .launch-layout,
    .cta-band {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .nav-links,
    .nav-contact {
        display: none;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .hero {
        min-height: 700px;
    }

    .hero-layout {
        align-items: flex-start;
        min-height: 700px;
        padding: 48px 0;
    }

    .hero-content {
        width: 72%;
    }

    .hero-media {
        inset: 0 0 0 22%;
        width: 88%;
        opacity: 0.5;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 30%, #000000 72%);
        mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 30%, #000000 72%);
    }

    .hero-commerce-chat {
        object-position: center;
    }

    .customer-trust,
    .how-layout,
    .capability-row,
    .lead-capture,
    .launch-layout,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .customer-copy {
        max-width: 680px;
    }

    .problem-list,
    .benefit-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .problem-item + .problem-item,
    .benefit-list article + article {
        border-left: 0;
    }

    .problem-item:nth-child(even),
    .benefit-list article:nth-child(even) {
        border-left: 1px solid var(--line);
    }

    .problem-item:nth-child(n + 3),
    .benefit-list article:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .capability-row {
        min-height: 0;
    }

    .capability-row-reverse .capability-copy {
        order: 0;
    }

    .lead-copy {
        max-width: 720px;
    }

    .buying-proof-row {
        grid-template-columns: 105px 1fr;
    }

    .buying-proof-row > * + * {
        border-left: 0;
    }

    .buying-proof-question {
        border-left: 1px solid var(--line) !important;
    }

    .buying-proof-result {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
    }

    .platform-current {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .platform-queue {
        grid-template-columns: 1fr;
    }

    .platform-queue > div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .launch-timeline {
        padding-left: 0;
        border-left: 0;
    }

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

@media (max-width: 640px) {
    h1 {
        font-size: 42px;
        line-height: 1.05;
    }

    h2,
    .customer-copy h2 {
        font-size: 34px;
        line-height: 1.1;
    }

    .shell {
        width: min(var(--shell), calc(100% - 32px));
    }

    .section,
    .section-compact,
    .contact-section {
        padding: 64px 0;
    }

    .section-head {
        margin-bottom: 32px;
        text-align: left;
    }

    .section-head p,
    .section-copy,
    .capability-copy p {
        font-size: 16px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-layout {
        min-height: 650px;
        padding: 24px 0;
    }

    .customer-strip {
        padding: 16px 0 64px;
    }

    .hero-content {
        width: 100%;
    }

    .hero .lead {
        font-size: 20px;
    }

    .hero-actions {
        flex-wrap: nowrap;
    }

    .hero-actions .btn {
        flex: 1 1 0;
        padding-right: 12px;
        padding-left: 12px;
    }

    .proof-list {
        gap: 8px;
    }

    .proof-list li {
        max-width: 330px;
        font-size: 12px;
    }

    .hero-media {
        inset: 0 -48% 0 22%;
        width: 126%;
        opacity: 0.22;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 48%, #000000 100%);
        mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 48%, #000000 100%);
    }

    .customer-trust {
        gap: 32px;
    }

    .customer-gallery {
        margin-right: -16px;
    }

    .customer-carousel-toolbar {
        padding-right: 16px;
    }

    .customer-carousel-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .customer-chat-track {
        padding-right: 16px;
        transform: none !important;
        transition: none;
    }

    .customer-chat-track::after {
        content: "";
        flex: 0 0 calc(18vw - 16px);
    }

    .customer-chat-card {
        flex-basis: 82vw;
        margin-right: 16px;
    }

    .problem-list,
    .benefit-list {
        grid-template-columns: 1fr;
    }

    .problem-item,
    .benefit-list article {
        padding: 24px 0;
    }

    .problem-item:nth-child(even),
    .benefit-list article:nth-child(even) {
        border-left: 0;
    }

    .problem-item + .problem-item,
    .benefit-list article + article {
        border-top: 1px solid var(--line);
    }

    .how-layout {
        gap: 48px;
    }

    .workflow li {
        grid-template-columns: 28px 40px 1fr;
        gap: 12px;
    }

    .workflow img {
        width: 40px;
        height: 40px;
    }

    .capability-row {
        gap: 32px;
        padding: 48px 0;
    }

    .capability-copy h3 {
        font-size: 28px;
    }

    .proof-products img {
        height: 128px;
    }

    .availability-proof {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .availability-proof > img {
        height: 200px;
    }

    .completion-proof {
        padding: 24px;
    }

    .lead-capture {
        gap: 48px;
    }

    .lead-flow-head,
    .lead-chat {
        padding: 16px;
    }

    .lead-result-row {
        grid-template-columns: 1fr;
    }

    .lead-result + .lead-result {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .buying-proof-row > * {
        padding: 18px 16px;
    }

    .buying-proof-media img {
        width: 92px;
        height: 92px;
    }

    .buying-proof-question strong {
        font-size: 16px;
    }

    .platform-current > div:first-child {
        align-items: flex-start;
        flex-direction: column;
    }

    .platform-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .data-list {
        grid-template-columns: 1fr;
    }

    .data-list article:nth-child(odd),
    .data-list article:nth-child(even) {
        padding-right: 0;
        padding-left: 0;
        border-left: 0;
    }

    .contact-proof {
        padding: 24px;
    }

    .contact-modal {
        align-items: end;
        padding: 0;
    }

    .contact-dialog {
        max-height: 92vh;
        padding: 24px 16px;
        border-radius: 18px 18px 0 0;
    }

    .contact-dialog-head h2 {
        font-size: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid label.wide {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        flex-basis: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }
}

@media (pointer: coarse), (max-width: 900px) {
    .customer-carousel-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .customer-chat-track {
        transform: none !important;
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

:focus-visible {
    outline: 3px solid var(--focus-dark);
    outline-offset: 3px;
    box-shadow: 0 0 0 2px var(--focus-light);
}
