:root {
  --bg: #070b14;
  --bg-2: #0c1422;
  --surface: #101a2b;
  --ink: #f3efe6;
  --muted: #9aa6b8;
  --line: rgba(243, 239, 230, 0.12);
  --amber: #f5a623;
  --amber-2: #ffd08a;
  --wrap: 1120px;
  --font: "Source Sans 3", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
}

p {
  margin: 0;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 50;
  background: var(--surface);
  padding: 8px 12px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 11, 20, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.lang button,
.lang a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: var(--muted);
  border: 0;
  padding: 6px 8px;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
}

.lang a::before,
.lang-gate-list a::before {
  content: "";
  width: 16px;
  height: 12px;
  flex: none;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
}

.lang a[data-set-lang="sl"]::before,
.lang-gate-list a[data-gate-lang="sl"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 15'%3E%3Crect width='21' height='5' fill='%23fff'/%3E%3Crect y='5' width='21' height='5' fill='%230057b8'/%3E%3Crect y='10' width='21' height='5' fill='%23ed1c24'/%3E%3Crect width='7.5' height='7.5' fill='%230057b8'/%3E%3Cpolygon points='3.8,1.3 4.4,3.1 6.3,3.1 4.8,4.2 5.4,6 3.8,4.9 2.2,6 2.8,4.2 1.3,3.1 3.2,3.1' fill='%23fff'/%3E%3C/svg%3E");
}

.lang a[data-set-lang="en"]::before,
.lang-gate-list a[data-gate-lang="en"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0 0l60 30M60 0L0 30' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M0 0l60 30M60 0L0 30' stroke='%23C8102E' stroke-width='6'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}

.lang a[data-set-lang="it"]::before,
.lang-gate-list a[data-gate-lang="it"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 15'%3E%3Crect width='7' height='15' fill='%23009246'/%3E%3Crect x='7' width='7' height='15' fill='%23fff'/%3E%3Crect x='14' width='7' height='15' fill='%23ce2b37'/%3E%3C/svg%3E");
}

.lang a[data-set-lang="de"]::before,
.lang-gate-list a[data-gate-lang="de"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 15'%3E%3Crect width='21' height='5' fill='%23000'/%3E%3Crect y='5' width='21' height='5' fill='%23d00'/%3E%3Crect y='10' width='21' height='5' fill='%23ffce00'/%3E%3C/svg%3E");
}

.lang button:hover,
.lang a:hover {
  color: var(--ink);
}

.lang button[aria-pressed="true"],
.lang a[aria-pressed="true"],
.lang a[aria-current="page"] {
  background: var(--amber);
  color: #1a1206;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

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

.nav a {
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--amber);
  color: #1a1206;
  font-weight: 600;
}

.nav a.nav-cta,
.nav a.nav-cta:hover {
  color: #1a1206;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
}

.btn-fill {
  background: var(--amber);
  color: #1a1206;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--amber);
}

.hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  max-width: 15ch;
}

.lede {
  margin-top: 20px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 19px;
}

.hero-note {
  margin-top: 18px;
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-viz {
  perspective: 1200px;
}

.browser {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0d1524;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: rotateX(6deg) rotateY(-8deg);
  animation: browser-in 0.8s ease-out both;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #121b2c;
  border-bottom: 1px solid var(--line);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a465c;
}

.browser-dots i:first-child {
  background: #c45c4a;
}

.browser-url {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 7px;
  background: #0a1220;
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
}

.url-lock {
  width: 8px;
  height: 8px;
  border: 1.5px solid #6fdb9a;
  border-radius: 2px;
  flex: none;
}

.url-text {
  display: inline-block;
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  animation: type-url 1.4s 0.4s steps(22) forwards;
}

.url-caret {
  width: 1px;
  height: 12px;
  background: var(--amber);
  animation: blink 1s 0.4s step-end infinite, caret-hide 0.01s 1.9s forwards;
}

.browser-page {
  position: relative;
  padding: 0;
  min-height: 360px;
  height: 360px;
  overflow: hidden;
  background: #0a1220;
}

.load-progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  height: 2px;
  width: 100%;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  animation: load-bar 1.2s 1.1s ease-in-out forwards;
}

