@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face { font-family: "Rajdhani"; src: url("../fonts/rajdhani-500.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Rajdhani"; src: url("../fonts/rajdhani-600.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Rajdhani"; src: url("../fonts/rajdhani-700.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }

:root {
    --black: #080b0d;
    --black-deep: #050607;
    --graphite: #0b0d10;
    --carbon: #151a20;
    --panel: #101419;
    --panel-soft: #12171d;
    --red: #f23335;
    --red-hot: #ff4547;
    --red-dark: #8e1f25;
    --white: #f2f4f7;
    --steel: #7b838e;
    --muted: #9aa1aa;
    --line: rgba(242, 244, 247, .15);
    --line-red: rgba(242, 51, 53, .52);
    --shell: min(1320px, calc(100vw - 64px));
    --font-display: "Rajdhani", "Arial Narrow", "Segoe UI", sans-serif;
    --font-body: Inter, "Segoe UI", Arial, sans-serif;
    --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
    margin: 0;
    min-width: 320px;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 6%, rgba(242, 51, 53, .07), transparent 26rem),
        linear-gradient(180deg, #080a0d 0%, #0a0d10 55%, #07090b 100%);
    font: 400 16px/1.65 var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, input[type="range"] { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
    outline: 2px solid var(--red-hot);
    outline-offset: 4px;
}
::selection { color: var(--white); background: var(--red-dark); }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; z-index: 1000; left: 1rem; top: 1rem; transform: translateY(-160%);
    padding: .75rem 1rem; color: var(--white); background: var(--red); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.site-noise {
    position: fixed; z-index: 50; inset: 0; pointer-events: none; opacity: .055;
    background-image: repeating-radial-gradient(circle at 30% 20%, rgba(255,255,255,.6) 0 1px, transparent 1px 4px);
    background-size: 7px 9px;
}
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Header and brand */
.site-header {
    position: fixed; z-index: 100; inset: 0 0 auto; height: 88px;
    border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, height .3s;
}
.site-header.is-scrolled { height: 72px; background: rgba(8, 11, 13, .88); border-color: var(--line); backdrop-filter: blur(18px); }
.header-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { position: relative; display: inline-flex; flex-direction: column; flex: 0 0 auto; line-height: 1; }
.brand-word {
    position: relative; z-index: 1; color: #fff; font: 800 23px/.85 var(--font-display);
    letter-spacing: .13em; transform: scaleY(.82); transform-origin: left bottom;
}
.brand-war { position: relative; }
.brand-war::after {
    content: ""; position: absolute; z-index: 3; left: -8%; right: -5%; top: 55%; height: 2px;
    background: var(--red); box-shadow: 0 0 5px var(--red), 0 0 12px var(--red);
}
.brand-beam {
    position: absolute; z-index: 0; left: calc(100% - 38px); top: 9px; width: 136px; height: 1px;
    background: linear-gradient(90deg, var(--red-hot), rgba(242, 51, 53, 0)); box-shadow: 0 0 8px var(--red);
}
.brand-sub { margin: 8px 0 0 2px; color: var(--muted); font: 600 7px/1 var(--font-body); letter-spacing: .55em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); margin-left: auto; }
.desktop-nav a { position: relative; color: #c8cbd0; font: 600 11px/1 var(--font-display); letter-spacing: .13em; text-transform: uppercase; transition: color .2s; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -12px; height: 1px; background: var(--red); transition: right .25s var(--ease); }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.language-link { color: var(--white); font: 700 11px/1 var(--font-display); letter-spacing: .14em; border-left: 1px solid var(--line); padding-left: 18px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; padding: 12px; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; background: var(--white); margin: 5px 0; transition: transform .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: -1; inset: 0; padding: 112px 32px 32px; background: rgba(7, 9, 11, .98); }
.mobile-menu nav { display: grid; border-top: 1px solid var(--line); }
.mobile-menu nav a { display: flex; gap: 24px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); font: 500 clamp(22px, 6vw, 36px)/1 var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.mobile-menu nav a span { color: var(--red); font-size: 11px; }
.mobile-menu-foot { position: absolute; inset: auto 32px 30px; display: flex; justify-content: space-between; color: var(--muted); font: 600 10px/1.2 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }

/* Typography and controls */
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; }
h2 { font-size: clamp(34px, 4.2vw, 64px); line-height: 1.03; letter-spacing: .035em; text-transform: uppercase; }
.eyebrow, .micro-label {
    display: flex; align-items: center; gap: 12px; color: var(--red);
    font: 700 11px/1.2 var(--font-display); letter-spacing: .22em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--red); box-shadow: 0 0 8px rgba(242, 51, 53, .5); }
.button {
    --button-bg: transparent; min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 24px;
    padding: 0 24px; border: 1px solid var(--line); color: var(--white); background: var(--button-bg);
    clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
    font: 700 11px/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase; transition: background .22s, border-color .22s, transform .22s;
}
.button:hover { transform: translateY(-2px); }
.button--primary { --button-bg: var(--red); border-color: var(--red); box-shadow: inset 0 0 20px rgba(255,255,255,.05), 0 0 24px rgba(242,51,53,.1); }
.button--primary:hover { --button-bg: var(--red-hot); }
.button--outline:hover { border-color: var(--red); background: rgba(242, 51, 53, .08); }
.button--small { min-height: 42px; padding-inline: 18px; }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 20px; color: var(--white); font: 700 11px/1 var(--font-display); letter-spacing: .16em; text-transform: uppercase; }
.text-link span { color: var(--red); transition: transform .2s; }
.text-link:hover span { transform: translate(3px, -3px); }
.angular-panel {
    position: relative; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(21,26,32,.94), rgba(9,12,15,.94));
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.angular-panel::before, .angular-panel::after { content: ""; position: absolute; width: 22px; height: 1px; background: var(--red); }
.angular-panel::before { top: 0; right: 0; transform: rotate(45deg); transform-origin: right; }
.angular-panel::after { bottom: 0; left: 0; transform: rotate(45deg); transform-origin: left; }

/* Home hero */
.hero { min-height: min(880px, 100svh); padding-top: 150px; padding-bottom: 72px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr); align-items: center; gap: clamp(40px, 6vw, 94px); }
.hero-copy { position: relative; z-index: 4; }
.hero-title { margin: 22px 0 28px; font-size: clamp(55px, 7.5vw, 112px); line-height: .84; letter-spacing: .025em; text-transform: uppercase; }
.hero-title span, .hero-title strong { display: block; }
.hero-title strong { position: relative; width: max-content; margin-top: .12em; color: var(--red); font-weight: 600; }
.hero-title strong::after { content: ""; position: absolute; left: 0; right: -38px; top: 54%; height: 2px; background: linear-gradient(90deg, var(--red), var(--red-hot), transparent); box-shadow: 0 0 8px var(--red); }
.hero-lead { max-width: 640px; color: #b7bdc5; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 34px; }
.hero-stats { display: flex; margin: 54px 0 0; }
.hero-stats > div { min-width: 125px; padding: 0 25px; border-left: 1px solid var(--line); }
.hero-stats > div:first-child { padding-left: 0; border-left: 0; }
.hero-stats dt { color: var(--white); font: 500 25px/1 var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.hero-stats dd { margin: 9px 0 0; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual { position: relative; min-height: 570px; }
.hero-frame { position: absolute; top: 28px; right: 0; width: min(100%, 650px); aspect-ratio: 1.22; overflow: hidden; border: 1px solid rgba(255,255,255,.23); clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px)); }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,11,13,.35), transparent 50%), linear-gradient(0deg, rgba(8,11,13,.7), transparent 40%); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.06) saturate(.82); }
.frame-corners::before, .frame-corners::after { content: ""; position: absolute; z-index: 3; width: 56px; height: 56px; border-color: var(--red); }
.frame-corners::before { left: 20px; top: 20px; border-left: 1px solid var(--red); border-top: 1px solid var(--red); }
.frame-corners::after { right: 20px; bottom: 20px; border-right: 1px solid var(--red); border-bottom: 1px solid var(--red); }
.visual-index { position: absolute; z-index: 4; left: 26px; bottom: 24px; color: #d7d9dd; font: 600 9px/1 var(--font-display); letter-spacing: .18em; text-transform: uppercase; }
.visual-scan { position: absolute; z-index: 3; left: 0; right: 0; top: 40%; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); box-shadow: 0 0 10px var(--red); opacity: .7; animation: scan 6s ease-in-out infinite; }
.visual-reticle { position: absolute; z-index: 3; right: 32px; top: 31px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; }
.visual-reticle::before, .visual-reticle::after { content: ""; position: absolute; background: rgba(255,255,255,.4); }
.visual-reticle::before { width: 58px; height: 1px; left: -8px; top: 21px; }
.visual-reticle::after { width: 1px; height: 58px; left: 21px; top: -8px; }
.hero-card { position: absolute; z-index: 5; border: 1px solid var(--line); background: rgba(8,11,13,.94); }
.hero-card--gear { left: -34px; bottom: 20px; width: 210px; height: 170px; overflow: hidden; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); }
.hero-card--gear img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--status { right: 28px; bottom: 2px; display: grid; grid-template-columns: 12px auto; align-items: center; gap: 5px 10px; width: 200px; padding: 17px 18px; }
.hero-card--status .status-dot { grid-row: 1 / 3; width: 8px; height: 8px; border-radius: 50%; background: #39d98a; box-shadow: 0 0 10px #39d98a; }
.hero-card--status strong { font: 500 20px/1 var(--font-display); letter-spacing: .12em; }
.hero-card--status small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
@keyframes scan { 0%, 100% { top: 26%; opacity: .25; } 50% { top: 78%; opacity: .8; } }
.signal-strip { overflow: hidden; border-block: 1px solid var(--line-red); background: rgba(10,13,16,.86); }
.signal-track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.signal-track span { display: inline-flex; align-items: center; gap: 22px; padding: 18px 40px; color: #c1c5ca; font: 600 10px/1 var(--font-display); letter-spacing: .18em; text-transform: uppercase; }
.signal-track i { width: 5px; height: 5px; transform: rotate(45deg); background: var(--red); box-shadow: 0 0 9px var(--red); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Shared sections */
.section { position: relative; padding-block: clamp(88px, 10vw, 150px); }
.section-heading { max-width: 850px; margin-bottom: 58px; }
.section-heading h2 { margin: 18px 0 24px; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); font-size: 17px; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); align-items: end; gap: 80px; }
.section-heading--split > p, .section-heading--split > .text-link { margin-bottom: 22px; }
.section-heading--split > p { color: var(--muted); }
.section-heading--split > .text-link { justify-self: end; }
.section--kit { padding-top: 150px; }
.kit-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 74px; align-items: center; }
.product-stage { position: relative; min-height: 520px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: radial-gradient(circle at 45% 52%, rgba(242,51,53,.1), transparent 42%); }
.product-stage::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent); }
.product-code { position: absolute; z-index: 2; left: 22px; top: 20px; color: var(--red); font: 600 9px/1 var(--font-display); letter-spacing: .2em; }
.product-tagger { position: absolute; z-index: 2; width: 74%; left: 3%; top: 20%; filter: drop-shadow(0 22px 30px rgba(0,0,0,.6)); }
.product-case { position: absolute; z-index: 1; width: 40%; right: 0; bottom: 4%; opacity: .72; }
.product-line { position: absolute; z-index: 3; left: 8%; right: 10%; top: 55%; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); box-shadow: 0 0 6px var(--red); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--red); font: 600 12px/1 var(--font-display); letter-spacing: .14em; padding-top: 8px; }
.process-list h3 { margin: 0 0 7px; font-size: 22px; letter-spacing: .08em; text-transform: uppercase; }
.process-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.section--pricing { border-block: 1px solid var(--line); background: linear-gradient(135deg, rgba(21,26,32,.48), rgba(8,11,13,.6)); }
.section--pricing::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 78px 78px; mask-image: radial-gradient(circle at 70%, black, transparent 65%); }
.section--pricing > .shell { position: relative; }
.rate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 28px; }
.rate-card { position: relative; min-height: 235px; padding: 25px; border: 1px solid var(--line); background: rgba(8,11,13,.8); clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); }
.rate-card > div { display: flex; justify-content: space-between; min-height: 32px; }
.rate-card > div > span { color: var(--red); font: 700 12px/1 var(--font-display); }
.rate-card em { align-self: start; padding: 5px 8px; color: var(--red); border: 1px solid var(--line-red); font: normal 700 8px/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.rate-card h3 { margin: 25px 0 5px; color: #b4bac1; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; }
.rate-card p { margin: 0; line-height: 1; }
.rate-card p strong { font: 500 clamp(45px, 5vw, 70px)/1 var(--font-display); }
.rate-card small { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.rate-card--best { border-color: var(--line-red); background: linear-gradient(150deg, rgba(142,31,37,.22), rgba(8,11,13,.9)); }
.calculator { padding: 34px; }
.calculator-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.calculator-head h3 { margin: 0; font-size: 24px; letter-spacing: .08em; text-transform: uppercase; }
.calculator-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.range-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.range-label label { color: #c7cbd1; font: 600 11px/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.range-label output { color: var(--white); font: 500 24px/1 var(--font-display); }
input[type="range"] { width: 100%; height: 18px; margin: 0; appearance: none; background: transparent; }
input[type="range"]::-webkit-slider-runnable-track { height: 2px; background: linear-gradient(90deg, var(--red) 0 var(--range-progress, 50%), rgba(255,255,255,.18) var(--range-progress, 50%) 100%); }
input[type="range"]::-moz-range-track { height: 2px; background: rgba(255,255,255,.18); }
input[type="range"]::-moz-range-progress { height: 2px; background: var(--red); }
input[type="range"]::-webkit-slider-thumb { width: 18px; height: 18px; margin-top: -8px; appearance: none; border: 2px solid var(--red); border-radius: 0; transform: rotate(45deg); background: var(--black); box-shadow: 0 0 12px rgba(242,51,53,.45); }
input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border: 2px solid var(--red); border-radius: 0; transform: rotate(45deg); background: var(--black); box-shadow: 0 0 12px rgba(242,51,53,.45); }
.range-scale { display: flex; justify-content: space-between; color: var(--steel); font-size: 9px; }
.calculator-result { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.calculator-result > div > span { color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.calculator-result strong { display: block; margin-top: 5px; font: 500 48px/1 var(--font-display); }
.calculator-result strong small { font-size: 16px; color: var(--red); }
.calculator-result p { margin: 7px 0 0; color: var(--muted); font-size: 11px; }
.calculator-note { margin: 22px 0 0; color: var(--steel); font-size: 11px; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; list-style: none; margin: 0; padding: 0; }
.step-card { min-height: 340px; padding: 28px; display: flex; flex-direction: column; }
.step-number { color: var(--red); font: 700 12px/1 var(--font-display); letter-spacing: .14em; }
.step-icon { width: 52px; height: 52px; margin: 45px 0 34px; border: 1px solid var(--line-red); transform: rotate(45deg); }
.step-icon::before { content: ""; display: block; width: 16px; height: 16px; margin: 17px; border: 1px solid var(--red); }
.step-card h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: .08em; text-transform: uppercase; }
.step-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.step-card small { margin-top: auto; color: var(--red); font: 600 9px/1 var(--font-display); letter-spacing: .13em; text-transform: uppercase; }
.section--app { overflow: hidden; border-block: 1px solid var(--line); background: radial-gradient(circle at 78% 50%, rgba(242,51,53,.12), transparent 27rem), #090c0f; }
.app-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.app-copy h2 { margin: 20px 0 28px; }
.app-copy > p:not(.eyebrow) { max-width: 600px; color: var(--muted); font-size: 17px; }
.feature-list { margin: 32px 0 38px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: flex; gap: 22px; padding: 15px 0; border-bottom: 1px solid var(--line); color: #d2d6da; font-size: 13px; }
.feature-list span { color: var(--red); font: 700 10px/1.6 var(--font-display); }
.app-preview { position: relative; display: grid; place-items: center; min-height: 670px; }
.app-preview::before, .app-preview::after { content: ""; position: absolute; border: 1px solid rgba(242,51,53,.18); border-radius: 50%; }
.app-preview::before { width: 580px; height: 580px; }
.app-preview::after { width: 420px; height: 420px; border-color: rgba(255,255,255,.08); }
.phone-shell { position: relative; z-index: 2; width: 318px; height: 642px; padding: 8px; border: 1px solid rgba(255,255,255,.32); border-radius: 38px; background: #060708; box-shadow: 0 35px 80px rgba(0,0,0,.75), 0 0 50px rgba(242,51,53,.13); }
.phone-speaker { position: absolute; z-index: 3; top: 17px; left: 50%; width: 70px; height: 5px; margin-left: -35px; border-radius: 4px; background: #20242a; }
.phone-screen { height: 100%; padding: 36px 20px 20px; overflow: hidden; border-radius: 31px; background: radial-gradient(circle at 50% 26%, rgba(242,51,53,.11), transparent 36%), linear-gradient(#11161b, #080a0d); }
.app-topbar { display: flex; align-items: center; justify-content: space-between; color: var(--steel); font: 600 7px/1 var(--font-display); letter-spacing: .12em; }
.app-mini-logo { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid var(--red); color: var(--red); font-size: 12px; transform: rotate(45deg); }
.app-mini-logo::first-letter { transform: rotate(-45deg); }
.app-ready { width: max-content; margin: 34px auto 0; padding: 7px 10px; border: 1px solid rgba(57,217,138,.24); color: #8ddab3; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.app-ready span { display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: #39d98a; box-shadow: 0 0 8px #39d98a; }
.app-radar { position: relative; width: 190px; height: 190px; margin: 25px auto 18px; overflow: hidden; border: 1px solid rgba(242,51,53,.42); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 31px, rgba(255,255,255,.06) 32px), linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.09) 50%, transparent 50.5%), linear-gradient(transparent 49.5%, rgba(255,255,255,.09) 50%, transparent 50.5%); }
.radar-ring { position: absolute; inset: 30%; border: 1px solid rgba(242,51,53,.25); border-radius: 50%; }
.radar-ring--2 { inset: 45%; }
.radar-sweep { position: absolute; left: 50%; top: 50%; width: 45%; height: 1px; transform-origin: left; background: linear-gradient(90deg, var(--red), transparent); animation: radar 5s linear infinite; }
.app-radar i { position: absolute; left: var(--x); top: var(--y); width: 5px; height: 5px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red); }
@keyframes radar { to { transform: rotate(360deg); } }
.app-match > span { color: var(--red); font: 600 7px/1 var(--font-display); letter-spacing: .12em; }
.app-match h3 { margin: 7px 0 1px; font-size: 20px; letter-spacing: .05em; text-transform: uppercase; }
.app-match p { color: var(--muted); font-size: 9px; }
.app-score { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; padding: 12px 0; border-block: 1px solid var(--line); text-align: center; }
.app-score div { display: grid; }
.app-score span { color: var(--muted); font-size: 7px; }
.app-score strong { font: 500 26px/1 var(--font-display); }
.app-score div:last-child strong { color: var(--red); }
.app-score time { color: var(--muted); font: 600 10px/1 var(--font-display); }
.phone-screen > button { width: 100%; height: 42px; margin-top: 16px; border: 1px solid var(--red); color: var(--white); background: var(--red); font: 700 9px/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.app-orbit { position: absolute; z-index: 3; padding: 7px 9px; border: 1px solid var(--line-red); color: var(--red); background: var(--black); font: 600 8px/1 var(--font-display); letter-spacing: .1em; }
.app-orbit--one { left: 5%; top: 25%; }
.app-orbit--two { right: 2%; bottom: 20%; }
.scenario-preview-grid, .scenario-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.scenario-card { position: relative; min-height: 420px; padding: 26px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(155deg, rgba(21,26,32,.85), rgba(8,11,13,.9)); clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%); }
.scenario-card::before { content: ""; position: absolute; width: 90px; height: 1px; right: -3px; top: 0; background: var(--red); }
.scenario-top, .scenario-meta { display: flex; justify-content: space-between; align-items: center; }
.scenario-top span { color: var(--red); font: 700 12px/1 var(--font-display); }
.scenario-top em { color: var(--muted); font: normal 600 8px/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase; }
.scenario-map { position: relative; height: 150px; margin: 24px 0; opacity: .7; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 25px 25px; mask-image: radial-gradient(circle, black, transparent 72%); }
.scenario-map i { position: absolute; width: 9px; height: 9px; border: 1px solid var(--red); transform: rotate(45deg); }
.scenario-map i:nth-child(1) { left: 15%; top: 25%; }.scenario-map i:nth-child(2) { left: 65%; top: 12%; }.scenario-map i:nth-child(3) { left: 78%; top: 68%; }.scenario-map i:nth-child(4) { left: 30%; top: 76%; }
.scenario-map b { position: absolute; inset: 35% 42%; border: 1px solid var(--white); border-radius: 50%; }
.scenario-card h3, .scenario-card h2 { margin: 0 0 12px; font-size: 27px; letter-spacing: .06em; text-transform: uppercase; }
.scenario-card > p { min-height: 66px; color: var(--muted); font-size: 13px; }
.scenario-meta { padding-top: 17px; border-top: 1px solid var(--line); color: #c6cad0; font: 600 9px/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.philosophy { overflow: hidden; border-block: 1px solid var(--line-red); background: linear-gradient(110deg, rgba(8,11,13,.35), #090b0e 64%), radial-gradient(circle at 20%, rgba(242,51,53,.12), transparent 36rem); }
.philosophy-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.philosophy-image { position: relative; min-height: 510px; }
.philosophy-image::before { content: ""; position: absolute; inset: 10% -8% -6% 10%; border: 1px solid var(--line-red); }
.philosophy-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px)); }
.philosophy-image span { position: absolute; z-index: 2; left: 22px; bottom: 20px; padding: 7px 10px; color: var(--red); background: rgba(8,11,13,.8); font: 600 8px/1 var(--font-display); letter-spacing: .14em; }
.philosophy blockquote { margin: 0; }
.philosophy blockquote h2 { margin: 20px 0 27px; }
.philosophy blockquote > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.philosophy cite { display: inline-block; margin-top: 32px; color: var(--red); font: normal 600 13px/1 var(--font-display); letter-spacing: .2em; text-transform: uppercase; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 55px 1fr 34px; align-items: center; padding: 24px 0; list-style: none; cursor: pointer; font: 500 18px/1.35 var(--font-display); letter-spacing: .035em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-size: 10px; letter-spacing: .12em; }
.faq-list summary i { position: relative; width: 26px; height: 26px; border: 1px solid var(--line); }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 7px; right: 7px; top: 12px; height: 1px; background: var(--white); }
.faq-list summary i::after { transform: rotate(90deg); transition: transform .2s; }
.faq-list details[open] summary i { border-color: var(--red); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details > p { max-width: 800px; margin: -6px 40px 26px 55px; color: var(--muted); }
.final-cta { margin-block: 40px 120px; padding: 54px 58px; display: flex; align-items: center; justify-content: space-between; gap: 42px; border: 1px solid var(--line-red); background: radial-gradient(circle at 75%, rgba(242,51,53,.15), transparent 30rem), #0d1115; clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px)); }
.final-cta h2 { max-width: 850px; margin: 14px 0 12px; font-size: clamp(30px, 4vw, 54px); }
.final-cta p { margin: 0; color: var(--muted); }

/* Inner page headers */
.subhero { position: relative; min-height: 650px; padding-top: 175px; padding-bottom: 80px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 80px; border-bottom: 1px solid var(--line); }
.subhero::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 42%; height: 1px; background: var(--red); }
.subhero-copy { position: relative; z-index: 2; }
.subhero h1 { margin: 22px 0 30px; font-size: clamp(48px, 6vw, 84px); line-height: .98; letter-spacing: .04em; text-transform: uppercase; }
.subhero-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 18px; }
.subhero-copy > .button { margin-top: 25px; }
.subhero-product { position: relative; min-height: 420px; display: grid; place-items: center; background: radial-gradient(circle, rgba(242,51,53,.14), transparent 55%); }
.subhero-product::before { content: ""; position: absolute; inset: 7%; opacity: .25; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle, black, transparent 75%); }
.subhero-product img { position: relative; z-index: 2; width: 94%; filter: drop-shadow(0 28px 34px rgba(0,0,0,.65)); }
.measure-line { position: absolute; z-index: 3; left: 13%; right: 8%; bottom: 6%; display: flex; align-items: center; justify-content: center; color: var(--steel); font: 600 8px/1 var(--font-display); letter-spacing: .12em; }
.measure-line::before, .measure-line::after { content: ""; flex: 1; height: 1px; margin: 0 10px; background: var(--line); }
.subhero--center { grid-template-columns: 1fr; text-align: center; min-height: 590px; }
.subhero--center .subhero-copy { max-width: 950px; margin: auto; }
.subhero--center .subhero-copy .eyebrow { justify-content: center; }
.subhero--center .subhero-copy > p:not(.eyebrow) { margin-inline: auto; }
.subhero-coordinates { position: absolute; bottom: 30px; left: 0; right: 0; display: flex; align-items: center; gap: 18px; justify-content: center; color: var(--steel); font: 600 8px/1 var(--font-display); letter-spacing: .15em; }
.subhero-coordinates i { width: 130px; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }

/* Equipment page */
.equipment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.equipment-card { overflow: hidden; border: 1px solid var(--line); background: var(--panel); clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%); }
.equipment-card--wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; }
.equipment-image { min-height: 330px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle, rgba(242,51,53,.11), transparent 58%), #080b0d; }
.equipment-card--wide .equipment-image { min-height: 410px; }
.equipment-image img { max-height: 360px; object-fit: contain; transition: transform .6s var(--ease); }
.equipment-card:hover .equipment-image img { transform: scale(1.035); }
.equipment-card > div:last-child { padding: 34px; }
.equipment-card > div:last-child > span, .info-panel > span, .data-copy article > span { color: var(--red); font: 600 9px/1 var(--font-display); letter-spacing: .17em; }
.equipment-card h2 { margin: 18px 0 15px; font-size: 30px; }
.equipment-card p { color: var(--muted); }
.section--dark-grid { border-block: 1px solid var(--line); background-color: #090c0f; 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: 55px 55px; }
.included-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.included-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.included-list li { display: grid; grid-template-columns: 50px 1fr 24px; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); color: #d1d5da; }
.included-list li > span { color: var(--red); font: 600 10px/1 var(--font-display); }
.included-list li > i { color: var(--red); font-style: normal; }
.info-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.info-panel { padding: 45px; }
.info-panel h2 { margin: 24px 0 18px; font-size: 34px; }
.info-panel p { color: var(--muted); }

/* How it works */
.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 139px; top: 15px; bottom: 15px; width: 1px; background: linear-gradient(var(--red), var(--line) 20% 80%, var(--red)); }
.timeline-step { display: grid; grid-template-columns: 100px 80px 1fr; min-height: 235px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.timeline-step:first-child { border-top: 1px solid var(--line); }
.timeline-number { color: var(--red); font: 500 36px/1 var(--font-display); }
.timeline-node { position: relative; z-index: 2; width: 17px; height: 17px; margin-left: 31px; border: 1px solid var(--red); transform: rotate(45deg); background: var(--black); box-shadow: 0 0 14px rgba(242,51,53,.3); }
.timeline-step small { color: var(--red); font: 600 9px/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase; }
.timeline-step h2 { margin: 18px 0 14px; font-size: 34px; }
.timeline-step p { max-width: 750px; color: var(--muted); }
.section--location { border-block: 1px solid var(--line); background: #090c0f; }
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.location-image { position: relative; min-height: 520px; }
.location-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px)); }
.location-image > span { position: absolute; left: 20px; top: 20px; padding: 7px 10px; color: var(--red); background: rgba(8,11,13,.85); font: 600 8px/1 var(--font-display); letter-spacing: .15em; }
.location-image > i { position: absolute; right: 32px; top: 32px; width: 70px; height: 70px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.location-copy h2 { margin: 20px 0 25px; }
.location-copy > p:not(.eyebrow) { color: var(--muted); }
.location-copy h3 { margin-top: 34px; font-size: 18px; letter-spacing: .12em; text-transform: uppercase; }
.check-list { margin: 20px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 31px; border-top: 1px solid var(--line); color: #c9cdd2; font-size: 13px; }
.check-list li::before { content: ""; position: absolute; left: 3px; top: 19px; width: 7px; height: 7px; border: 1px solid var(--red); transform: rotate(45deg); }
.support-panel { display: grid; grid-template-columns: 220px 1fr auto; gap: 60px; align-items: center; border-bottom: 1px solid var(--line); }
.support-signal { position: relative; width: 170px; height: 170px; display: grid; place-items: center; }
.support-signal span { position: absolute; border: 1px solid rgba(242,51,53,.2); border-radius: 50%; }
.support-signal span:nth-child(1) { inset: 0; }.support-signal span:nth-child(2) { inset: 24px; }.support-signal span:nth-child(3) { inset: 48px; }
.support-signal i { width: 16px; height: 16px; transform: rotate(45deg); background: var(--red); box-shadow: 0 0 18px var(--red); }
.support-panel h2 { margin: 18px 0; font-size: 38px; }
.support-panel p { color: var(--muted); }

/* App page */
.subhero--app { min-height: 800px; }
.subhero--app .app-preview { min-height: 700px; }
.platform-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; }
.platform-row span { padding: 9px 13px; border: 1px solid var(--line); color: var(--muted); font: 600 8px/1 var(--font-display); letter-spacing: .13em; text-transform: uppercase; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.feature-card { min-height: 340px; padding: 28px; }
.feature-card > span { color: var(--red); font: 700 12px/1 var(--font-display); }
.feature-glyph { display: flex; align-items: end; gap: 6px; height: 65px; margin: 38px 0 26px; }
.feature-glyph i { display: block; width: 8px; border: 1px solid var(--red); }
.feature-glyph i:nth-child(1) { height: 28px; }.feature-glyph i:nth-child(2) { height: 52px; }.feature-glyph i:nth-child(3) { height: 39px; }
.feature-card h2 { margin: 0 0 14px; font-size: 25px; }
.feature-card p { color: var(--muted); font-size: 13px; }
.section--app-data { border-block: 1px solid var(--line); background: radial-gradient(circle at 20%, rgba(242,51,53,.09), transparent 30rem), #080b0d; }
.data-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.data-visual { position: relative; min-height: 480px; border: 1px solid var(--line); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 34px 34px; }
.data-rings { position: absolute; left: 50%; top: 42%; width: 270px; height: 270px; transform: translate(-50%, -50%); display: grid; place-items: center; }
.data-rings i { position: absolute; border: 1px solid rgba(242,51,53,.3); border-radius: 50%; }
.data-rings i:nth-child(1) { inset: 0; }.data-rings i:nth-child(2) { inset: 42px; border-style: dashed; }.data-rings i:nth-child(3) { inset: 88px; background: rgba(242,51,53,.08); }
.data-rings span { z-index: 2; color: var(--red); font: 600 10px/1.4 var(--font-display); text-align: center; letter-spacing: .12em; }
.data-bars { position: absolute; left: 30px; right: 30px; bottom: 28px; height: 70px; display: flex; align-items: end; gap: 10px; }
.data-bars span { flex: 1; height: var(--h); border-top: 1px solid var(--red); background: linear-gradient(rgba(242,51,53,.5), transparent); }
.data-copy article { padding: 34px 0; border-bottom: 1px solid var(--line); }
.data-copy article:first-child { border-top: 1px solid var(--line); }
.data-copy h2 { margin: 18px 0; font-size: 34px; }
.data-copy p { color: var(--muted); }

/* Scenarios and FAQ */
.scenario-legend { position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 18px; color: var(--steel); font: 600 8px/1 var(--font-display); letter-spacing: .12em; }
.scenario-legend i { width: 160px; height: 1px; background: linear-gradient(90deg, #dfe3e8, var(--red)); }
.scenario-card--large { min-height: 485px; padding: 32px; }
.scenario-card--large .scenario-map { height: 180px; }
.recommend-panel { display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 60px; margin-bottom: 120px; padding: 45px; border: 1px solid var(--line-red); background: #0c1014; }
.recommend-map { position: relative; height: 150px; border: 1px solid var(--line); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 25px 25px; }
.recommend-map span, .recommend-map em { position: absolute; display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--white); font: normal 700 10px/1 var(--font-display); }
.recommend-map span { left: 28px; top: 28px; }.recommend-map em { right: 25px; bottom: 25px; border-color: var(--red); color: var(--red); }
.recommend-map i { position: absolute; left: 53px; top: 53px; right: 52px; height: 1px; transform: rotate(22deg); transform-origin: left; background: var(--red); }
.recommend-map b { position: absolute; left: 48%; top: 40%; width: 15px; height: 15px; border: 1px solid var(--red); border-radius: 50%; }
.recommend-panel h2 { margin: 16px 0 10px; font-size: 34px; }
.recommend-panel p { color: var(--muted); }
.faq-page-layout { display: grid; grid-template-columns: 240px 1fr; gap: 80px; align-items: start; }
.faq-aside { position: sticky; top: 110px; padding: 25px; border-top: 1px solid var(--red); border-bottom: 1px solid var(--line); }
.faq-aside span { color: var(--red); font: 600 9px/1 var(--font-display); letter-spacing: .15em; }
.faq-aside strong { display: block; margin: 18px 0 4px; font: 500 72px/1 var(--font-display); }
.faq-aside p { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.faq-list--full summary { padding: 29px 0; font-size: 21px; }
.faq-list--full details > p { max-width: 850px; font-size: 16px; }

/* Order and legal */
.subhero--order { min-height: 570px; grid-template-columns: 1fr auto; }
.order-progress { display: flex; align-items: center; gap: 14px; }
.order-progress span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); color: var(--steel); font: 600 10px/1 var(--font-display); }
.order-progress span.active { color: var(--red); border-color: var(--red); }
.order-progress i { width: 55px; height: 1px; background: var(--line); }
.order-layout { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr); gap: 28px; align-items: start; }
.order-form { padding: clamp(28px, 4vw, 54px); }
.order-form fieldset { margin: 0 0 45px; padding: 0; border: 0; }
.order-form legend { width: 100%; display: flex; align-items: center; gap: 20px; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); font: 500 24px/1 var(--font-display); letter-spacing: .06em; text-transform: uppercase; }
.order-form legend span { color: var(--red); font-size: 11px; }
.order-ranges { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; margin-bottom: 32px; }
.form-grid { display: grid; gap: 18px; }
.form-grid--two { grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field > span { color: #c7cbd0; font: 600 10px/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; color: var(--white); border: 1px solid var(--line); border-radius: 0; background: #0a0d10; padding: 14px 15px; transition: border-color .2s, background .2s; }
.field input, .field select { height: 52px; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:hover, .field select:hover, .field textarea:hover, .field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(242,51,53,.65); background: #0d1115; }
.field input::placeholder, .field textarea::placeholder { color: #626972; }
.checkbox-field { position: relative; display: grid; grid-template-columns: 22px 1fr; gap: 13px; align-items: start; margin: 0 0 24px; cursor: pointer; }
.checkbox-field input { position: absolute; opacity: 0; }
.checkbox-field > span { width: 20px; height: 20px; border: 1px solid var(--line); background: #080b0d; }
.checkbox-field input:checked + span { border-color: var(--red); background: var(--red); box-shadow: inset 0 0 0 5px var(--black); }
.checkbox-field em { color: var(--muted); font-style: normal; font-size: 12px; line-height: 1.55; }
.checkbox-field em a { color: var(--white); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-alert, .form-message.is-error { margin-bottom: 25px; padding: 13px 15px; color: #ffb4b5; border: 1px solid var(--line-red); background: rgba(142,31,37,.18); font-size: 13px; }
.form-message { margin-top: 16px; }
.order-summary { position: sticky; top: 95px; padding: 34px; }
.order-summary h2 { margin: 16px 0 30px; font-size: 30px; }
.summary-main { padding: 24px 0; border-block: 1px solid var(--line); }
.summary-main > span { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.summary-main strong { display: block; margin-top: 8px; font: 500 52px/1 var(--font-display); }
.summary-main strong small { color: var(--red); font-size: 15px; }
.summary-stats { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.summary-stats div { padding: 17px 0; }
.summary-stats div:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }
.summary-stats div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
.summary-stats span { display: block; color: var(--steel); font-size: 9px; text-transform: uppercase; }
.summary-stats strong { font: 500 20px/1.4 var(--font-display); }
.summary-stats strong small { color: var(--muted); font-size: 10px; }
.summary-breakdown { padding: 18px 0; border-bottom: 1px solid var(--line); }
.summary-breakdown div { display: flex; justify-content: space-between; gap: 20px; padding: 5px 0; color: var(--muted); font-size: 10px; }
.summary-breakdown strong { color: #cfd3d7; font-weight: 500; }
.order-summary > p { margin: 18px 0 0; color: var(--steel); font-size: 10px; }
.order-success { position: absolute; z-index: 5; inset: 0; min-height: 560px; display: none; place-items: center; align-content: center; padding: 55px; text-align: center; border: 1px solid var(--line-red); background: #0b0f13; }
.order-success.is-visible { display: grid; }
.success-icon { display: grid; place-items: center; width: 92px; height: 92px; margin-bottom: 30px; border: 2px solid var(--red); color: var(--red); font: 800 48px/1 var(--font-display); transform: rotate(45deg); }
.order-success h2 { margin: 20px 0 14px; }
.order-success > p:not(.eyebrow) { color: var(--muted); }
.order-success > p strong { color: var(--white); }
.order-success .button { margin-top: 26px; }
.subhero--legal { min-height: 530px; grid-template-columns: 1fr; }
.subhero--legal .subhero-copy { max-width: 900px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 90px; align-items: start; }
.legal-layout > aside { position: sticky; top: 110px; display: grid; gap: 14px; padding-top: 20px; border-top: 1px solid var(--red); }
.legal-layout > aside span { color: var(--red); font: 600 8px/1 var(--font-display); letter-spacing: .14em; }
.legal-layout > aside strong { font: 500 17px/1 var(--font-display); }
.legal-layout > aside a { color: var(--muted); font-size: 12px; }
.legal-sections article { position: relative; padding: 35px 0 35px 65px; border-top: 1px solid var(--line); }
.legal-sections article:last-child { border-bottom: 1px solid var(--line); }
.legal-sections article > span { position: absolute; left: 0; top: 43px; color: var(--red); font: 600 10px/1 var(--font-display); }
.legal-sections h2 { margin: 0 0 16px; font-size: 29px; }
.legal-sections p { max-width: 850px; color: var(--muted); }
.not-found { min-height: 100svh; padding-top: 120px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.not-found-code { color: transparent; -webkit-text-stroke: 1px rgba(242,51,53,.55); font: 500 clamp(170px, 25vw, 380px)/.7 var(--font-display); opacity: .6; }
.not-found-copy h1 { margin: 20px 0; font-size: clamp(45px, 6vw, 80px); line-height: 1; text-transform: uppercase; }
.not-found-copy > p:not(.eyebrow) { color: var(--muted); }
.not-found-copy .button { margin-top: 25px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line-red); background: #060809; }
.footer-main { display: grid; grid-template-columns: 1.4fr .65fr .65fr 1fr; gap: 60px; padding-block: 70px; }
.footer-brand > p { max-width: 370px; margin: 28px 0; color: var(--muted); font-size: 13px; }
.system-status { display: flex; align-items: center; gap: 9px; color: #8ddab3; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.system-status span { width: 6px; height: 6px; border-radius: 50%; background: #39d98a; box-shadow: 0 0 9px #39d98a; }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column h2 { margin: 0 0 12px; color: var(--white); font-size: 10px; letter-spacing: .18em; }
.footer-column a { color: var(--muted); font-size: 12px; transition: color .2s; }
.footer-column a:hover { color: var(--red); }
.footer-contact { display: grid; align-content: start; justify-items: start; gap: 14px; }
.footer-contact > span { color: var(--muted); font-size: 11px; }
.footer-contact > a:not(.button) { font: 500 17px/1.3 var(--font-display); }
.footer-contact .button { margin-top: 13px; }
.footer-bottom { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px; padding-block: 22px; border-top: 1px solid var(--line); }
.footer-mark { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--red); color: var(--red); font: 800 18px/1 var(--font-display); transform: rotate(45deg); }
.footer-bottom p { margin: 0; color: var(--steel); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.footer-manifesto { color: var(--white) !important; }

/* Responsive */
@media (max-width: 1180px) {
    :root { --shell: min(100% - 40px, 1100px); }
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .hero { grid-template-columns: 1fr 1fr; gap: 35px; }
    .hero-card--gear { left: -10px; }
    .step-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .included-layout { gap: 50px; }
    .support-panel, .recommend-panel { grid-template-columns: 170px 1fr; }
    .support-panel > .button, .recommend-panel > .button { grid-column: 2; justify-self: start; }
    .footer-main { grid-template-columns: 1.2fr .6fr .6fr; }
    .footer-contact { grid-column: 1 / -1; grid-template-columns: auto auto auto; align-items: center; }
}

@media (max-width: 900px) {
    :root { --shell: min(100% - 32px, 780px); }
    .site-header, .site-header.is-scrolled { height: 70px; }
    .header-cta { display: none; }
    .hero { min-height: auto; padding-top: 130px; grid-template-columns: 1fr; }
    .hero-copy { max-width: 720px; }
    .hero-title { font-size: clamp(56px, 13vw, 100px); }
    .hero-visual { min-height: 610px; }
    .hero-frame { width: 92%; }
    .section-heading--split, .kit-layout, .app-layout, .philosophy-layout, .location-layout, .data-layout { grid-template-columns: 1fr; gap: 45px; }
    .section-heading--split { align-items: start; }
    .section-heading--split > .text-link { justify-self: start; }
    .kit-layout { gap: 30px; }
    .rate-grid { grid-template-columns: 1fr 1fr; }
    .app-copy { order: 1; }
    .app-layout > div:last-child { order: 0; }
    .philosophy-layout { gap: 80px; }
    .philosophy-image { min-height: 500px; }
    .subhero { grid-template-columns: 1fr; min-height: auto; padding-top: 140px; gap: 20px; }
    .subhero-product { min-height: 380px; }
    .equipment-card--wide { grid-template-columns: 1fr; }
    .included-layout { grid-template-columns: 1fr; gap: 10px; }
    .scenario-preview-grid, .scenario-full-grid { grid-template-columns: 1fr 1fr; }
    .subhero--app { padding-top: 140px; }
    .subhero--app .app-preview { min-height: 690px; }
    .order-layout { grid-template-columns: 1fr; }
    .order-summary { position: relative; top: 0; }
    .order-success { min-height: 100%; }
    .faq-page-layout, .legal-layout { grid-template-columns: 1fr; gap: 35px; }
    .faq-aside, .legal-layout > aside { position: relative; top: 0; }
    .faq-aside { display: flex; align-items: baseline; gap: 18px; }
    .faq-aside strong { font-size: 42px; }
    .not-found { grid-template-columns: 1fr; gap: 20px; align-content: center; }
    .not-found-code { font-size: 50vw; }
}

@media (max-width: 640px) {
    :root { --shell: calc(100% - 28px); }
    body { font-size: 15px; }
    .brand-word { font-size: 19px; }
    .brand-beam { width: 85px; }
    .language-link { padding-left: 12px; border: 0; }
    .header-actions { gap: 10px; }
    .hero { padding-top: 115px; padding-bottom: 45px; }
    .hero-title { margin-top: 18px; font-size: clamp(49px, 16.4vw, 74px); line-height: .88; }
    .hero-lead { font-size: 15px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
    .hero-actions .button { width: 100%; }
    .hero-stats { margin-top: 40px; }
    .hero-stats > div { min-width: 0; flex: 1; padding: 0 12px; }
    .hero-stats dt { font-size: 20px; }
    .hero-stats dd { font-size: 8px; }
    .hero-visual { min-height: 430px; margin-top: 15px; }
    .hero-frame { width: 100%; aspect-ratio: 1.05; }
    .hero-card--gear { display: none; }
    .hero-card--status { right: 12px; bottom: 0; }
    .signal-track span { padding: 15px 25px; }
    .section { padding-block: 78px; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2 { font-size: 36px; }
    .section-heading > p:last-child { font-size: 15px; }
    .product-stage { min-height: 380px; }
    .product-tagger { width: 95%; left: -3%; top: 24%; }
    .product-case { width: 52%; }
    .process-list li { grid-template-columns: 40px 1fr; gap: 12px; }
    .rate-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .rate-card { min-height: 190px; padding: 20px 16px; }
    .rate-card h3 { font-size: 10px; }
    .rate-card p strong { font-size: 43px; }
    .calculator { padding: 25px 20px; }
    .calculator-head { display: block; }
    .calculator-head .micro-label { margin-bottom: 13px; }
    .calculator-controls { grid-template-columns: 1fr; gap: 25px; }
    .calculator-result { align-items: stretch; flex-direction: column; }
    .calculator-result strong { font-size: 42px; }
    .step-grid, .feature-grid, .equipment-grid, .scenario-preview-grid, .scenario-full-grid, .info-pair { grid-template-columns: 1fr; }
    .equipment-card--wide { grid-column: auto; }
    .step-card { min-height: 300px; }
    .app-preview { min-height: 590px; transform: scale(.88); margin-inline: -6%; }
    .app-preview::before { width: 520px; height: 520px; }
    .phone-shell { width: 300px; height: 610px; }
    .philosophy-image, .location-image { min-height: 390px; }
    .faq-list summary { grid-template-columns: 37px 1fr 28px; padding: 20px 0; font-size: 16px; }
    .faq-list details > p { margin: -4px 0 22px 37px; font-size: 13px; }
    .final-cta { align-items: flex-start; flex-direction: column; padding: 36px 28px; margin-bottom: 80px; }
    .final-cta .button { width: 100%; }
    .subhero { padding-top: 120px; padding-bottom: 60px; }
    .subhero h1 { font-size: 45px; }
    .subhero-copy > p:not(.eyebrow) { font-size: 15px; }
    .subhero-product { min-height: 290px; }
    .equipment-card > div:last-child { padding: 27px; }
    .equipment-image, .equipment-card--wide .equipment-image { min-height: 290px; }
    .included-list li { grid-template-columns: 35px 1fr 20px; font-size: 13px; }
    .info-panel { padding: 30px 24px; }
    .timeline::before { left: 59px; }
    .timeline-step { grid-template-columns: 42px 42px 1fr; gap: 0; min-height: 260px; }
    .timeline-number { font-size: 19px; }
    .timeline-node { width: 13px; height: 13px; margin-left: 11px; }
    .timeline-step h2 { font-size: 28px; }
    .support-panel, .recommend-panel { grid-template-columns: 1fr; gap: 30px; }
    .support-panel > .button, .recommend-panel > .button { grid-column: auto; }
    .support-signal { width: 120px; height: 120px; }
    .support-signal span:nth-child(2) { inset: 18px; }.support-signal span:nth-child(3) { inset: 36px; }
    .subhero--app .app-preview { min-height: 600px; }
    .feature-card { min-height: 300px; }
    .data-visual { min-height: 390px; }
    .scenario-card, .scenario-card--large { min-height: 420px; padding: 24px; }
    .recommend-panel { padding: 28px 22px; }
    .recommend-map { width: 100%; }
    .subhero--order { grid-template-columns: 1fr; }
    .order-progress { margin-top: 25px; }
    .order-progress i { flex: 1; }
    .order-form { padding: 28px 20px; }
    .order-ranges, .form-grid--two { grid-template-columns: 1fr; }
    .order-ranges { gap: 24px; }
    .order-summary { padding: 28px 22px; }
    .order-success { padding: 30px 22px; }
    .legal-sections article { padding-left: 42px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
    .footer-brand, .footer-contact { grid-column: 1 / -1; }
    .footer-contact { display: grid; grid-template-columns: 1fr; }
    .footer-bottom { grid-template-columns: auto 1fr; }
    .footer-manifesto { grid-column: 1 / -1; }
}

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