/* FCA PROXI Tool — homepage v2
   A product-first, workshop-grade visual system layered over the shared site. */

.home-v2{
  --home-bg:#07080d;
  --home-panel:#0d0f17;
  --home-panel-2:#141722;
  --home-line:rgba(147,197,253,.14);
  --home-line-strong:rgba(147,197,253,.26);
  --home-ink:#f7f7fb;
  --home-copy:#b1b5c5;
  --home-dim:#858b9e;
  --home-hot:#2563eb;
  --home-hot-2:#60a5fa;
  --home-cold:#93c5fd;
  --home-electric:#bfdbfe;
  --home-radius:14px;
  --home-display:clamp(3.35rem,7.4vw,7.8rem);
  background:var(--home-bg);
  color:var(--home-ink);
}

.home-v2::selection{
  color:#07080d;
  background:var(--home-cold);
}

.home-v2 body,
body.home-v2{
  background:var(--home-bg);
}

.home-v2::before{
  background:
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px),
    radial-gradient(1000px 620px at 72% -10%,rgba(37,99,235,.18),transparent 68%),
    radial-gradient(700px 520px at -8% 32%,rgba(147,197,253,.07),transparent 72%),
    var(--home-bg);
  background-size:72px 72px,72px 72px,auto,auto,auto;
}

.home-v2 #bg-particles,
.home-v2 #hero3d,
.home-v2 .cursor-dot,
.home-v2 .cursor-ring{
  display:none!important;
}

.home-v2 .page{ overflow:clip; }

.home-v2 .shell{
  width:min(100%,1540px);
  max-width:none;
  padding:16px clamp(18px,3vw,48px) 52px;
}

.home-v2 .scroll-meter{
  position:fixed;
  z-index:1000;
  top:0;
  left:0;
  width:100%;
  height:2px;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg,var(--home-hot),var(--home-hot-2));
  box-shadow:0 0 20px rgba(37,99,235,.62);
}

.home-v2 :where(a,button,summary):focus-visible{
  outline:2px solid var(--home-cold);
  outline-offset:3px;
}

/* Header */
.home-v2 .site-head{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:clamp(18px,3vw,46px);
  position:sticky;
  z-index:150;
  top:12px;
  min-height:68px;
  margin:0 0 26px;
  padding:9px 10px 9px 18px;
  border:1px solid var(--home-line);
  border-radius:12px;
  background:rgba(7,8,13,.84);
  box-shadow:0 18px 52px rgba(0,0,0,.32),inset 0 1px rgba(255,255,255,.05);
  backdrop-filter:blur(22px) saturate(150%);
}

.home-v2 .site-head::before{
  content:"";
  position:absolute;
  bottom:-1px;
  left:20px;
  width:74px;
  height:1px;
  background:var(--home-hot);
  box-shadow:0 0 20px rgba(37,99,235,.72);
}

.home-v2 .brand{
  display:inline-flex;
  align-items:center;
  flex:none;
}

.home-v2 .brand img{
  width:auto;
  height:29px;
  filter:none;
}

.home-v2 .site-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(2px,1vw,16px);
  font-family:var(--font-mono);
  font-size:10px;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--home-dim);
}

.home-v2 .site-nav a{
  position:relative;
  padding:10px 5px;
  transition:color .2s ease;
}

.home-v2 .site-nav a::after{
  content:"";
  position:absolute;
  right:5px;
  bottom:5px;
  left:5px;
  height:1px;
  background:var(--home-hot);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}

.home-v2 .site-nav a:hover,
.home-v2 .site-nav a:focus-visible{
  color:var(--home-ink);
}

.home-v2 .site-nav a:hover::after,
.home-v2 .site-nav a:focus-visible::after{
  transform:scaleX(1);
}

.home-v2 .head-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:7px;
}

.home-v2 .language-link{
  display:grid;
  width:38px;
  height:38px;
  place-items:center;
  border:1px solid var(--home-line);
  border-radius:7px;
  color:var(--home-copy);
  font:600 10px/1 var(--font-mono);
  letter-spacing:.08em;
  transition:border-color .2s,color .2s;
}

.home-v2 .language-link:hover{
  color:var(--home-ink);
  border-color:var(--home-line-strong);
}

.home-v2 .menu-button{
  display:none;
  width:42px;
  height:42px;
  padding:0;
  place-items:center;
  border:1px solid var(--home-line);
  border-radius:7px;
  background:transparent;
  color:var(--home-ink);
}

.home-v2 .menu-button span,
.home-v2 .menu-button::before,
.home-v2 .menu-button::after{
  content:"";
  display:block;
  width:18px;
  height:1px;
  background:currentColor;
  transition:transform .2s,opacity .2s;
}

.home-v2 .menu-button span{ margin:4px 0; }
.home-v2 .menu-button[aria-expanded="true"]::before{ transform:translateY(5px) rotate(45deg); }
.home-v2 .menu-button[aria-expanded="true"] span{ opacity:0; }
.home-v2 .menu-button[aria-expanded="true"]::after{ transform:translateY(-5px) rotate(-45deg); }

/* Shared homepage atoms */
.home-v2 .home-kicker{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--home-hot-2);
  font:600 10px/1.3 var(--font-mono);
  letter-spacing:.22em;
  text-transform:uppercase;
}