.mock-skel,
.viz-map {
  position: absolute;
  inset: 0;
}

.mock-skel {
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  opacity: 0;
  animation: skel-life 1.45s 1.05s ease-out forwards;
}

.skel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 28px;
}

.skel-nav i,
.skel-nav span,
.skel-banner,
.skel-cards span {
  display: block;
  border-radius: 6px;
  background: #1c2a3d;
}

.skel-nav i {
  width: 88px;
  height: 10px;
  border-radius: 99px;
}

.skel-nav span {
  width: 132px;
  height: 10px;
  border-radius: 99px;
}

.skel-banner {
  height: 168px;
  border-radius: 8px;
}

.skel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.skel-cards span {
  height: 72px;
}

.viz-map {
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 14px;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 78%, rgba(245, 166, 35, 0.16), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(245, 166, 35, 0.1), transparent 28%),
    #0a1220;
  animation: map-in 0.55s 2.5s ease-out forwards;
}

.viz-kicker {
  color: var(--amber);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.viz-title {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.viz-map svg {
  width: 100%;
  height: auto;
  margin-top: 4px;
  flex: 1;
}

.route-draw {
  stroke: #f5a623;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: draw-route 2.2s 2.7s ease-out forwards;
}

.route-dim {
  stroke: rgba(243, 239, 230, 0.16);
  stroke-width: 1.4;
  stroke-dasharray: 6 10;
  animation: drift 18s linear infinite;
}

.route-flow {
  stroke: #ffd08a;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 18 220;
  animation: route-flow 5.5s linear 3.2s infinite;
}

.node-ring {
  fill: none;
  stroke: rgba(245, 166, 35, 0.55);
  stroke-width: 1.2;
  transform-origin: center;
  transform-box: fill-box;
  animation: ping 2.6s ease-out 2.8s infinite;
}

.node-b .node-ring { animation-delay: 3.5s; }
.node-c .node-ring { animation-delay: 4.2s; }

.truck {
  opacity: 0;
  filter: drop-shadow(0 2px 6px rgba(245, 166, 35, 0.55));
  animation: truck-show 0.2s linear 3.2s forwards;
}

.truck-trailer {
  fill: #f5a623;
}

.truck-cab {
  fill: #ffd08a;
}

.truck-light {
  animation: truck-blink 1.1s linear 3.2s infinite;
}

.truck-wheel circle:first-child {
  stroke: #6f7b8c;
  stroke-width: 0.6;
}

.viz-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.viz-stats span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 26, 43, 0.7);
  font-size: 10px;
  color: var(--muted);
}

.viz-stats strong {
  font-family: var(--display);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.03em;
}

