:root {
  color-scheme: light dark;
  --ink: #12151c;
  --muted: #5c6472;
  --line: #e3e7ee;
  --soft: #f5f7fa;
  --white: #fff;
  --red: #d71920;
  --red-dark: #a80f15;
  --black: #080a0f;
  --charcoal: #121722;
  --steel: #202837;
  --smoke: #c8d0dc;
  --blue: #1463ff;
  --green: #0f8f64;
  --gold: #c97813;
  --shadow: 0 22px 70px rgba(8, 10, 15, .24);
  --shadow-deep: 0 34px 100px rgba(0, 0, 0, .34);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: #f7f8fb;
  line-height: 1.55;
}

body.is-loading .hero-copy,
body.is-loading .hero-phone,
body.is-loading .site-header {
  opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 12%, rgba(215, 25, 32, .12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f9 42%, #ffffff 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .08;
  background-image:
    linear-gradient(rgba(18, 21, 28, .45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 21, 28, .45) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

@keyframes grid-drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 84px 42px, 84px 42px; }
}

@keyframes red-scan {
  0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  12% { opacity: .9; }
  48% { opacity: .65; }
  100% { transform: translateX(120%) skewX(-18deg); opacity: 0; }
}

@keyframes phone-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)); }
  50% { transform: translate3d(0, -14px, 0) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)); }
}

@keyframes pulse-ring {
  0% { transform: scale(.72); opacity: .7; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}

@keyframes chip-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes glow-shift {
  0%, 100% { opacity: .55; transform: translate3d(0, 0, 0) scale(1); }
  50% { opacity: .92; transform: translate3d(-2%, -3%, 0) scale(1.06); }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, select, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8,10,15,.82);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  transition: background .28s ease, border-color .28s ease, opacity .5s var(--ease-out), transform .5s var(--ease-out);
}

body.is-ready .site-header { opacity: 1; }

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { flex: 0 0 210px; }
.brand img { width: 168px; height: auto; }
.nav-links { flex: 1 1 auto; display: flex; align-items: center; justify-content: center; gap: 22px; color: #c8d0dc; font-weight: 700; font-size: 14px; }
.nav-links a {
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s var(--ease-out);
}
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--white); }
.nav-links a[aria-current="page"]::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { flex: 0 0 300px; display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.locale-select {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 0 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  position: absolute;
}
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(6px); }

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), border-color .18s ease, background .18s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.34) 50%, transparent 65%);
  transform: translateX(-55%);
  transition: transform .5s var(--ease-out);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover::before {
  transform: translateX(55%);
}
.btn-primary { color: var(--white); background: linear-gradient(135deg, #f23037, var(--red-dark)); box-shadow: 0 14px 38px rgba(215,25,32,.32), 0 0 0 1px rgba(255,255,255,.08) inset; }
.btn-primary:hover { background: linear-gradient(135deg, #ff3b42, #a80f15); box-shadow: 0 18px 54px rgba(215,25,32,.44), 0 0 0 1px rgba(255,255,255,.12) inset; }
.btn-secondary { color: var(--white); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.24); }
.btn > * { position: relative; z-index: 1; }

.section {
  padding: 84px 0;
  position: relative;
}
.section-soft {
  background:
    linear-gradient(135deg, rgba(8,10,15,.96), rgba(20,25,35,.96)),
    url("../img/garage-bg.jpg") center / cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(215,25,32,.18), transparent 42%);
  pointer-events: none;
  animation: glow-shift 8s ease-in-out infinite;
}
.section-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  animation: grid-drift 18s linear infinite;
  pointer-events: none;
}
.section-soft > .container { position: relative; }
.section-soft .lead, .section-soft .copy { color: var(--smoke); }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: 0; }
h1 { max-width: 820px; font-size: clamp(44px, 7vw, 82px); }
h2 { max-width: 760px; font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: 22px; }
.lead { max-width: 700px; margin: 22px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.copy { color: var(--muted); }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 70px 0 46px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,10,15,.98) 0%, rgba(8,10,15,.88) 44%, rgba(8,10,15,.42) 100%),
    url("../img/garage-bg.jpg") center / cover no-repeat;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(215,25,32,.82) 58% 59%, transparent 59%),
    linear-gradient(90deg, transparent 0 35%, rgba(255,255,255,.08) 45%, transparent 55%),
    radial-gradient(circle at 74% 18%, rgba(215,25,32,.22), transparent 28%);
  pointer-events: none;
  animation: glow-shift 9s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  right: min(8vw, 110px);
  bottom: -110px;
  width: min(58vw, 820px);
  aspect-ratio: 2 / 1;
  background: url("../img/livefeed-overlay.png") center / contain no-repeat;
  filter: drop-shadow(0 32px 48px rgba(0,0,0,.42));
  opacity: .92;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: center;
}
.hero-grid > * {
  min-width: 0;
}
.hero-copy {
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transform: translateY(18px);
}
body.is-ready .hero-copy {
  opacity: 1;
  transform: translateY(0);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.app-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: #c8d0dc;
  font-weight: 800;
}
.app-ribbon span {
  line-height: 1.2;
}
.app-ribbon strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  background: rgba(215, 25, 32, .16);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  box-shadow: none;
  font-size: 13px;
  letter-spacing: .04em;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}