.home-v2 .home-kicker::before{
  content:"";
  width:32px;
  height:1px;
  background:var(--home-hot);
  box-shadow:0 0 14px rgba(37,99,235,.54);
}

.home-v2 .home-section{
  position:relative;
  margin-bottom:clamp(96px,11vw,172px);
}

/* Grid and flex children must be allowed to shrink below their content width. */
.home-v2 :where(
  .home-hero,
  .section-head,
  .split-statement,
  .eol-spotlight,
  .cap-grid,
  .tour-shell,
  .workflow-grid,
  .case-grid,
  .vehicle-cloud,
  .price-panel,
  .home-faq,
  .download-panel,
  .release-strip,
  .footer-top
) > *{
  min-width:0;
}

.home-v2 .anchor-alias{
  position:relative;
  top:-110px;
  display:block;
  width:1px;
  height:1px;
  pointer-events:none;
}

.home-v2 .section-head{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(280px,.55fr);
  align-items:end;
  gap:42px;
  margin-bottom:42px;
}

.home-v2 .section-head h2,
.home-v2 .split-statement h2,
.home-v2 .price-copy h2,
.home-v2 .download-copy h2{
  max-width:980px;
  margin:14px 0 0;
  font-size:clamp(2.4rem,5vw,5.8rem);
  font-weight:700;
  line-height:.98;
  letter-spacing:-.055em;
}

.home-v2 .section-head p{
  max-width:540px;
  color:var(--home-copy);
  font-size:15px;
  line-height:1.72;
}

.home-v2 .hot{ color:var(--home-hot-2); }
.home-v2 .cold{ color:var(--home-cold); }

.home-v2 .home-button{
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 19px;
  border:1px solid var(--home-line);
  border-radius:7px;
  background:rgba(20,23,34,.78);
  color:var(--home-ink);
  font:600 11px/1 var(--font-mono);
  letter-spacing:.065em;
  text-transform:uppercase;
  transition:transform .2s,border-color .2s,background .2s,box-shadow .2s;
}

.home-v2 .home-button::after{
  content:"↗";
  font-size:13px;
  transition:transform .2s;
}

.home-v2 .home-button:hover{
  transform:translateY(-2px);
  border-color:var(--home-line-strong);
  background:#1a1d2a;
}

.home-v2 .home-button:hover::after{ transform:translate(2px,-2px); }

.home-v2 .home-button.primary{
  border-color:rgba(147,197,253,.34);
  background:linear-gradient(135deg,#2563eb,#1d4ed8 62%,#1e3a8a);
  color:#fff;
  box-shadow:0 15px 40px rgba(29,78,216,.32),inset 0 1px rgba(255,255,255,.25);
}

.home-v2 .home-button.primary:hover{
  border-color:rgba(191,219,254,.5);
  background:linear-gradient(135deg,#3b82f6,#2563eb 62%,#1e40af);
  box-shadow:0 20px 52px rgba(29,78,216,.48),inset 0 1px rgba(255,255,255,.28);
}

.home-v2 :where(.home-button,.tour-tab,.menu-button):disabled,
.home-v2 :where(.home-button,.tour-tab,.menu-button)[aria-disabled="true"]{
  cursor:not-allowed;
  filter:saturate(.55);
  opacity:.46;
  transform:none;
}

.home-v2 .home-button.download::after{ content:"↓"; }
.home-v2 .home-button.no-arrow::after{ display:none; }
.home-v2 a[download]{ display:inline-flex!important; }

/* Hero */
.home-v2 .home-hero{
  display:grid;
  grid-template-columns:minmax(0,.91fr) minmax(520px,1.09fr);
  align-items:center;
  gap:clamp(38px,5vw,84px);
  min-height:calc(100vh - 114px);
  padding:42px 0 92px;
}

.home-v2 .hero-copy{
  position:relative;
  z-index:3;
}

.home-v2 .hero-copy h1{
  max-width:920px;
  margin:0 0 27px;
  font-size:var(--home-display);
  font-weight:720;
  line-height:.88;
  letter-spacing:-.07em;
}

.home-v2 .hero-title-lines{
  display:block;
  margin-top:23px;
}

html[lang="uk"] .home-v2 .hero-copy h1{
  font-size:clamp(3rem,5.4vw,5.6rem);
}

html[lang="uk"] .home-v2 .eol-copy h2{
  font-size:clamp(2.4rem,4.45vw,5.3rem);
}

html[lang="uk"] .home-v2 .faq-intro h2{
  font-size:clamp(2.35rem,3.8vw,4.5rem);
}

.home-v2 .hero-copy h1 .quiet{
  color:#7d8292;
}

.home-v2 .hero-lead{
  max-width:670px;
  color:#babdca;
  font-size:clamp(1rem,1.3vw,1.22rem);
  line-height:1.66;
}

.home-v2 .hero-lead strong{
  color:var(--home-ink);
  font-weight:600;
}

.home-v2 .hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:31px;
}

.home-v2 .hero-facts{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  max-width:690px;
  margin-top:42px;
  border-top:1px solid var(--home-line);
}

.home-v2 .hero-fact{
  min-width:0;
  padding:16px 18px 0 0;
}

.home-v2 .hero-fact + .hero-fact{
  padding-left:18px;
  border-left:1px solid var(--home-line);
}

.home-v2 .hero-fact b{
  display:block;
  margin-bottom:5px;
  color:var(--home-ink);
  font:600 11px/1.2 var(--font-mono);
  letter-spacing:.04em;
}

.home-v2 .hero-fact span{
  display:block;
  color:var(--home-dim);
  font-size:11px;
  line-height:1.45;
}

.home-v2 .product-visual{
  position:relative;
  width:112%;
  margin-right:-12%;
  padding:10px;
  border:1px solid var(--home-line-strong);
  border-radius:16px;
  background:linear-gradient(145deg,#181b26,#090b12);
  box-shadow:0 52px 120px rgba(0,0,0,.6),0 0 0 1px rgba(37,99,235,.1);
  transform:perspective(1600px) rotateY(-3deg) rotateX(1.5deg);
}

.home-v2 .product-visual::before,
.home-v2 .product-visual::after{
  content:"";
  position:absolute;
  z-index:5;
  width:24px;
  height:24px;
  pointer-events:none;
}

.home-v2 .product-visual::before{
  top:6px;
  left:6px;
  border-top:1px solid var(--home-hot);
  border-left:1px solid var(--home-hot);
}

.home-v2 .product-visual::after{
  right:6px;
  bottom:6px;
  border-right:1px solid var(--home-hot);
  border-bottom:1px solid var(--home-hot);
}

.home-v2 .visual-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:40px;
  padding:0 11px;
  color:var(--home-dim);
  font:500 9px/1 var(--font-mono);
  letter-spacing:.08em;
  text-transform:uppercase;
}

.home-v2 .visual-status{
  display:flex;
  align-items:center;
  gap:8px;
  color:#989daf;
}

.home-v2 .visual-status::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--home-electric);
  box-shadow:0 0 12px rgba(191,219,254,.68);
}