@keyframes load-bar {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  75% {
    transform: scaleX(0.86);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

@keyframes skel-life {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  18% {
    opacity: 1;
    transform: none;
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes map-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes draw-route {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -238;
  }
}

@keyframes drift {
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes ping {
  0% {
    transform: scale(0.55);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes truck-show {
  to {
    opacity: 1;
  }
}

@keyframes truck-blink {
  0%,
  70% {
    fill: #fff3c4;
    opacity: 1;
  }
  85% {
    fill: #f5a623;
    opacity: 0.45;
  }
  100% {
    fill: #fff3c4;
    opacity: 1;
  }
}

@keyframes browser-in {
  from {
    opacity: 0;
    transform: rotateX(10deg) rotateY(-12deg) translateY(18px);
  }
  to {
    opacity: 1;
    transform: rotateX(6deg) rotateY(-8deg) translateY(0);
  }
}

@keyframes type-url {
  to {
    max-width: 180px;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes caret-hide {
  to {
    opacity: 0;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  max-width: 22ch;
}

.section-lead {
  margin-top: 14px;
  color: var(--muted);
  max-width: 52ch;
}

.price-hook {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.price-card,
.own-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}

.price-lines {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
}

.price-lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.price-lines li:last-child {
  border-bottom: 0;
}

.price-lines span {
  color: var(--muted);
  font-weight: 650;
}

.price-card strong,
.own-card strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.price-card strong span,
.own-card strong span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.price-card .price-lines + p,
.own-card .price-lines + p {
  color: var(--muted);
  font-size: 15px;
}

.price-more {
  margin-top: 24px;
  text-align: center;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.outcome {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-2);
}

.outcome-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--amber);
  background: rgba(245, 166, 35, 0.08);
}

.outcome-icon svg {
  width: 22px;
  height: 22px;
}

.outcome h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.outcome p {
  color: var(--muted);
  font-size: 15px;
}

.built {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.built-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.built-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.include-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.include-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.include-card p {
  color: var(--muted);
  font-size: 15px;
}

.include-card strong {
  color: var(--ink);
  font-weight: 650;
}

.compare-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.compare {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.compare th,
.compare td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare thead th {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  background: var(--bg-2);
}

.compare tbody th {
  width: 28%;
  color: var(--muted);
  font-weight: 650;
}

.compare td {
  width: 36%;
}

.compare td.is-empty {
  color: var(--muted);
  opacity: 0.55;
}

.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: 0;
}

.compare-notes {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}

.compare-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.compare-note + .compare-note {
  margin-top: 8px;
}

.compare-cta {
  margin-top: 24px;
}

.paths {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-top: 36px;
  align-items: stretch;
}

.path {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-2);
}

.path-main {
  background: var(--surface);
  border-color: rgba(245, 166, 35, 0.5);
}

.path h3 {
  font-size: 26px;
  margin: 8px 0 12px;
}

.path p,
.path li {
  color: var(--muted);
  font-size: 15px;
}

.path ul {
  margin: 16px 0 24px;
  padding-left: 18px;
}

.path .btn {
  margin-top: auto;
  align-self: flex-start;
}

.path .tag {
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section[id] {
  scroll-margin-top: 88px;
}

.demos-section {
  background: var(--bg-2);
}

.demo-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  align-items: stretch;
}

.demo-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  min-height: 100%;
}

.demo-card-main {
  border-color: rgba(245, 166, 35, 0.5);
}

.demo-preview {
  background: #070b14;
  color: #f3efe6;
}

.dp-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: #101a2b;
  color: #9aa6b8;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dp-top span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dp-top span:first-child::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, #101a2b, #0c1422);
  box-shadow: inset 0 0 0 1px #5eead4;
}

.dp-hero {
  min-height: 132px;
  padding: 22px 16px 18px;
  color: #f3efe6;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dp-hero-basic {
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.15), rgba(7, 11, 20, 0.82)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1200&q=70")
      center / cover;
}

.dp-hero-pro {
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.12), rgba(7, 11, 20, 0.84)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=70")
      center / cover;
}

.dp-hero strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.dp-hero em {
  margin-top: 8px;
  font-style: normal;
  font-size: 12px;
  color: #9aa6b8;
}

.dp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 14px 16px;
  background: #0c1422;
}

.dp-pills span {
  background: #101a2b;
  border: 1px solid rgba(94, 234, 212, 0.22);
  border-radius: 99px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5eead4;
}

.demo-card-body {
  display: flex;
  flex-direction: column;
  padding: 28px;
  flex: 1;
}

.demo-card .tag {
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-card h3 {
  font-size: 28px;
  margin: 8px 0 12px;
}

.demo-card p,
.demo-card li {
  color: var(--muted);
  font-size: 15px;
}

.demo-card ul {
  margin: 16px 0 24px;
  padding-left: 18px;
}

.demo-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.more {
  background: var(--bg-2);
}

.more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.more ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.step {
  padding: 22px;
  border-top: 2px solid var(--amber);
}

.step span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
}

.step h3 {
  margin: 8px 0;
  font-size: 20px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
}

.faq {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  font-family: var(--display);
}

.faq p {
  margin-top: 10px;
  color: var(--muted);
}

.inquiry {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

form .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 12px;
}

textarea {
  min-height: 72px;
  resize: vertical;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
}

.check input {
  width: auto;
  margin-top: 3px;
}

.offer-more {
  display: grid;
  gap: 0;
}

.offer-expand {
  display: block;
  cursor: pointer;
}

.offer-expand input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.offer-expand-ui {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px dashed rgba(243, 239, 230, 0.28);
  border-radius: 12px;
  background: var(--surface);
}

.offer-expand-mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.14);
  color: var(--amber);
}