.hero .lead { color: #d8deea; }
.stat {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  transition: transform .22s var(--ease-out), background .22s ease, border-color .22s ease;
}
.stat:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
}
.stat strong { display: block; font-size: 24px; }
.stat span { color: #c8d0dc; font-size: 14px; font-weight: 700; }

.product-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(31,38,52,.88), rgba(9,12,18,.94));
  color: var(--white);
  border-radius: 8px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.phone-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  position: relative;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(215,25,32,.18);
  filter: blur(4px);
  animation: glow-shift 6.8s ease-in-out infinite;
}

.phone-frame {
  width: min(330px, 82vw);
  aspect-ratio: 1290 / 2796;
  padding: 10px;
  border-radius: 36px;
  background: #05070b;
  box-shadow: 0 34px 90px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.14);
  position: relative;
  overflow: hidden;
  z-index: 2;
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform .18s ease, box-shadow .22s ease;
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.14) 48%, transparent 66%);
  transform: translateX(-140%);
  animation: red-scan 5.8s ease-in-out infinite;
  pointer-events: none;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.phone-caption {
  position: absolute;
  left: -18px;
  bottom: 54px;
  max-width: 230px;
  padding: 14px 16px;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: rgba(8,10,15,.88);
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 3;
  backdrop-filter: blur(16px);
}

.phone-caption strong {
  display: block;
  margin-bottom: 4px;
}

.hero-phone {
  opacity: 0;
  transform: translateY(26px) scale(.96);
  transition: opacity .8s var(--ease-out) .14s, transform .8s var(--ease-out) .14s;
}

body.is-ready .hero-phone {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-phone .phone-frame {
  animation: phone-float 7.2s ease-in-out infinite;
}

.live-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(8,10,15,.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  animation: chip-drift 5.4s ease-in-out infinite;
}

.live-chip span {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(215,25,32,.85);
}

.live-chip span::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(215,25,32,.75);
  border-radius: 50%;
  animation: pulse-ring 1.8s ease-out infinite;
}

.chip-quote { right: -6px; top: 92px; }
.chip-request { left: -28px; top: 210px; animation-delay: .8s; }
.chip-message { right: 8px; bottom: 132px; animation-delay: 1.6s; }

.app-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 34px;
  perspective: 1600px;
}

.app-tour-title {
  max-width: 760px;
}

.app-showcase-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(215,25,32,.1), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(247,248,251,.96));
}