.home-v2 .visual-screen{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  border-radius:9px;
  background:#07080d;
}

.home-v2 .visual-screen img{
  width:100%;
  height:auto;
}

.home-v2 .visual-screen::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(115deg,transparent 55%,rgba(147,197,253,.075));
}

.home-v2 .visual-callout{
  position:absolute;
  z-index:7;
  display:flex;
  align-items:center;
  gap:10px;
  min-width:168px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  background:rgba(7,8,13,.9);
  box-shadow:0 16px 40px rgba(0,0,0,.4);
  backdrop-filter:blur(16px);
}

.home-v2 .visual-callout b{
  display:block;
  font:600 10px/1.25 var(--font-mono);
  letter-spacing:.04em;
}

.home-v2 .visual-callout span{
  display:block;
  margin-top:3px;
  color:var(--home-dim);
  font-size:9px;
}

.home-v2 .visual-callout i{
  width:8px;
  height:8px;
  flex:none;
  border-radius:50%;
  background:var(--home-cold);
  box-shadow:0 0 13px rgba(147,197,253,.72);
}

.home-v2 .visual-callout.one{ top:17%; left:-70px; }
.home-v2 .visual-callout.two{ right:-34px; bottom:12%; }
.home-v2 .visual-callout.two i{
  background:var(--home-electric);
  box-shadow:0 0 13px rgba(191,219,254,.72);
}

.home-v2 .hero-index{
  position:absolute;
  right:-8px;
  bottom:-57px;
  color:rgba(255,255,255,.035);
  font:700 clamp(8rem,18vw,18rem)/.7 var(--font-mono);
  letter-spacing:-.1em;
  pointer-events:none;
}

/* Proof rail */
.home-v2 .proof-rail{
  display:grid;
  grid-template-columns:auto repeat(4,1fr);
  align-items:stretch;
  margin-bottom:clamp(104px,12vw,184px);
  border-top:1px solid var(--home-line);
  border-bottom:1px solid var(--home-line);
}

.home-v2 .proof-intro,
.home-v2 .proof-item{
  min-height:90px;
  padding:20px clamp(14px,2vw,28px);
}

.home-v2 .proof-intro{
  display:flex;
  align-items:center;
  padding-left:0;
  color:var(--home-dim);
  font:500 9px/1.5 var(--font-mono);
  letter-spacing:.14em;
  text-transform:uppercase;
}

.home-v2 .proof-item{
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-left:1px solid var(--home-line);
}

.home-v2 .proof-item b{
  color:var(--home-ink);
  font-size:14px;
  font-weight:600;
}

.home-v2 .proof-item span{
  margin-top:4px;
  color:var(--home-dim);
  font-size:11px;
}

/* Problem / solution */
.home-v2 .split-statement{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr);
  gap:clamp(48px,8vw,132px);
  align-items:start;
}

.home-v2 .split-statement h2{
  font-size:clamp(3rem,5.7vw,6.6rem);
}

.home-v2 .statement-copy{
  display:grid;
  gap:1px;
  overflow:hidden;
  border:1px solid var(--home-line);
  border-radius:var(--home-radius);
  background:var(--home-line);
}