.offer-expand-mark::before {
  content: "+";
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.offer-expand strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}

.offer-expand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.offer-expand:has(:checked) .offer-expand-ui {
  border-style: solid;
  border-color: rgba(245, 166, 35, 0.55);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.offer-expand:has(:checked) .offer-expand-mark::before {
  content: "–";
}

.offer-expand:focus-within .offer-expand-ui {
  outline: 2px solid rgba(245, 166, 35, 0.45);
  outline-offset: 2px;
}

.offer-more:has(:checked) .form-extra {
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.form-extra,
.form-nested {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
}

.form-nested {
  background: var(--bg);
}

.form-extra[hidden],
.form-nested[hidden] {
  display: none;
}

.extras {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.extras legend {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}

.extra-item strong {
  display: block;
  font-weight: 650;
}

.extra-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p + p {
  margin-top: 6px;
  max-width: 56ch;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 10px;
}

.footer-links a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: var(--amber);
}

.legal-page {
  padding-bottom: 24px;
}

.legal-page h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 8px 0 16px;
  max-width: 20ch;
}

.legal-page h2 {
  font-size: 22px;
  margin: 28px 0 10px;
}

.legal-page p {
  color: var(--muted);
  max-width: 68ch;
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(7, 11, 20, 0.96);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  max-width: 62ch;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

.cookie-actions a {
  color: var(--ink);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

@media (max-width: 900px) {
  .hero-grid,
  .price-hook,
  .built,
  .include-grid,
  .more-grid,
  .paths,
  .demo-compare,
  .inquiry,
  .outcomes,
  .steps {
    grid-template-columns: 1fr;
  }

  .logo span {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    inset: 72px 20px auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .nav.is-open {
    display: flex;
  }

  form {
    grid-template-columns: 1fr;
  }

  .form-extra,
  .form-nested {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .browser {
    transform: none;
    animation-name: rise;
  }
}

@media (prefers-reduced-motion: reduce) {
  .browser,
  .url-text,
  .url-caret,
  .mock-skel,
  .viz-map,
  .load-progress,
  .route-draw,
  .route-dim,
  .route-flow,
  .node-ring,
  .truck {
    animation: none;
  }

  .browser {
    transform: none;
  }

  .url-text,
  .viz-map {
    max-width: none;
    opacity: 1;
    transform: none;
  }

  .route-draw,
  .route-flow {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }

  .url-caret,
  .mock-skel,
  .load-progress,
  .truck {
    display: none;
  }

  .truck-light {
    animation: none;
  }

  .lang-gate,
  .lang-gate-card {
    animation: none;
  }
}

.lang-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 11, 20, 0.78);
  backdrop-filter: blur(18px);
  animation: gate-in 0.35s ease;
}

.lang-gate[hidden] {
  display: none;
}

.lang-gate-card {
  width: min(420px, 100%);
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  animation: gate-card 0.4s ease;
}

.lang-gate-kicker {
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-gate-kicker span {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lang-gate h2 {
  margin: 10px 0 8px;
  font-size: 28px;
}

.lang-gate-lead {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.lang-gate-list {
  display: grid;
  gap: 8px;
}

.lang-gate-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lang-gate-list a::before {
  width: 22px;
  height: 16px;
}

.lang-gate-list span {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-gate-list a:hover,
.lang-gate-list a:focus-visible {
  border-color: rgba(245, 166, 35, 0.7);
  background: rgba(245, 166, 35, 0.1);
  outline: none;
}

@keyframes gate-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gate-card {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}


