:root {
  color-scheme: light;
  --navy: #0b1320;
  --navy-strong: #060d18;
  --blue: #005bff;
  --blue-hover: #0048cc;
  --accent-text: #005bff;
  --cyan: #0096ff;
  --page: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --surface-blue: #eef5ff;
  --text: #0b1320;
  --text-soft: #5c6b7f;
  --text-muted: #5d6d82;
  --border: #d8e2ee;
  --border-strong: #bdcbdc;
  --input-bg: #ffffff;
  --input-placeholder: #5d6d82;
  --success: #087a50;
  --warning: #9a5b00;
  --danger: #bd2c3a;
  --focus: #005bff;
  --header-bg: rgba(255, 255, 255, 0.96);
  --shadow-sm: 0 8px 24px rgba(11, 19, 32, 0.07);
  --shadow-lg: 0 28px 70px rgba(11, 19, 32, 0.13);
  --radius: 14px;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", var(--font-body);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #07111f;
  --surface: #0d1a2b;
  --surface-soft: #0a1726;
  --surface-blue: #102746;
  --text: #f7faff;
  --text-soft: #b4c1d1;
  --text-muted: #91a2b7;
  --accent-text: #63c6ff;
  --border: #263a53;
  --border-strong: #3a526d;
  --input-bg: #0a1726;
  --input-placeholder: #91a2b7;
  --success: #54d4a0;
  --warning: #ffc268;
  --danger: #ff8994;
  --focus: #5dbdff;
  --header-bg: rgba(7, 17, 31, 0.96);
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 30px 75px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body { margin: 0; min-width: 320px; background: var(--page); color: var(--text); font-family: var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--focus) 70%, transparent); outline-offset: 3px; }
[hidden] { display: none !important; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 11px 16px; border-radius:8px; background: var(--navy); color: white; font-weight: 800; }
.skip-link:focus { top: 12px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-tint { background: var(--surface-soft); border-block: 1px solid var(--border); }

.site-header { position: sticky; top: 0; z-index: 100; min-height: 74px; background: var(--header-bg); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.header-inner { min-height: 74px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.brand span { display: flex; align-items: baseline; gap: 7px; }
.brand strong { font-family: var(--font-display); font-size: 1.03rem; letter-spacing: 0.05em; }
.brand small { color: var(--accent-text); font-size: 0.69rem; font-weight: 800; letter-spacing: 0.16em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 32px); margin-left: auto; }
.desktop-nav a, .login-link { color: var(--text-soft); font-size: 0.86rem; font-weight: 700; }
.desktop-nav a:hover, .login-link:hover { color: var(--accent-text); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle, .menu-toggle { width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border: 1px solid var(--border); border-radius: 9px; background: var(--surface); cursor: pointer; }
.theme-toggle:hover, .menu-toggle:hover { border-color: var(--accent-text); color: var(--accent-text); }
.theme-toggle svg, .menu-toggle svg { width: 19px; height: 19px; }
:root[data-theme="light"] .icon-sun, :root[data-theme="dark"] .icon-moon { display: none; }
.menu-toggle { display: none; }
.menu-close-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close-icon { display: block; }

.button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 17px; border: 1px solid transparent; border-radius: 8px; font-size: 0.84rem; font-weight: 800; line-height: 1.25; cursor: pointer; transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease; }
.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-1px); }
.button-primary { background-color: var(--blue); color: #fff; box-shadow: 0 8px 18px rgba(0, 91, 255, 0.18); }
.button-primary:hover { background-color: var(--blue-hover); }
.button-secondary { border-color: var(--border-strong); background: var(--surface); color: var(--text); }
.button-secondary:hover { border-color: var(--accent-text); color: var(--accent-text); }
.button-light { background: #fff; color: var(--navy); }
.button-light:hover { background: #eaf3ff; }
.button-large { min-height: 49px; padding: 13px 21px; font-size: 0.9rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-size: 0.9rem; font-weight: 800; border-bottom: 1px solid var(--border-strong); padding-block: 5px; }
.text-link:hover { color: var(--accent-text); border-color: var(--accent-text); }

.mobile-nav { padding: 8px 20px 22px; background: var(--surface); border-top: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.mobile-nav a:not(.button) { display: block; padding: 13px 3px; border-bottom: 1px solid var(--border); color: var(--text-soft); font-weight: 700; }
.mobile-nav .button { width: 100%; margin-top: 15px; }

.hero { position: relative; padding: 86px 0 92px; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -1; width: 680px; height: 680px; right: -280px; top: -290px; border-radius: 50%; background: color-mix(in srgb, var(--blue) 9%, transparent); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr); gap: clamp(44px, 6vw, 78px); align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--accent-text); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; line-height: 1.5; }
.hero h1, .section-intro h2, .section-heading h2, .feature-copy h2, .contact-copy h2 { margin: 0; font-family: var(--font-display); letter-spacing: -0.04em; }
.hero h1 { max-width: 660px; font-size: clamp(2.45rem, 4.8vw, 4.25rem); line-height: 1.02; }
.hero h1 span { color: var(--accent-text); }
.lead { max-width: 660px; margin: 23px 0 0; color: var(--text-soft); font-size: clamp(1rem, 1.6vw, 1.12rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 21px; margin-top: 31px; }
.hero-note { max-width: 560px; margin: 15px 0 0; color: var(--text-muted); font-size: 0.78rem; line-height: 1.6; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 13px 22px; margin: 27px 0 0; padding: 22px 0 0; border-top: 1px solid var(--border); list-style: none; color: var(--text-soft); font-size: 0.82rem; font-weight: 700; }
.hero-checks li { display: inline-flex; align-items: center; gap: 7px; }
.hero-checks svg { width: 16px; height: 16px; color: var(--success); stroke-width: 2.4; }

.product-preview { margin: 0; border: 1px solid var(--border-strong); border-radius: 12px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow-lg); }
.preview-caption { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 16px; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.preview-window { min-height: 390px; display: grid; grid-template-columns: 50px minmax(0, 1fr); }
.preview-rail { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 11px 7px; background: var(--navy); color: #9dafc4; }
.preview-rail img { width: 29px; height: 29px; border-radius: 7px; margin-bottom: 12px; }
.preview-rail svg { width: 34px; height: 34px; padding: 8px; border-radius: 7px; }
.preview-rail .active { color: white; background: var(--blue); }
.preview-content { min-width: 0; padding: 17px; background: var(--surface-soft); }
.preview-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.preview-head > div:first-child { display: grid; gap: 2px; }
.preview-head span { color: var(--text-muted); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.preview-head strong { font-size: 1rem; }
.register-status { display: flex; align-items: center; gap: 6px; padding: 7px 9px; border: 1px solid color-mix(in srgb, var(--success) 34%, var(--border)); border-radius: 7px; background: color-mix(in srgb, var(--success) 7%, var(--surface)); color: var(--success); font-size: 0.61rem; font-weight: 800; }
.register-status i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.preview-search { height: 39px; display: flex; align-items: center; gap: 8px; margin-top: 15px; padding: 0 10px; border: 1px solid var(--border-strong); border-radius: 7px; background: var(--surface); color: var(--text-muted); font-size: 0.69rem; }
.preview-search svg { width: 15px; height: 15px; }
.preview-search span { flex: 1; }
kbd { border: 1px solid var(--border); border-bottom-width: 2px; border-radius: 4px; padding: 2px 5px; background: var(--surface-soft); color: var(--text-muted); font: 700 0.57rem var(--font-body); }
.preview-sale { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(150px, 0.7fr); gap: 12px; margin-top: 12px; }
.preview-lines, .preview-summary { border: 1px solid var(--border); border-radius: 8px; background: var(--surface); overflow: hidden; }
.line-head, .sale-line { display: grid; grid-template-columns: minmax(0, 1fr) 42px 78px; align-items: center; gap: 8px; padding: 9px 10px; }
.line-head { background: var(--surface-blue); color: var(--text-muted); font-size: 0.55rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.line-head span:not(:first-child) { text-align: right; }
.sale-line { min-height: 61px; border-top: 1px solid var(--border); font-size: 0.65rem; }
.sale-line > span { min-width: 0; }
.sale-line strong, .sale-line small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sale-line small { margin-top: 3px; color: var(--text-muted); font-size: 0.56rem; }
.sale-line b, .sale-line em { text-align: right; font-style: normal; font-weight: 800; }
.preview-summary { padding: 13px; }
.preview-summary > span { color: var(--text-muted); font-size: 0.59rem; font-weight: 700; }
.preview-summary dl { display: grid; gap: 8px; margin: 16px 0 0; }
.preview-summary dl div { display: flex; justify-content: space-between; gap: 8px; font-size: 0.61rem; }
.preview-summary dt { color: var(--text-muted); }
.preview-summary dd { margin: 0; font-weight: 700; }
.preview-total { margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--border); }
.preview-total span, .preview-total strong { display: block; }
.preview-total span { color: var(--text-muted); font-size: 0.59rem; }
.preview-total strong { margin-top: 3px; font-family: var(--font-display); font-size: 1rem; }
.preview-summary button { width: 100%; height: 34px; display: flex; align-items: center; justify-content: center; margin-top: 12px; border: 0; border-radius: 6px; background: var(--blue); color: #fff; font-size: 0.65rem; font-weight: 800; }
.preview-note { margin: 0; padding: 10px 16px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.64rem; line-height: 1.5; }

.business-runway { position: relative; padding: 25px 0 29px; overflow: hidden; border-block: 1px solid var(--border); background: var(--surface-soft); }
.business-runway::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.42; background-image: linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), var(--border) 50%, transparent calc(50% + 1px)); background-size: 74px 100%; }
.business-runway-heading { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 19px; }
.business-runway-kicker { margin: 0 0 4px; color: var(--accent-text); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.business-runway-heading h2 { margin: 0; font: 700 clamp(1.08rem, 2vw, 1.32rem)/1.2 var(--font-display); letter-spacing: -0.025em; }
.business-runway-toggle { min-height: 38px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); color: var(--text-soft); font-size: 0.69rem; font-weight: 800; cursor: pointer; }
.business-runway-toggle:hover { border-color: var(--accent-text); color: var(--accent-text); }
.business-runway-toggle svg { width: 16px; height: 16px; stroke-width: 2.2; }
.runway-icon-play { display: none; }
.business-runway[data-paused="true"] .runway-icon-pause { display: none; }
.business-runway[data-paused="true"] .runway-icon-play { display: block; }
.business-runway-viewport { position: relative; z-index: 1; overflow: hidden; border-block: 1px solid var(--border); background: color-mix(in srgb, var(--surface) 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.business-runway-viewport::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; z-index: 0; border-top: 1px dashed var(--border-strong); }
.business-runway-track { position: relative; z-index: 1; width: max-content; display: flex; padding-block: 12px; animation: business-runway-scroll 32s linear infinite; will-change: transform; }
.business-runway-set { display: flex; gap: 12px; margin: 0; padding: 0 12px 0 0; list-style: none; }
.business-runway-item { width: clamp(205px, 18vw, 238px); min-height: 69px; display: flex; align-items: center; gap: 13px; padding: 10px 15px; border: 1px solid var(--border-strong); border-radius: 9px; background: var(--surface); box-shadow: 0 6px 18px rgba(11, 19, 32, 0.06); }
.business-runway-icon { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--accent-text) 30%, var(--border)); border-radius: 8px; background: var(--surface-blue); color: var(--accent-text); }
.business-runway-icon svg { width: 27px; height: 27px; stroke-width: 1.7; }
.business-runway-item > span:last-child { min-width: 0; display: grid; gap: 2px; }
.business-runway-item small { overflow: hidden; color: var(--text-muted); font-size: 0.59rem; font-weight: 700; letter-spacing: 0.04em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.business-runway-item strong { color: var(--text); font-size: 0.83rem; }
.business-runway-viewport:hover .business-runway-track,
.business-runway[data-paused="true"] .business-runway-track { animation-play-state: paused; }

@keyframes business-runway-scroll {
  to { transform: translateX(-50%); }
}

.split-layout { display: grid; grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr); gap: clamp(58px, 8vw, 110px); align-items: start; }
.section-intro h2, .section-heading h2, .feature-copy h2, .contact-copy h2 { font-size: clamp(1.95rem, 3.7vw, 3.15rem); line-height: 1.1; }
.section-intro > p:last-child, .section-heading > p:last-child, .feature-copy > p, .contact-copy > p { margin: 18px 0 0; color: var(--text-soft); line-height: 1.75; }
.problem-list { border-top: 1px solid var(--border-strong); }
.problem-list article { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 19px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.problem-list article > span, .feature-points article > span { color: var(--accent-text); font: 800 0.72rem var(--font-display); letter-spacing: 0.08em; }
.problem-list h3, .feature-points h3 { margin: 0; font-size: 1rem; }
.problem-list p, .feature-points p { margin: 6px 0 0; color: var(--text-soft); font-size: 0.86rem; line-height: 1.65; }
.section-heading { max-width: 680px; margin-bottom: 48px; }
.process { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); margin: 0; padding: 0; border-block: 1px solid var(--border-strong); list-style: none; }
.process li { position: relative; min-height: 124px; display: flex; flex-direction: column; justify-content: center; gap: 11px; padding: 17px; border-right: 1px solid var(--border); }
.process li:last-child { border-right: 0; }
.process span { color: var(--accent-text); font: 800 0.65rem var(--font-display); }
.process strong { font-size: 0.78rem; }
.process svg { position: absolute; right: -9px; top: 52px; z-index: 2; width: 17px; height: 17px; padding: 3px; border-radius: 50%; background: var(--surface-soft); color: var(--text-muted); }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.benefit-grid article { min-height: 245px; padding: 28px 24px; border-right: 1px solid var(--border); background: var(--surface); }
.benefit-grid article:last-child { border-right: 0; }
.benefit-grid svg { width: 26px; height: 26px; color: var(--accent-text); }
.benefit-grid h3 { margin: 37px 0 0; font-size: 1rem; line-height: 1.35; }
.benefit-grid p { margin: 10px 0 0; color: var(--text-soft); font-size: 0.83rem; line-height: 1.65; }
.feature-showcase { display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr); gap: clamp(48px, 8vw, 110px); align-items: center; margin-top: 100px; padding: clamp(34px, 5vw, 64px); background: var(--navy); color: white; }
.feature-copy > p { color: #a9b8ca; }
.feature-points { margin-top: 31px; border-top: 1px solid rgba(255,255,255,.18); }
.feature-points article { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 16px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.feature-points p { color: #a9b8ca; }
.receipt-card { max-width: 390px; width: 100%; justify-self: center; padding: 28px; background: #fffdf6; color: var(--navy); box-shadow: 0 24px 55px rgba(0,0,0,.28); transform: rotate(1deg); }
.receipt-top, .receipt-status { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.receipt-top span { font-family: var(--font-display); font-weight: 800; }
.receipt-top small { color: #667085; font-size: 0.65rem; }
.receipt-status { justify-content: flex-start; margin-top: 27px; padding-block: 17px; border-block: 1px dashed #b9b29f; color: #087a50; }
.receipt-status svg { width: 22px; height: 22px; stroke-width: 2.4; }
.receipt-card dl { margin: 22px 0; }
.receipt-card dl div { display: flex; justify-content: space-between; gap: 18px; padding: 7px 0; font-size: 0.78rem; }
.receipt-card dt { color: #667085; }
.receipt-card dd { margin: 0; font-weight: 800; text-align: right; }
.receipt-total { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding-top: 18px; border-top: 2px solid var(--navy); }
.receipt-total span { color: #667085; font-size: 0.75rem; }
.receipt-total strong { font-family: var(--font-display); font-size: 1.22rem; }
.receipt-card > p { margin: 19px 0 0; color: #667085; font-size: 0.7rem; line-height: 1.5; }
.capabilities { display: flex; align-items: center; gap: 28px; margin-top: 28px; padding: 22px 0; border-block: 1px solid var(--border); }
.capabilities > span { color: var(--text-muted); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.capabilities ul { display: flex; flex: 1; justify-content: space-between; gap: 14px; margin: 0; padding: 0; list-style: none; color: var(--text-soft); font-size: 0.78rem; font-weight: 700; }

.pricing-heading { max-width: 760px; }
.plans { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--border); background: var(--surface); }
.plan { position: relative; min-width: 0; display: flex; flex-direction: column; padding: 27px 22px 23px; border-right: 1px solid var(--border); }
.plan:last-child { border-right: 0; }
.plan-featured { background: var(--navy); color: white; }
.plan-badge { position: absolute; top: 19px; right: 18px; padding: 4px 7px; border-radius: 4px; background: #dff1ff; color: #004eb8; font-size: 0.59rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.plan header > span, .plan header strong, .plan header small { display: block; }
.plan header > span { color: var(--accent-text); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.plan-featured header > span { color: #6fc8ff; }
.plan header strong { margin-top: 14px; font-family: var(--font-display); font-size: 1.55rem; white-space: nowrap; }
.plan header small { margin-top: 4px; color: var(--text-muted); font-size: 0.68rem; }
.plan-featured header small { color: #9dafc4; }
.plan dl { flex: 1; margin: 24px 0 25px; padding-top: 4px; border-top: 1px solid var(--border); }
.plan-featured dl { border-color: rgba(255,255,255,.18); }
.plan dl div { padding: 13px 0; border-bottom: 1px solid var(--border); }
.plan-featured dl div { border-color: rgba(255,255,255,.12); }
.plan dt { color: var(--text-muted); font-size: 0.63rem; font-weight: 700; }
.plan-featured dt { color: #9dafc4; }
.plan dd { margin: 4px 0 0; font-size: 0.74rem; font-weight: 800; line-height: 1.45; }
.plan .button { width: 100%; }
.pricing-fine { max-width: 800px; margin: 22px auto 0; color: var(--text-muted); font-size: 0.72rem; line-height: 1.65; text-align: center; }
.addons { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 48px; margin-top: 58px; padding-top: 42px; border-top: 1px solid var(--border-strong); }
.addons-intro h3 { margin: 0; font-family: var(--font-display); font-size: 1.25rem; }
.addon-columns { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); background: var(--surface); }
.addon-columns dl { margin: 0; padding: 11px 18px; border-right: 1px solid var(--border); }
.addon-columns dl:last-child { border-right: 0; }
.addon-columns dl div { padding: 11px 0; border-bottom: 1px solid var(--border); }
.addon-columns dl div:last-child { border-bottom: 0; }
.addon-columns dt { color: var(--text-muted); font-size: 0.64rem; }
.addon-columns dd { margin: 4px 0 0; font-size: 0.72rem; font-weight: 800; line-height: 1.45; }

.trust-callout { padding: 34px 0; background: var(--blue); color: white; }
.trust-callout .container { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 24px; }
.trust-callout svg { width: 40px; height: 40px; }
.trust-callout h2 { margin: 0; font-family: var(--font-display); font-size: 1.25rem; }
.trust-callout p { margin: 5px 0 0; color: #dfeeff; font-size: 0.82rem; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr); gap: clamp(52px, 8vw, 105px); align-items: start; }
.contact-steps { display: grid; gap: 13px; margin: 29px 0 0; padding: 0; list-style: none; }
.contact-steps li { display: flex; align-items: center; gap: 11px; color: var(--text-soft); font-size: 0.84rem; font-weight: 700; }
.contact-steps span { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--border-strong); border-radius: 50%; color: var(--accent-text); font-size: 0.67rem; font-weight: 800; }
.contact-methods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 31px; }
.contact-method { --method-accent: var(--accent-text); min-width: 0; min-height: 88px; display: grid; grid-template-columns: 44px minmax(0, 1fr) 18px; align-items: center; gap: 13px; padding: 15px; border: 1px solid var(--border-strong); border-radius: 10px; background: var(--surface); box-shadow: 0 5px 16px rgba(11, 19, 32, 0.04); transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.contact-method-whatsapp { --method-accent: var(--success); }
.contact-method:hover { border-color: var(--method-accent); background: color-mix(in srgb, var(--method-accent) 5%, var(--surface)); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-method:focus-visible { border-color: var(--method-accent); }
.contact-method-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--method-accent) 28%, var(--border)); border-radius: 9px; background: color-mix(in srgb, var(--method-accent) 9%, var(--surface)); color: var(--method-accent); }
.contact-method-icon svg { width: 23px; height: 23px; stroke-width: 1.8; }
.contact-method-whatsapp .contact-method-icon svg { width: 25px; height: 25px; stroke-width: 1.55; }
.contact-method-copy { min-width: 0; display: grid; gap: 4px; }
.contact-method-copy strong { color: var(--text); font-size: 0.82rem; line-height: 1.25; }
.contact-method-copy > span { overflow-wrap: anywhere; color: var(--text-soft); font-size: 0.72rem; line-height: 1.35; }
.contact-method-action { color: var(--text-muted); transition: color 160ms ease, transform 160ms ease; }
.contact-method-action svg { width: 18px; height: 18px; stroke-width: 2; }
.contact-method:hover .contact-method-action { color: var(--method-accent); transform: translate(2px, -2px); }
.demo-form { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--border-strong); background: var(--surface); box-shadow: var(--shadow-sm); }
.form-heading h3 { margin: 0; font-family: var(--font-display); font-size: 1.35rem; }
.form-heading p { margin: 5px 0 0; color: var(--text-muted); font-size: 0.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-top: 24px; }
.field { display: grid; gap: 7px; margin-top: 17px; }
.form-grid .field { margin-top: 0; }
.field label { color: var(--text-soft); font-size: 0.72rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 45px; border: 1px solid var(--border-strong); border-radius: 7px; background: var(--input-bg); color: var(--text); padding: 10px 12px; font-size: 0.84rem; }
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--input-placeholder); opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: color-mix(in srgb, var(--blue) 55%, var(--border-strong)); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: 3px solid color-mix(in srgb, var(--focus) 18%, transparent); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 1em; color: var(--danger); font-size: 0.67rem; }
.form-error { margin-top: 18px; padding: 11px 13px; border: 1px solid color-mix(in srgb, var(--danger) 45%, var(--border)); background: color-mix(in srgb, var(--danger) 8%, var(--surface)); color: var(--danger); font-size: 0.74rem; font-weight: 700; }
.form-note { margin: 17px 0; color: var(--text-muted); font-size: 0.68rem; line-height: 1.55; }
.demo-form .button { width: 100%; }

.site-footer { padding: 67px 0 22px; background: var(--navy-strong); color: white; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) 1fr 1fr; gap: 64px; padding-bottom: 50px; }
.footer-brand .brand img { width: 44px; height: 44px; }
.footer-brand p { max-width: 390px; margin: 20px 0 9px; color: #9dafc4; font-size: 0.82rem; line-height: 1.7; }
.footer-brand > strong { color: #d9e5f3; font-size: 0.76rem; }
.footer-grid nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid nav h2 { margin: 0 0 7px; font-size: 0.74rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-grid nav a { color: #9dafc4; font-size: 0.76rem; }
.footer-grid nav a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.12); color: #8194aa; font-size: 0.7rem; }
.footer-bottom a:hover { color: white; }
.toast { position: fixed; z-index: 200; right: 20px; bottom: 20px; width: min(340px, calc(100% - 40px)); padding: 15px 17px; border: 1px solid color-mix(in srgb, var(--success) 45%, var(--border)); border-left: 4px solid var(--success); background: var(--surface); color: var(--text); box-shadow: var(--shadow-lg); }
.toast strong, .toast span { display: block; }
.toast strong { font-size: 0.8rem; }
.toast span { margin-top: 3px; color: var(--text-soft); font-size: 0.72rem; }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(12px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .product-preview { width: min(760px, 100%); }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid article:nth-child(2) { border-right: 0; }
  .benefit-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .plans { grid-template-columns: 1fr 1fr; }
  .plan:nth-child(2) { border-right: 0; }
  .plan:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 700px; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .header-demo, .login-link { display: none; }
  .hero { padding: 67px 0 73px; }
  .hero h1 { font-size: clamp(2.3rem, 9vw, 3.7rem); }
  .business-runway-heading { align-items: center; }
  .split-layout { grid-template-columns: 1fr; gap: 44px; }
  .process { grid-template-columns: repeat(4, 1fr); }
  .process li { border-bottom: 1px solid var(--border); }
  .process li:nth-child(4) { border-right: 0; }
  .process li:nth-child(n+5) { border-bottom: 0; }
  .process li:nth-child(4) svg { display: none; }
  .feature-showcase { grid-template-columns: 1fr; }
  .capabilities { align-items: flex-start; }
  .capabilities ul { flex-wrap: wrap; justify-content: flex-start; }
  .addons { grid-template-columns: 1fr; gap: 23px; }
  .addon-columns { grid-template-columns: 1fr; }
  .addon-columns dl { border-right: 0; border-bottom: 1px solid var(--border); }
  .addon-columns dl:last-child { border-bottom: 0; }
  .trust-callout .container { grid-template-columns: 38px 1fr; }
  .trust-callout .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header, .header-inner { min-height: 66px; }
  .brand img { width: 38px; height: 38px; }
  .brand strong { font-size: 0.92rem; }
  .header-actions { gap: 8px; }
  .theme-toggle, .menu-toggle { width: 38px; height: 38px; }
  .hero { padding-top: 53px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-checks { display: grid; }
  .preview-caption { align-items: flex-start; flex-direction: column; gap: 4px; padding-block: 9px; }
  .preview-window { min-height: 0; grid-template-columns: 38px minmax(0, 1fr); }
  .preview-rail { padding-inline: 3px; }
  .preview-rail svg { width: 30px; height: 30px; }
  .preview-content { padding: 11px; }
  .preview-head { align-items: stretch; flex-direction: column; }
  .register-status { align-self: flex-start; }
  .preview-sale { grid-template-columns: 1fr; }
  .sale-line:nth-child(4) { display: none; }
  .preview-summary dl { grid-template-columns: 1fr 1fr; }
  .preview-total { display: flex; justify-content: space-between; align-items: flex-end; }
  .preview-note { display: none; }
  .business-runway { padding-block: 21px 24px; }
  .business-runway-heading { margin-bottom: 15px; }
  .business-runway-heading h2 { font-size: 1rem; }
  .business-runway-toggle { width: 38px; padding: 0; justify-content: center; }
  .business-runway-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .business-runway-viewport { mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
  .business-runway-track { padding-block: 10px; animation-duration: 27s; }
  .business-runway-item { width: 198px; min-height: 64px; padding: 9px 12px; }
  .business-runway-icon { width: 40px; height: 40px; flex-basis: 40px; }
  .process { grid-template-columns: 1fr 1fr; }
  .process li, .process li:nth-child(n+5) { min-height: 92px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .process li:nth-child(even) { border-right: 0; }
  .process li:last-child { border-bottom: 0; }
  .process li:nth-child(2) svg, .process li:nth-child(4) svg, .process li:nth-child(6) svg { display: none; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .benefit-grid article:nth-child(2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .benefit-grid article:last-child { border-bottom: 0; }
  .benefit-grid h3 { margin-top: 23px; }
  .feature-showcase { margin-top: 70px; padding: 27px 20px; }
  .receipt-card { padding: 22px 18px; transform: none; }
  .capabilities { display: block; }
  .capabilities ul { margin-top: 16px; }
  .plans { grid-template-columns: 1fr; }
  .plan, .plan:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--border); }
  .plan:last-child { border-bottom: 0; }
  .trust-callout { padding-block: 30px; }
  .trust-callout .container { grid-template-columns: 1fr; }
  .contact-methods, .form-grid { grid-template-columns: 1fr; }
  .demo-form { padding-inline: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .business-runway-toggle { display: none; }
  .business-runway-viewport { overflow-x: auto; mask-image: none; }
  .business-runway-set[aria-hidden="true"] { display: none; }
}