.home-v2 .statement-row{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:18px;
  padding:26px;
  background:linear-gradient(145deg,#141722,#0d0f17);
}

.home-v2 .statement-row em{
  padding-top:2px;
  color:var(--home-hot-2);
  font:600 10px/1 var(--font-mono);
  font-style:normal;
}

.home-v2 .statement-row h3{
  margin-bottom:7px;
  font-size:18px;
  letter-spacing:-.02em;
}

.home-v2 .statement-row p{
  color:var(--home-copy);
  font-size:14px;
  line-height:1.7;
}

/* Signature differentiator */
.home-v2 .eol-spotlight{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(430px,1.15fr);
  gap:clamp(42px,7vw,110px);
  align-items:center;
  padding:clamp(30px,5vw,72px);
  overflow:hidden;
  border:1px solid var(--home-line-strong);
  border-radius:17px;
  background:
    radial-gradient(700px 380px at 100% 0,rgba(147,197,253,.11),transparent),
    linear-gradient(145deg,#141722,#0b0d14);
  box-shadow:0 34px 88px rgba(0,0,0,.34);
}

.home-v2 .eol-copy h2{
  max-width:720px;
  margin:16px 0 22px;
  font-size:clamp(2.7rem,5vw,5.8rem);
  line-height:.97;
  letter-spacing:-.055em;
}

.home-v2 .eol-copy p{
  max-width:590px;
  color:var(--home-copy);
  font-size:15px;
  line-height:1.72;
}

.home-v2 .eol-readout{
  overflow:hidden;
  border:1px solid rgba(96,165,250,.28);
  border-radius:12px;
  background:#090b12;
  box-shadow:0 25px 60px rgba(0,0,0,.42),inset 0 1px rgba(255,255,255,.04);
}

.home-v2 .readout-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:48px;
  padding:0 16px;
  border-bottom:1px solid var(--home-line);
  color:var(--home-dim);
  font:500 9px/1 var(--font-mono);
  letter-spacing:.11em;
  text-transform:uppercase;
}

.home-v2 .readout-head span:last-child{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--home-cold);
}

.home-v2 .readout-head span:last-child::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--home-cold);
  box-shadow:0 0 10px rgba(147,197,253,.72);
}

.home-v2 .readout-body{ padding:13px; }

.home-v2 .readout-row{
  display:grid;
  grid-template-columns:112px 1fr auto;
  gap:14px;
  align-items:center;
  min-height:58px;
  padding:11px 12px;
  border-bottom:1px solid rgba(255,255,255,.06);
  font:500 10px/1.45 var(--font-mono);
}

.home-v2 .readout-row:last-child{ border-bottom:0; }
.home-v2 .readout-row > span:first-child{ color:var(--home-dim); text-transform:uppercase; }
.home-v2 .readout-row strong{ color:#e2e4ec; font-weight:500; }
.home-v2 .readout-row em{
  padding:5px 7px;
  border:1px solid var(--home-line);
  border-radius:4px;
  color:var(--home-dim);
  font-size:8px;
  font-style:normal;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.home-v2 .readout-row.result{
  margin-top:4px;
  border:1px solid rgba(96,165,250,.3);
  border-radius:7px;
  background:rgba(37,99,235,.09);
}
.home-v2 .readout-row.result strong{ color:var(--home-electric); }

/* Capability bento */
.home-v2 .cap-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:10px;
}

.home-v2 .cap-card{
  grid-column:span 4;
  position:relative;
  min-height:310px;
  overflow:hidden;
  padding:28px;
  border:1px solid var(--home-line);
  border-radius:var(--home-radius);
  background:linear-gradient(145deg,rgba(20,23,34,.97),rgba(11,13,20,.97));
  transition:transform .3s ease,border-color .3s,background .3s;
}

.home-v2 .cap-card.wide{ grid-column:span 8; }

.home-v2 .cap-card:hover{
  transform:translateY(-4px);
  border-color:rgba(96,165,250,.42);
  background:linear-gradient(145deg,#191c29,#0d1018);
}

.home-v2 .cap-number{
  color:var(--home-hot-2);
  font:600 10px/1 var(--font-mono);
  letter-spacing:.08em;
}

.home-v2 .cap-card h3{
  max-width:530px;
  margin:50px 0 13px;
  font-size:clamp(1.45rem,2.3vw,2.5rem);
  line-height:1.04;
  letter-spacing:-.04em;
}

.home-v2 .cap-card h3 a{
  color:inherit;
  text-decoration-color:rgba(96,165,250,.42);
  text-decoration-thickness:1px;
  text-underline-offset:.18em;
  transition:color .2s ease,text-decoration-color .2s ease;
}

.home-v2 .cap-card h3 a:hover{
  color:#fff;
  text-decoration-color:var(--home-electric);
}

.home-v2 .cap-card p{
  max-width:570px;
  color:var(--home-copy);
  font-size:14px;
  line-height:1.68;
}

.home-v2 .cap-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  position:absolute;
  right:28px;
  bottom:24px;
  left:28px;
}

.home-v2 .cap-tags span{
  padding:6px 9px;
  border:1px solid var(--home-line);
  border-radius:5px;
  color:var(--home-dim);
  background:#0b0d14;
  font:500 9px/1 var(--font-mono);
  letter-spacing:.04em;
  text-transform:uppercase;
}

.home-v2 .cap-signal{
  position:absolute;
  top:-70px;
  right:-40px;
  width:230px;
  aspect-ratio:1;
  border:1px solid rgba(147,197,253,.16);
  border-radius:50%;
  box-shadow:0 0 0 32px rgba(37,99,235,.045),0 0 0 64px rgba(37,99,235,.025);
}

.home-v2 .cap-signal::before{
  content:"";
  position:absolute;
  inset:50%;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--home-cold);
  box-shadow:0 0 18px rgba(147,197,253,.72);
}