.app-shot {
  border-radius: 18px;
  overflow: hidden;
  background: #05070b;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  aspect-ratio: 1290 / 2796;
  transform: translateY(0) rotateY(0) rotateZ(0);
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out), filter .32s ease;
}

.app-shot:nth-child(1) { transform: translateY(36px) rotateY(14deg) rotateZ(-2deg); }
.app-shot:nth-child(2) { transform: translateY(14px) rotateY(8deg) rotateZ(-1deg); }
.app-shot:nth-child(3) { transform: translateY(-10px) scale(1.035); box-shadow: var(--shadow-deep); }
.app-shot:nth-child(4) { transform: translateY(14px) rotateY(-8deg) rotateZ(1deg); }
.app-shot:nth-child(5) { transform: translateY(36px) rotateY(-14deg) rotateZ(2deg); }

.app-shot:hover {
  transform: translateY(-18px) scale(1.045) rotateY(0) rotateZ(0);
  box-shadow: 0 38px 96px rgba(8,10,15,.3);
  filter: saturate(1.08);
}

.app-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--red);
  pointer-events: none;
}
.panel-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; color: #b8c0ce; font-size: 13px; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px rgba(15,143,100,.18); }
.request-card {
  padding: 16px;
  background: #202633;
  border: 1px solid #343c4c;
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.request-card strong { display: block; margin-bottom: 6px; }
.request-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pill { display: inline-flex; align-items: center; border-radius: 999px; background: #303847; color: #dce3f0; padding: 5px 9px; font-size: 12px; font-weight: 800; }
.quote-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 12px 0; border-top: 1px solid #343c4c; }
.quote-row span { color: #b8c0ce; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  padding: 24px;
  box-shadow: 0 16px 44px rgba(18,21,28,.08);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s ease, background .22s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(215,25,32,.72);
  transform: translateX(-102%);
  transition: transform .28s var(--ease-out);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(215,25,32,.25);
  box-shadow: 0 26px 70px rgba(18,21,28,.16);
}
.card:hover::before {
  transform: translateX(0);
}

.audience-grid {
  align-items: stretch;
}

.audience-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(18,21,28,.08);
  border-top: 6px solid var(--red);
  box-shadow: 0 18px 44px rgba(8,10,15,.22);
}

.audience-card:hover {
  border-top-color: #f23037;
}

.audience-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff1f1;
  color: var(--red-dark);
  font-size: 24px;
}

.audience-card h3 {
  color: var(--ink);
}

.audience-card .copy {
  margin: 0;
  color: #4e5664;
}
.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff1f1, #ffe2e3);
  color: var(--red);
  font-weight: 900;
  margin-bottom: 18px;
  transition: transform .22s var(--ease-out), box-shadow .22s ease;
}
.card:hover .card-icon,
.card:hover .audience-icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 14px 30px rgba(215,25,32,.14);
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
}
.step-num {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.page-hero {
  padding: 92px 0 64px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8,10,15,.98), rgba(8,10,15,.72)),
    url("../img/garage-bg.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(115deg, transparent 0 52%, rgba(215,25,32,.75) 52% 54%, transparent 54%);
  pointer-events: none;
  animation: glow-shift 7s ease-in-out infinite;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: grid-drift 20s linear infinite;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { color: #d8deea; }
.page-hero .eyebrow { color: #ff555b; }

.visual-band {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(8,10,15,.9), rgba(8,10,15,.25)),
    url("../img/livefeed-overlay.png") center / cover no-repeat;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.feature-hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.feature-metric {
  border: 1px solid rgba(255,255,255,.14);
  border-left: 5px solid var(--red);
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(12px);
  transition: transform .22s var(--ease-out), background .22s ease, border-color .22s ease;
}

.feature-metric:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.26);
}

.feature-metric strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.feature-metric span {
  color: var(--smoke);
  font-weight: 800;
}

.feature-showcase {
  background:
    linear-gradient(135deg, rgba(8,10,15,.98), rgba(18,23,32,.96)),
    url("../img/garage-bg.jpg") center / cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.feature-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(215,25,32,.22), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(215,25,32,.15), transparent 30%);
  pointer-events: none;
}

