@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700&family=Roboto+Mono:wght@400;500&display=swap');

:root {
  --ink: #060a14;
  --navy: #0a1020;
  --navy-2: #111b33;
  --navy-3: #172443;
  --paper: #f4f7ff;
  --haze: #aab7d2;
  --muted: #71809f;
  --volt: #2e7bff;
  --volt-bright: #70a8ff;
  --volt-dim: rgba(46, 123, 255, .12);
  --line: rgba(157, 181, 224, .14);
  --line-strong: rgba(111, 168, 255, .34);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --mono: "Roboto Mono", monospace;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 48px);
  --section: clamp(72px, 10vw, 124px);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--ink); }
body { min-height: 100vh; background: var(--ink); color: var(--paper); font: 16px/1.65 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--volt-bright); outline-offset: 4px; border-radius: 5px; }
.wrap { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--pad); }
.skip { position: fixed; top: -80px; left: 20px; z-index: 999; padding: 10px 16px; background: var(--paper); color: var(--ink); border-radius: 8px; }
.skip:focus { top: 14px; }

h1, h2, h3 { font-family: var(--display); line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.45rem); }
h3 { font-size: 1.2rem; }
p { text-wrap: pretty; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 21px; color: var(--volt-bright); font: 500 .72rem/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 26px; height: 1px; background: var(--volt); content: ""; }
.lede { max-width: 61ch; color: var(--haze); font-size: clamp(1.04rem, 1.5vw, 1.18rem); }
.kicker { color: var(--volt-bright); }
.section { padding-block: var(--section); }
.section-muted { border-block: 1px solid var(--line); background: linear-gradient(145deg, rgba(17,27,51,.7), rgba(6,10,20,.4)); }
.section-head { max-width: 720px; margin-bottom: clamp(38px, 6vw, 64px); }
.section-head h2 { margin-bottom: 18px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: .25s; }
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(6,10,20,.88); backdrop-filter: blur(18px); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font: 700 1.08rem/1 var(--display); letter-spacing: -.02em; }
.brand-mark { display: grid; width: 27px; gap: 3px; transform: skewX(-12deg); }
.brand-mark i { display: block; height: 5px; border-radius: 2px; background: var(--volt); }
.brand-mark i:nth-child(2) { opacity: .68; }
.brand-mark i:nth-child(3) { opacity: .35; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 32px); margin-left: auto; }
.nav-links a { position: relative; color: var(--haze); font-size: .91rem; transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--paper); }
.nav-links a[aria-current="page"]::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; background: var(--volt); content: ""; }
.menu-toggle { display: none; width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 10px; background: transparent; cursor: pointer; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 18px; height: 1.5px; margin: auto; background: var(--paper); content: ""; transition: .2s; }
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }
.mobile-menu { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 600; line-height: 1; transition: transform .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--volt); color: white; box-shadow: 0 12px 30px -16px rgba(46,123,255,.9); }
.btn-primary:hover { background: #4389ff; }
.btn-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--volt-bright); background: var(--volt-dim); }
.btn-small { min-height: 42px; padding-inline: 18px; font-size: .88rem; }
.arrow { font-size: 1.15em; transition: transform .2s; }
.btn:hover .arrow, .text-link:hover .arrow { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; padding-top: clamp(150px, 18vw, 218px); padding-bottom: clamp(80px, 11vw, 140px); }
.hero::before { position: absolute; inset: 0; opacity: .48; background-image: linear-gradient(var(--line) 1px,transparent 1px), linear-gradient(90deg,var(--line) 1px,transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 75% at 65% 25%,#000,transparent 76%); content: ""; pointer-events: none; }
.hero::after { position: absolute; top: -45%; right: -22%; width: 75vw; height: 75vw; border-radius: 50%; background: radial-gradient(circle,rgba(46,123,255,.22),transparent 64%); content: ""; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr); align-items: start; gap: clamp(48px, 6vw, 80px); width: min(100%, 1480px); }
.hero-grid > div:first-child { max-width: 920px; }
.hero h1 { margin-bottom: 28px; max-width: 780px; }
.hero .lede { margin-bottom: 35px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-proof div { min-width: 120px; }
.hero-proof b { display: block; font-family: var(--display); font-size: 1.08rem; }
.hero-proof span { color: var(--muted); font: .68rem/1.3 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.accuracy-note { margin-top: 14px; color: var(--muted); font: .68rem/1.5 var(--mono); }
.product-visual { position: relative; min-height: 430px; }
.product-shot { position: relative; width: 100%; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 24px; background: var(--navy-2); box-shadow: 0 34px 80px -44px #000; }
.product-shot img { display: block; width: 100%; height: auto !important; max-height: none; aspect-ratio: auto; object-fit: contain; object-position: center; }
.product-shot figcaption { position: absolute; right: 14px; bottom: 14px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(6,10,20,.8); color: var(--haze); font: .65rem/1 var(--mono); backdrop-filter: blur(10px); }
.plate-frame { position: absolute; inset: 7% 0 10% 7%; border: 1px solid var(--line-strong); border-radius: 28px; background: linear-gradient(145deg,var(--navy-3),rgba(10,16,32,.8)); box-shadow: 0 36px 90px -50px #000; transform: perspective(900px) rotateY(-9deg) rotateX(3deg); }
.plate-frame::before { position: absolute; inset: 22px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(120deg, transparent 55%, rgba(111,168,255,.08)); content: ""; }
.camera-line { position: absolute; top: 46%; left: 8%; width: 84%; height: 2px; background: linear-gradient(90deg,transparent,var(--volt),transparent); box-shadow: 0 0 22px var(--volt); animation: scan 4s ease-in-out infinite; }
.plate { position: absolute; top: 37%; left: 19%; display: flex; align-items: center; justify-content: center; width: 62%; height: 92px; border: 5px solid #cfd7e7; border-radius: 10px; background: #f7f9fc; color: #10182a; font: 700 clamp(1.4rem,3vw,2.3rem)/1 var(--mono); letter-spacing: .09em; box-shadow: 0 18px 35px rgba(0,0,0,.36); }
.plate::before { position: absolute; left: 0; width: 13%; height: 100%; background: #1554a7; content: ""; }
.plate::after { position: absolute; top: 11px; left: 3.8%; color: white; font: 500 .64rem/1 var(--body); content: "TR"; }
.visual-label { position: absolute; display: flex; align-items: center; gap: 9px; padding: 11px 15px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(6,10,20,.86); color: var(--haze); font: .7rem/1 var(--mono); backdrop-filter: blur(12px); }
.visual-label::before { width: 7px; height: 7px; border-radius: 50%; background: #39d98a; box-shadow: 0 0 0 4px rgba(57,217,138,.12); content: ""; }
.visual-label.one { top: 10%; right: -2%; }
.visual-label.two { right: 5%; bottom: 8%; }
@keyframes scan { 0%,100% { transform: translateY(-105px); opacity: .25; } 50% { transform: translateY(105px); opacity: 1; } }

.page-hero { padding-top: clamp(145px, 17vw, 200px); padding-bottom: clamp(62px, 8vw, 96px); border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 20%,rgba(46,123,255,.14),transparent 34%); }
.page-hero h1 { max-width: 900px; margin-bottom: 24px; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 26px; color: var(--muted); font: .7rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--volt-bright); }

.feature-grid, .product-grid, .solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.card { position: relative; min-height: 100%; padding: 30px; border: 1px solid var(--line); border-radius: var(--r-md); background: linear-gradient(150deg,var(--navy-2),rgba(10,16,32,.7)); transition: transform .25s,border-color .25s; }
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card-featured { border-color: rgba(112,168,255,.42); background: radial-gradient(circle at 90% 10%,rgba(46,123,255,.2),transparent 44%), linear-gradient(150deg,var(--navy-2),rgba(10,16,32,.7)); }
.card-index { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 25px; border: 1px solid rgba(46,123,255,.28); border-radius: 10px; background: var(--volt-dim); color: var(--volt-bright); font: .72rem/1 var(--mono); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--haze); font-size: .94rem; }
.card .text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; color: var(--volt-bright); font-weight: 600; }
.badge { display: inline-flex; padding: 6px 10px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--volt-bright); font: .65rem/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.badge-live { background: var(--volt); color: white; }
.product-card { display: flex; flex-direction: column; }
.product-card .badge { align-self: flex-start; margin-bottom: 34px; }
.product-card h3 { font-size: 1.45rem; }
.product-card .text-link { margin-top: auto; padding-top: 18px; }
.product-card.future { border-style: dashed; opacity: .8; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(44px, 8vw, 100px); }
.sticky-copy { position: sticky; top: 120px; }
.list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--line); }
.list-item { padding: 26px; background: var(--navy); }
.list-item small { display: block; margin-bottom: 10px; color: var(--volt-bright); font: .67rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.list-item h3 { margin-bottom: 8px; }
.list-item p { color: var(--haze); font-size: .92rem; }
.list-item-paid { background: radial-gradient(circle at 90% 20%,rgba(46,123,255,.15),transparent 46%),var(--navy); }
.list-item-paid small { color: #8eeab7; }

.alert-showcase { position: relative; overflow: hidden; border-block: 1px solid rgba(255,87,87,.14); background: radial-gradient(circle at 78% 45%,rgba(232,45,62,.1),transparent 38%),linear-gradient(145deg,rgba(17,27,51,.56),rgba(6,10,20,.88)); }
.alert-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(44px,6vw,82px); width: min(100%,1480px); }
.alert-copy h2 { margin-bottom: 22px; }
.alert-copy .lede { margin-bottom: 32px; }
.alert-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; padding: 8px 12px; border: 1px solid rgba(255,77,77,.28); border-radius: 999px; background: rgba(232,45,62,.08); color: #ff9696; font: .65rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.alert-kicker i { width: 7px; height: 7px; border-radius: 50%; background: #ff4545; box-shadow: 0 0 0 5px rgba(255,69,69,.12),0 0 18px #ff4545; animation: alertPulse 1.7s ease-in-out infinite; }
.feature-checks { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--line); list-style: none; }
.feature-checks li { display: grid; grid-template-columns: 34px 1fr; align-items: start; gap: 14px; padding: 18px; background: rgba(6,10,20,.84); }
.feature-checks li > span { padding-top: 3px; color: #ff7c7c; font: .65rem/1 var(--mono); }
.feature-checks b,.feature-checks small { display: block; }
.feature-checks b { margin-bottom: 4px; font-family: var(--display); }
.feature-checks small { color: var(--muted); font-size: .78rem; }
.alert-shot { aspect-ratio: 1672 / 941; box-shadow: 0 42px 100px -50px rgba(232,45,62,.72); }
.alert-shot img { height: 100% !important; object-fit: cover; }
.alert-shot::before { position: absolute; inset: -1px; z-index: 1; border: 1px solid rgba(255,99,99,.24); border-radius: inherit; content: ""; pointer-events: none; }
.alert-shot figcaption { border-color: rgba(255,99,99,.28); color: #ffc2c2; }
@keyframes alertPulse { 50% { opacity: .5; transform: scale(.84); } }

.module-section { border-top: 1px solid var(--line); background: linear-gradient(180deg,rgba(17,27,51,.28),transparent); }
.module-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(44px,8vw,100px); }
.module-layout .section-head { margin-bottom: 0; }
.module-cloud { display: flex; flex-wrap: wrap; gap: 10px; align-content: center; }
.module-cloud span { padding: 12px 15px; border: 1px solid var(--line); border-radius: 999px; background: rgba(17,27,51,.68); color: var(--haze); font: .71rem/1 var(--mono); transition: transform .2s,border-color .2s,color .2s; }
.module-cloud span:hover { transform: translateY(-2px); border-color: var(--line-strong); color: var(--paper); }
.module-cloud .is-primary { border-color: rgba(46,123,255,.36); background: var(--volt-dim); color: var(--volt-bright); }
.module-cloud .is-alert { border-color: rgba(255,99,99,.28); background: rgba(232,45,62,.07); color: #ffaaaa; }

.spec-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.spec-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.spec { padding: 31px 26px; border-right: 1px solid var(--line); }
.spec:last-child { border-right: 0; }
.spec b { display: block; margin-bottom: 5px; font-family: var(--display); }
.spec span { color: var(--muted); font: .68rem/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

.cta-panel { position: relative; overflow: hidden; padding: clamp(38px,6vw,70px); border: 1px solid var(--line-strong); border-radius: var(--r-lg); background: linear-gradient(130deg,var(--navy-3),var(--navy)); }
.cta-panel::after { position: absolute; top: -170px; right: -120px; width: 380px; height: 380px; border-radius: 50%; background: rgba(46,123,255,.16); filter: blur(16px); content: ""; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 760px; margin-bottom: 16px; }
.cta-panel p { max-width: 620px; margin-bottom: 28px; color: var(--haze); }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process article { counter-increment: step; padding-top: 25px; border-top: 1px solid var(--line); }
.process article::before { display: block; margin-bottom: 17px; color: var(--volt-bright); font: .7rem/1 var(--mono); content: "0" counter(step); }
.process h3 { margin-bottom: 10px; }
.process p { color: var(--haze); font-size: .92rem; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px,8vw,100px); }
.contact-note { margin-top: 26px; padding: 20px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--navy-2); color: var(--haze); font-size: .9rem; }
.form { display: grid; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field label { display: block; margin-bottom: 8px; color: var(--muted); font: .68rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; background: var(--navy-2); color: var(--paper); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--volt); }
.form-note { color: var(--muted); font-size: .8rem; }
.form-result { padding: 15px 17px; border: 1px solid rgba(57,217,138,.3); border-radius: var(--r-sm); background: rgba(57,217,138,.08); color: #8eeab7; }
.form-result.is-error { border-color: rgba(255,107,107,.34); background: rgba(255,107,107,.08); color: #ffb0b0; }
.form-result a { text-decoration: underline; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-channels { display: grid; gap: 1px; margin-top: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--line); }
.contact-channel { display: block; padding: 18px 20px; background: var(--navy-2); }
.contact-channel small { display: block; margin-bottom: 4px; color: var(--muted); font: .65rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.contact-channel strong { font-weight: 600; }

.footer { border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 40px; padding-bottom: 48px; }
.footer-brand p { max-width: 34ch; margin-top: 16px; color: var(--haze); font-size: .9rem; }
.footer h2 { margin-bottom: 15px; color: var(--muted); font: 500 .67rem/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; }
.footer li a { color: var(--haze); font-size: .9rem; }
.footer li a:hover { color: var(--volt-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font: .7rem/1.5 var(--mono); }
.placeholder { color: var(--muted); font-style: italic; }

.consent-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 998; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 16px var(--pad); border-top: 1px solid var(--line); background: rgba(6,10,20,.96); backdrop-filter: blur(18px); }
.consent-banner p { max-width: 62ch; color: var(--haze); font-size: .86rem; }
.consent-banner a { color: var(--volt-bright); text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-links, .nav > .btn { display: none; }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .mobile-menu.is-open { display: flex; position: fixed; top: 76px; right: 0; left: 0; flex-direction: column; padding: 10px var(--pad) 28px; border-bottom: 1px solid var(--line); background: rgba(6,10,20,.98); }
  .mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--haze); }
  .mobile-menu .btn { margin-top: 16px; color: white; }
  .hero-grid, .split, .contact-grid, .alert-layout, .module-layout { grid-template-columns: 1fr; }
  .product-visual { min-height: 370px; max-width: 620px; width: 100%; }
  .feature-grid, .product-grid, .solution-grid { grid-template-columns: repeat(2,1fr); }
  .process { grid-template-columns: repeat(2,1fr); }
  .sticky-copy { position: static; }
  .spec-grid { grid-template-columns: repeat(2,1fr); }
  .spec:nth-child(2) { border-right: 0; }
  .spec:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { display: none; }
}

@media (max-width: 620px) {
  .feature-grid, .product-grid, .solution-grid, .process, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 136px; }
  .hero h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .product-visual { min-height: 310px; }
  .plate-frame { inset-inline: 0; }
  .plate { left: 13%; width: 74%; }
  .visual-label.one { right: 0; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-grid > :last-child { display: block; }
  .footer-bottom { flex-direction: column; }
  .consent-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .consent-actions { justify-content: center; }
  .alert-layout { gap: 38px; }
  .alert-shot { border-radius: 16px; }
  .module-cloud { gap: 8px; }
  .module-cloud span { padding: 10px 12px; font-size: .64rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