/* Product tour */
.home-v2 .tour-shell{
  display:grid;
  grid-template-columns:270px minmax(0,1fr);
  min-height:610px;
  overflow:hidden;
  border:1px solid var(--home-line-strong);
  border-radius:16px;
  background:#090b12;
  box-shadow:0 38px 90px rgba(0,0,0,.42);
}

.home-v2 .tour-nav{
  display:flex;
  flex-direction:column;
  border-right:1px solid var(--home-line);
  background:#0d0f17;
}

.home-v2 .tour-nav-head{
  padding:22px 20px;
  border-bottom:1px solid var(--home-line);
  color:var(--home-dim);
  font:500 9px/1 var(--font-mono);
  letter-spacing:.14em;
  text-transform:uppercase;
}

.home-v2 .tour-tab{
  display:grid;
  grid-template-columns:27px 1fr;
  gap:10px;
  width:100%;
  padding:17px 19px;
  border:0;
  border-bottom:1px solid var(--home-line);
  background:transparent;
  color:var(--home-dim);
  text-align:left;
  cursor:pointer;
  transition:background .2s,color .2s;
}

.home-v2 .tour-tab b{
  color:inherit;
  font:600 9px/1.45 var(--font-mono);
}

.home-v2 .tour-tab span{
  color:inherit;
  font-size:12px;
  line-height:1.35;
}

.home-v2 .tour-tab:hover{
  color:var(--home-copy);
  background:rgba(255,255,255,.02);
}

.home-v2 .tour-tab[aria-selected="true"]{
  color:var(--home-ink);
  background:linear-gradient(90deg,rgba(37,99,235,.2),transparent);
  box-shadow:inset 2px 0 var(--home-hot);
}

.home-v2 .tour-stage{
  display:flex;
  flex-direction:column;
  min-width:0;
  background:
    radial-gradient(500px 300px at 82% 0,rgba(147,197,253,.08),transparent),
    #090b12;
}

.home-v2 .tour-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:58px;
  padding:12px 18px;
  border-bottom:1px solid var(--home-line);
}

.home-v2 .tour-meta strong{
  font-size:13px;
  font-weight:600;
}

.home-v2 .tour-meta span{
  color:var(--home-dim);
  font:500 9px/1 var(--font-mono);
  letter-spacing:.08em;
  text-transform:uppercase;
}

.home-v2 .tour-frame{
  display:grid;
  flex:1;
  min-height:0;
  padding:18px;
  place-items:center;
}

.home-v2 .tour-frame img{
  width:100%;
  max-height:510px;
  object-fit:contain;
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  background:#07080d;
  box-shadow:0 24px 55px rgba(0,0,0,.4);
}

/* Workflow */
.home-v2 .workflow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--home-line-strong);
  border-bottom:1px solid var(--home-line-strong);
}

.home-v2 .workflow-step{
  position:relative;
  min-height:300px;
  padding:26px;
}

.home-v2 .workflow-step + .workflow-step{ border-left:1px solid var(--home-line); }

.home-v2 .workflow-step::before{
  content:"";
  position:absolute;
  top:-4px;
  left:26px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--home-bg);
  border:1px solid var(--home-hot);
}

.home-v2 .workflow-step b{
  color:var(--home-hot-2);
  font:600 10px/1 var(--font-mono);
}

.home-v2 .workflow-step h3{
  margin:78px 0 11px;
  font-size:22px;
  letter-spacing:-.03em;
}

.home-v2 .workflow-step p{
  color:var(--home-copy);
  font-size:13px;
  line-height:1.7;
}

/* Use cases / vehicles */
.home-v2 .case-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.home-v2 .case-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  min-height:230px;
  padding:28px;
  border:1px solid var(--home-line);
  border-radius:var(--home-radius);
  background:linear-gradient(145deg,#141722,#0b0d14);
  transition:border-color .2s,transform .2s;
}

.home-v2 .case-card:hover{
  transform:translateY(-3px);
  border-color:rgba(96,165,250,.42);
}

.home-v2 .case-card small{
  color:var(--home-hot-2);
  font:600 9px/1 var(--font-mono);
  letter-spacing:.11em;
  text-transform:uppercase;
}

.home-v2 .case-card h3{
  max-width:520px;
  margin:34px 0 10px;
  font-size:clamp(1.6rem,2.6vw,2.8rem);
  line-height:1.03;
  letter-spacing:-.04em;
}

.home-v2 .case-card p{
  max-width:520px;
  color:var(--home-copy);
  font-size:13px;
  line-height:1.65;
}

.home-v2 .case-arrow{
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border:1px solid var(--home-line);
  border-radius:50%;
  color:var(--home-copy);
  transition:background .2s,color .2s,transform .2s;
}

.home-v2 .case-card:hover .case-arrow{
  color:#fff;
  background:var(--home-hot);
  transform:translate(2px,-2px);
}

.home-v2 .vehicle-cloud{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1px;
  overflow:hidden;
  border:1px solid var(--home-line);
  border-radius:var(--home-radius);
  background:var(--home-line);
}