.feature-showcase .container {
  position: relative;
  z-index: 1;
}

.feature-card-dark {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 16px;
  background: rgba(255,255,255,.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
  border-left: 6px solid var(--red);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}

.feature-card-dark h3 {
  color: var(--white);
}

.feature-card-dark .copy {
  color: var(--smoke);
  margin: 0;
}

.feature-card-dark .card-icon {
  background: rgba(215,25,32,.18);
  color: var(--white);
}

.feature-detail {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.feature-detail-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-detail-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(18,21,28,.06);
}

.feature-detail-list strong {
  display: block;
  margin-bottom: 4px;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.list li { padding-left: 28px; position: relative; color: var(--muted); }
.list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.section-soft .list li { color: var(--smoke); }
.solution-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.solution-list::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(215,25,32,.2), rgba(215,25,32,.9), rgba(215,25,32,.2));
}
.solution-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--smoke);
  font-size: 18px;
  position: relative;
}
.solution-list strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(215,25,32,.13), 0 18px 34px rgba(215,25,32,.18);
}
.cta-panel {
  border-left: 14px solid var(--red);
  background: var(--black);
  color: var(--white);
  padding: clamp(34px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.cta-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(215,25,32,.18);
  animation: glow-shift 7s ease-in-out infinite;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 36%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.1), transparent);
  transform: translateX(-120%) skewX(-14deg);
  animation: red-scan 6.5s ease-in-out infinite;
}
.cta-panel > * { position: relative; z-index: 1; }

.faq-item { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-size: 19px; margin-bottom: 8px; }

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}
.video-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 90px rgba(8,10,15,.22);
}

.video-card {
  min-height: 154px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(8,10,15,.96), rgba(30,36,48,.9)),
    radial-gradient(circle at 80% 15%, rgba(215,25,32,.2), transparent 36%);
  color: var(--white);
  border-color: rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}

.video-card .pill {
  align-self: flex-start;
  background: rgba(215,25,32,.18);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}

.video-card h3 {
  align-self: end;
  color: var(--white);
}

.video-play {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(215,25,32,.28);
  transition: transform .22s var(--ease-out), box-shadow .22s ease;
}

.video-play::before {
  content: "";
  display: block;
  margin-left: 3px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid currentColor;
}

.video-card:hover {
  border-color: rgba(215,25,32,.65);
}
.video-card:hover .video-play {
  transform: scale(1.08);
  box-shadow: 0 18px 44px rgba(215,25,32,.38);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(215,25,32,.13);
  pointer-events: none;
}

.form {
  display: grid;
  gap: 14px;
}
.field { display: grid; gap: 6px; }
.field label { font-weight: 800; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--white);
}
.field textarea { min-height: 132px; resize: vertical; }
.form-note { color: var(--muted); font-size: 14px; }

.legal-prose {
  max-width: 920px;
}

.legal-prose h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 24px;
}

.legal-prose h3 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
  font-size: 17px;
}

.legal-prose p {
  margin: 0 0 16px;
}

.legal-prose ul,
.legal-prose ol {
  margin: 0 0 20px 22px;
  padding: 0;
}