.home-v2 .vehicle-link{
  display:flex;
  min-height:128px;
  flex-direction:column;
  justify-content:space-between;
  padding:20px;
  background:#0d0f17;
  transition:background .2s,color .2s;
}

.home-v2 .vehicle-link:hover{ background:#181b27; }

.home-v2 .vehicle-link b{
  max-width:230px;
  font-size:14px;
  line-height:1.35;
}

.home-v2 .vehicle-link span{
  color:var(--home-dim);
  font:500 9px/1 var(--font-mono);
  text-transform:uppercase;
}

/* Price / download */
.home-v2 .price-panel{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(390px,.62fr);
  overflow:hidden;
  border:1px solid rgba(96,165,250,.46);
  border-radius:17px;
  background:
    radial-gradient(700px 420px at 0 0,rgba(37,99,235,.18),transparent),
    linear-gradient(145deg,#171a26,#0b0d14);
  box-shadow:0 40px 100px rgba(0,0,0,.4);
}

.home-v2 .price-copy,
.home-v2 .price-box{ padding:clamp(30px,5vw,70px); }

.home-v2 .price-copy h2{
  max-width:780px;
  font-size:clamp(2.8rem,5.3vw,6rem);
}

.home-v2 .price-copy p{
  max-width:650px;
  margin-top:24px;
  color:var(--home-copy);
  font-size:15px;
  line-height:1.72;
}

.home-v2 .price-box{
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-left:1px solid var(--home-line);
  background:rgba(7,8,13,.58);
}

.home-v2 .price-label{
  color:var(--home-dim);
  font:600 9px/1 var(--font-mono);
  letter-spacing:.14em;
  text-transform:uppercase;
}

.home-v2 .price-number{
  margin:17px 0 8px;
  font-size:clamp(4.5rem,8vw,8.5rem);
  font-weight:720;
  line-height:.8;
  letter-spacing:-.08em;
}

.home-v2 .price-meta{
  margin-bottom:26px;
  color:var(--home-copy);
  font-size:12px;
}

.home-v2 .price-list{
  display:grid;
  gap:11px;
  margin-bottom:28px;
  list-style:none;
}

.home-v2 .price-list li{
  display:flex;
  align-items:center;
  gap:10px;
  color:#bec1ce;
  font-size:12px;
}

.home-v2 .price-list li::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--home-electric);
  box-shadow:0 0 8px rgba(191,219,254,.58);
}

.home-v2 .home-faq{
  display:grid;
  grid-template-columns:minmax(0,.7fr) minmax(480px,1.3fr);
  gap:clamp(50px,8vw,130px);
  align-items:start;
}

.home-v2 .faq-intro h2{
  margin:14px 0 22px;
  font-size:clamp(2.7rem,5vw,5.7rem);
  line-height:.96;
  letter-spacing:-.055em;
}

.home-v2 .faq-intro p{
  max-width:420px;
  color:var(--home-copy);
  font-size:14px;
  line-height:1.72;
}

.home-v2 .home-faq-list{
  overflow:hidden;
  border-top:1px solid var(--home-line-strong);
}

.home-v2 .home-faq-list details{
  border-bottom:1px solid var(--home-line);
  background:transparent;
}

.home-v2 .home-faq-list summary{
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
  min-height:78px;
  padding:18px 4px;
  font-size:15px;
  font-weight:600;
  list-style:none;
  cursor:pointer;
}

.home-v2 .home-faq-list summary::-webkit-details-marker{ display:none; }
.home-v2 .home-faq-list summary::after{
  content:"+";
  color:var(--home-hot-2);
  font:400 22px/1 var(--font-mono);
  transition:transform .2s;
}
.home-v2 .home-faq-list details[open] summary::after{ transform:rotate(45deg); }
.home-v2 .home-faq-answer{
  max-width:720px;
  padding:0 48px 23px 4px;
  color:var(--home-copy);
  font-size:13px;
  line-height:1.75;
}

.home-v2 .download-panel{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:42px;
  align-items:end;
  padding:clamp(34px,6vw,82px);
  overflow:hidden;
  border:1px solid var(--home-line-strong);
  border-radius:17px;
  background:
    radial-gradient(640px 340px at 80% 120%,rgba(147,197,253,.1),transparent),
    radial-gradient(700px 420px at 0 0,rgba(37,99,235,.2),transparent),
    #10131d;
}

.home-v2 .release-strip{
  display:grid;
  grid-template-columns:minmax(220px,.55fr) minmax(0,1fr) auto;
  gap:38px;
  align-items:center;
  padding:30px;
  border-top:1px solid var(--home-line-strong);
  border-bottom:1px solid var(--home-line-strong);
}

.home-v2 .release-version span{
  color:var(--home-dim);
  font:600 9px/1 var(--font-mono);
  letter-spacing:.13em;
  text-transform:uppercase;
}

.home-v2 .release-version h2{
  margin-top:11px;
  font-size:clamp(2.1rem,3.4vw,4.2rem);
  line-height:.9;
  letter-spacing:-.055em;
}

.home-v2 .release-notes{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  list-style:none;
}

.home-v2 .release-notes li{
  position:relative;
  padding-left:14px;
  color:var(--home-copy);
  font-size:11px;
  line-height:1.55;
}

.home-v2 .release-notes li::before{
  content:"";
  position:absolute;
  top:.56em;
  left:0;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--home-cold);
  box-shadow:0 0 9px rgba(147,197,253,.58);
}

.home-v2 .download-copy h2{ max-width:970px; }

.home-v2 .download-copy p{
  max-width:690px;
  margin-top:23px;
  color:var(--home-copy);
  line-height:1.72;
}

.home-v2 .download-actions{
  display:flex;
  flex-direction:column;
  gap:9px;
  min-width:230px;
}

.home-v2 .build-note{
  color:var(--home-dim);
  font:500 9px/1.4 var(--font-mono);
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.07em;
}

/* Footer */
.home-v2 .home-footer{
  padding:48px 0 12px;
  border-top:1px solid var(--home-line);
}

.home-v2 .footer-top{
  display:grid;
  grid-template-columns:minmax(260px,1fr) repeat(3,minmax(140px,.44fr));
  gap:42px;
  padding-bottom:44px;
}

.home-v2 .footer-brand img{
  width:auto;
  height:29px;
}

.home-v2 .footer-brand p{
  max-width:380px;
  margin-top:18px;
  color:var(--home-dim);
  font-size:12px;
  line-height:1.7;
}

.home-v2 .footer-column b{
  display:block;
  margin-bottom:15px;
  color:var(--home-copy);
  font:600 9px/1 var(--font-mono);
  letter-spacing:.12em;
  text-transform:uppercase;
}

.home-v2 .footer-column a{
  display:block;
  width:max-content;
  max-width:100%;
  margin-top:9px;
  color:var(--home-dim);
  font-size:12px;
}

.home-v2 .footer-column a:hover{ color:var(--home-ink); }

.home-v2 .footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:24px;
  padding-top:18px;
  border-top:1px solid var(--home-line);
  color:var(--home-dim);
  font-size:10px;
  line-height:1.6;
}

/* Motion */
.home-v2 .reveal-on .reveal{
  opacity:1;
  transform:translateY(14px);
  transition:opacity .75s cubic-bezier(.22,.61,.36,1),transform .75s cubic-bezier(.22,.61,.36,1);
}