.about-story {
  max-width: 920px;
  margin: 0 auto;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(8,10,15,.98), rgba(8,10,15,1)),
    url("../img/garage-bg.jpg") center bottom / cover no-repeat;
  color: #d8deea;
  padding: 46px 0 26px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 62%, rgba(215,25,32,.2) 62% 63%, transparent 63%);
  pointer-events: none;
}
.site-footer > * { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 30px;
}
.footer-logo { width: 172px; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; color: #aeb7c6; }
.footer-links strong { color: var(--white); margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid #2b3340; margin-top: 30px; padding-top: 20px; color: #8f99aa; font-size: 14px; }

[dir="rtl"] .list li { padding-left: 0; padding-right: 28px; }
[dir="rtl"] .list li::before { left: auto; right: 0; }
[dir="rtl"] .step { grid-template-columns: 1fr 56px; }
[dir="rtl"] .step-num { grid-column: 2; grid-row: 1; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--ease-out), transform .72s var(--ease-out), filter .72s var(--ease-out);
  filter: blur(8px);
}

.reveal-scale {
  transform: translateY(22px) scale(.96);
}

.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.app-shot.is-visible:nth-child(1) { transform: translateY(36px) rotateY(14deg) rotateZ(-2deg); }
.app-shot.is-visible:nth-child(2) { transform: translateY(14px) rotateY(8deg) rotateZ(-1deg); }
.app-shot.is-visible:nth-child(3) { transform: translateY(-10px) scale(1.035); }
.app-shot.is-visible:nth-child(4) { transform: translateY(14px) rotateY(-8deg) rotateZ(1deg); }
.app-shot.is-visible:nth-child(5) { transform: translateY(36px) rotateY(-14deg) rotateZ(2deg); }

.app-shot.is-visible:hover {
  transform: translateY(-18px) scale(1.045) rotateY(0) rotateZ(0);
}

[style*="--reveal-delay"] {
  transition-delay: var(--reveal-delay);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal,
  .hero-copy,
  .hero-phone {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .live-chip {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  body::after {
    opacity: .045;
    background-size: 34px 34px;
  }

  .site-header {
    backdrop-filter: blur(10px);
  }

  .nav {
    min-height: 68px;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    width: clamp(136px, 34vw, 168px);
  }

  .nav-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .locale-select {
    width: 74px;
    height: 40px;
    padding: 0 8px;
  }

  .menu-toggle { display: inline-flex; position: relative; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #11151c;
    box-shadow: var(--shadow);
    max-height: min(70vh, 520px);
    overflow-y: auto;
    z-index: 30;
  }
  .nav-links a { padding: 13px 12px; }
  .nav-links a::after { bottom: 6px; left: 12px; right: auto; width: 38px; transform-origin: left; }
  body.menu-open .nav-links { display: flex; }
  .nav-actions .btn { display: none; }
  .hero {
    min-height: auto;
    padding: 58px 0 42px;
  }
  .hero::before {
    animation: none;
    background:
      linear-gradient(115deg, transparent 0 64%, rgba(215,25,32,.5) 64% 65%, transparent 65%),
      radial-gradient(circle at 86% 12%, rgba(215,25,32,.2), transparent 26%);
  }
  .hero::after { opacity: .24; right: -230px; bottom: -70px; width: 760px; }
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid {
    gap: 34px;
  }
  .feature-hero-panel, .feature-detail { grid-template-columns: 1fr; }
  .product-panel { max-width: 520px; }
  .phone-stage {
    min-height: clamp(440px, 82vw, 520px);
    max-width: 560px;
    margin: 0 auto;
    perspective: none;
  }
  .phone-stage::before {
    width: min(76vw, 380px);
    height: min(76vw, 380px);
  }
  .phone-frame {
    width: min(310px, 72vw);
    transform: none;
  }
  .hero-phone .phone-frame {
    animation: phone-float 8s ease-in-out infinite;
  }
  .phone-caption {
    left: 12px;
    right: 12px;
    bottom: 18px;
    max-width: none;
    padding: 12px 14px;
  }
  .app-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    perspective: none;
    gap: 16px;
  }
  .app-shot,
  .app-shot:nth-child(n),
  .app-shot.is-visible:nth-child(n),
  .app-shot.is-visible:hover,
  .app-shot:hover { transform: none; }
  .app-shot {
    box-shadow: 0 18px 44px rgba(8,10,15,.16);
  }
  .live-chip { display: none; }
  .solution-list::before { display: none; }
  .grid-3, .grid-2, .stat-strip { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .page-hero {
    padding: 72px 0 52px;
  }
  .page-hero::after {
    right: -160px;
    width: 70%;
    opacity: .7;
  }
  .cta-panel::after {
    right: -180px;
    bottom: -180px;
  }
}

@media (max-width: 520px) {
  .nav { width: min(1180px, calc(100vw - 24px)); }
  .container { width: min(1180px, calc(100vw - 24px)); }
  .brand img { width: 132px; }
  .locale-select {
    width: 64px;
    min-width: 64px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.8vw, 38px);
    overflow-wrap: normal;
  }
  h2 { font-size: clamp(28px, 8vw, 38px); }
  h3 { font-size: 20px; }
  .lead {
    font-size: 18px;
    margin-top: 16px;
  }
  .section {
    padding: 48px 0;
  }
  .hero {
    padding: 44px 0 34px;
  }
  .hero::after {
    width: 600px;
    right: -270px;
    bottom: -30px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .hero-actions .btn { width: 100%; }
  .app-ribbon {
    gap: 9px;
    margin-top: 18px;
    font-size: 14px;
  }
  .app-ribbon span:first-child {
    flex: 0 0 100%;
  }
  .app-ribbon strong {
    font-size: 12px;
  }
  .stat-strip {
    display: flex;
    gap: 10px;
    margin: 28px -12px 0;
    padding: 0 12px 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .stat {
    flex: 0 0 148px;
    padding: 12px;
    scroll-snap-align: start;
  }
  .stat strong {
    font-size: 18px;
  }
  .stat span {
    font-size: 12px;
  }
  .phone-stage {
    min-height: 0;
  }
  .phone-frame {
    width: min(248px, 68vw);
    border-radius: 32px;
    padding: 8px;
  }
  .phone-frame img {
    border-radius: 24px;
  }
  .phone-frame::after {
    animation: none;
    opacity: .42;
  }
  .phone-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
    margin: 16px auto 0;
  }
  .phone-stage {
    display: grid;
    justify-items: center;
    align-content: center;
  }
  .app-strip {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    margin-left: -12px;
    margin-right: -12px;
    padding: 4px 12px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .app-shot {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: center;
  }
  .grid-3,
  .grid-2 {
    gap: 14px;
  }
  .card {
    padding: 20px;
  }
  .audience-card {
    min-height: 0;
  }
  .feature-card-dark {
    min-height: 0;
  }
  .step {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .step-num {
    width: 40px;
    height: 40px;
  }
  .page-hero {
    padding: 58px 0 42px;
  }
  .page-hero::after {
    right: -220px;
    width: 110%;
    opacity: .45;
  }
  .page-hero::before,
  .section-soft::after {
    animation: none;
    background-size: 34px 34px;
  }
  .section-soft::before,
  .cta-panel::before,
  .cta-panel::after {
    animation: none;
  }
  .feature-metric {
    padding: 18px;
  }
  .feature-detail {
    gap: 28px;
  }
  .solution-list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    font-size: 16px;
  }
  .solution-list strong {
    width: 40px;
    height: 40px;
  }
  .cta-panel {
    border-left-width: 8px;
    padding: 30px 22px;
  }
  .footer-grid {
    gap: 22px;
  }
  .footer-logo {
    width: 150px;
  }
  .reveal,
  .reveal-scale {
    filter: none;
  }
}

@media (max-width: 380px) {
  .nav {
    width: min(1180px, calc(100vw - 18px));
  }
  .container {
    width: min(1180px, calc(100vw - 20px));
  }
  .brand img {
    width: 118px;
  }
  .locale-select {
    width: 58px;
    min-width: 58px;
    font-size: 14px;
  }
  h1 {
    font-size: 31px;
  }
  .phone-frame {
    width: min(270px, 82vw);
  }
}

@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