.home-v2 .reveal-on .reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (max-width:1200px){
  .home-v2 .home-hero{
    grid-template-columns:1fr;
    min-height:0;
    padding-top:70px;
  }
  .home-v2 .product-visual{
    width:100%;
    margin:20px 0 0;
    transform:none;
  }
  .home-v2 .visual-callout.one{ left:18px; }
  .home-v2 .visual-callout.two{ right:18px; }
  .home-v2 .cap-card{ grid-column:span 6; }
  .home-v2 .cap-card.wide{ grid-column:span 6; }
  .home-v2 .vehicle-cloud{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:980px){
  .home-v2 .site-head{ grid-template-columns:auto 1fr auto; }
  .home-v2 .site-nav{
    position:fixed;
    z-index:180;
    top:88px;
    right:18px;
    left:18px;
    display:none;
    align-items:stretch;
    padding:14px;
    border:1px solid var(--home-line-strong);
    border-radius:11px;
    background:rgba(9,10,17,.98);
    box-shadow:0 26px 70px rgba(0,0,0,.55);
  }
  .home-v2 .site-nav[data-open="true"]{ display:grid; }
  .home-v2 .site-nav a{ padding:14px 12px; border-bottom:1px solid var(--home-line); }
  .home-v2 .menu-button{ display:block; }
  .home-v2 .section-head,
  .home-v2 .split-statement,
  .home-v2 .home-faq,
  .home-v2 .eol-spotlight{
    grid-template-columns:1fr;
    gap:28px;
  }
  .home-v2 .proof-rail{ grid-template-columns:repeat(2,1fr); }
  .home-v2 .proof-intro{ grid-column:1/-1; min-height:54px; border-bottom:1px solid var(--home-line); }
  .home-v2 .proof-item:nth-child(even){ border-left:0; }
  .home-v2 .tour-shell{ grid-template-columns:1fr; }
  .home-v2 .tour-nav{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-right:0;
    border-bottom:1px solid var(--home-line);
  }
  .home-v2 .tour-nav-head{ display:none; }
  .home-v2 .tour-tab{ min-height:68px; }
  .home-v2 .workflow-grid{ grid-template-columns:repeat(2,1fr); }
  .home-v2 .workflow-step:nth-child(3){ border-left:0; }
  .home-v2 .workflow-step:nth-child(n+3){ border-top:1px solid var(--home-line); }
  .home-v2 .price-panel{ grid-template-columns:1fr; }
  .home-v2 .price-box{ border-top:1px solid var(--home-line); border-left:0; }
  .home-v2 .download-panel{ grid-template-columns:1fr; align-items:start; }
  .home-v2 .release-strip{ grid-template-columns:1fr; align-items:start; }
  .home-v2 .download-actions{ width:min(100%,360px); }
  .home-v2 .footer-top{ grid-template-columns:repeat(3,1fr); }
  .home-v2 .footer-brand{ grid-column:1/-1; }
}

@media (max-width:700px){
  .home-v2 .shell{ padding:8px 14px 38px; }
  .home-v2 .site-head{
    top:7px;
    min-height:60px;
    margin-bottom:12px;
    padding:8px 8px 8px 12px;
  }
  .home-v2 .brand img{ height:24px; }
  .home-v2 .head-actions .home-button{ display:none; }
  .home-v2 .home-hero{ gap:38px; padding:54px 0 82px; }
  .home-v2 .hero-copy h1{
    font-size:clamp(3.7rem,17vw,5.5rem);
  }
  .home-v2 .hero-title-lines{ margin-top:19px; }
  html[lang="uk"] .home-v2 .hero-copy h1{
    font-size:clamp(2.25rem,12vw,3.3rem);
    letter-spacing:-.06em;
  }
  .home-v2 .home-button{
    white-space:normal;
    overflow-wrap:anywhere;
    text-align:center;
    line-height:1.25;
  }
  .home-v2 .hero-cta{ display:grid; }
  .home-v2 .hero-cta .home-button{ width:100%; }
  .home-v2 .hero-facts{ grid-template-columns:1fr; }
  .home-v2 .hero-fact{ padding:13px 0; }
  .home-v2 .hero-fact + .hero-fact{ padding-left:0; border-top:1px solid var(--home-line); border-left:0; }
  .home-v2 .visual-callout{ display:none; }
  .home-v2 .visual-bar{ height:34px; }
  .home-v2 .hero-index{ display:none; }
  .home-v2 .proof-rail{ grid-template-columns:1fr; }
  .home-v2 .proof-item,
  .home-v2 .proof-item:nth-child(even){ min-height:74px; padding-left:0; border-top:1px solid var(--home-line); border-left:0; }
  .home-v2 .home-section{ margin-bottom:92px; }
  .home-v2 .section-head{ margin-bottom:27px; }
  .home-v2 .section-head h2,
  .home-v2 .split-statement h2,
  .home-v2 .eol-copy h2,
  .home-v2 .price-copy h2,
  .home-v2 .faq-intro h2,
  .home-v2 .download-copy h2{
    font-size:clamp(2.15rem,10.8vw,4rem);
    overflow-wrap:anywhere;
    hyphens:auto;
  }
  html[lang="uk"] .home-v2 .eol-copy h2,
  html[lang="uk"] .home-v2 .faq-intro h2{
    font-size:clamp(2.15rem,10.8vw,4rem);
  }
  .home-v2 .statement-row{ grid-template-columns:31px 1fr; padding:21px 18px; }
  .home-v2 .eol-spotlight{ padding:28px 20px; }
  .home-v2 .readout-row{ grid-template-columns:88px 1fr; }
  .home-v2 .readout-row em{ display:none; }
  .home-v2 .cap-grid{ grid-template-columns:1fr; }
  .home-v2 .cap-card,
  .home-v2 .cap-card.wide{
    grid-column:auto;
    min-height:300px;
    padding:22px;
  }
  .home-v2 .cap-card h3{ margin-top:42px; }
  .home-v2 .cap-tags{ right:22px; bottom:20px; left:22px; }
  .home-v2 .tour-shell{ min-height:0; }
  .home-v2 .tour-nav{
    display:flex;
    max-width:100%;
    flex-direction:row;
    overflow-x:auto;
  }
  .home-v2 .tour-tab{
    grid-template-columns:1fr;
    min-width:150px;
    padding:14px;
  }
  .home-v2 .tour-tab b{ display:none; }
  .home-v2 .tour-frame{ padding:8px; }
  .home-v2 .workflow-grid{ grid-template-columns:1fr; }
  .home-v2 .workflow-step,
  .home-v2 .workflow-step:nth-child(3){
    min-height:230px;
    border-top:1px solid var(--home-line);
    border-left:0;
  }
  .home-v2 .workflow-step:first-child{ border-top:0; }
  .home-v2 .workflow-step h3{ margin-top:54px; }
  .home-v2 .case-grid{ grid-template-columns:1fr; }
  .home-v2 .case-card{ min-height:230px; padding:22px; }
  .home-v2 .vehicle-cloud{ grid-template-columns:1fr; }
  .home-v2 .price-copy,.home-v2 .price-box{ padding:30px 22px; }
  .home-v2 .home-faq{ gap:18px; }
  .home-v2 .download-panel{ padding:31px 22px; }
  .home-v2 .release-strip{ gap:24px; padding:24px 0; }
  .home-v2 .release-notes{ grid-template-columns:1fr; gap:10px; }
  .home-v2 .footer-top{ grid-template-columns:repeat(2,1fr); gap:34px 20px; }
  .home-v2 .footer-column:last-child{ grid-column:1/-1; }
  .home-v2 .footer-bottom{ flex-direction:column; }
}

@media (max-width:360px){
  .home-v2 .site-head{ gap:10px; }
  .home-v2 .brand{
    width:26px;
    height:24px;
    overflow:hidden;
  }
  .home-v2 .brand img{
    width:auto;
    max-width:none;
    height:24px;
  }
  .home-v2 .head-actions{ gap:5px; }
  .home-v2 .language-link{ width:36px; }
  .home-v2 .head-actions .home-button{ padding-inline:15px; }
  .home-v2 .case-card h3{ font-size:1.42rem; }
}

@media (prefers-reduced-motion:reduce){
  .home-v2 .product-visual{ transform:none; }
}
