:root {
  color-scheme: dark;
  --canvas: #050709;
  --surface: #0d1115;
  --surface-raised: #14191f;
  --ink: #f7f9fb;
  --muted: #98a2ad;
  --line: rgba(255, 255, 255, 0.1);
  --drive: #0a7bff;
  --drive-secondary: #00c6ff;
  --motion: #a6ff00;
  --motion-secondary: #72e33a;
  --accent: var(--drive-secondary);
  --accent-rgb: 0, 198, 255;
  --accent-ink: #ffffff;
  --page-max: 1240px;
  --text-max: 720px;
  --header-height: 78px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.drive-page,
body.drive-legal {
  --canvas: #050b14;
  --surface: #101b2a;
  --surface-raised: #17283c;
  --accent: var(--drive-secondary);
  --accent-rgb: 0, 198, 255;
  --accent-ink: #ffffff;
}

body.motion-page,
body.motion-legal {
  --canvas: #090b08;
  --surface: #151814;
  --surface-raised: #20251e;
  --accent: var(--motion);
  --accent-rgb: 166, 255, 0;
  --accent-ink: #071000;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

::selection {
  background: rgba(var(--accent-rgb), 0.28);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #050709;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 9, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(calc(100% - 40px), var(--page-max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 740;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand__mark {
  width: 31px;
  height: 25px;
  color: var(--accent);
}

.brand__mark path:last-child {
  opacity: 0.58;
}

.header-tools,
.nav-links,
.language-switch {
  display: flex;
  align-items: center;
}

.header-tools {
  gap: 34px;
}

.nav-links {
  gap: 30px;
}

.nav-links a,
.footer-links a {
  color: #c7cdd4;
  font-size: 15px;
  font-weight: 570;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.language-switch button {
  min-width: 38px;
  min-height: 32px;
  padding: 4px 8px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
  transition: background 160ms ease, color 160ms ease;
}

.language-switch button:hover {
  color: var(--ink);
}

.language-switch button[aria-pressed="true"] {
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

[data-lang-content][hidden] {
  display: none !important;
}

html[data-language="en"] [data-lang-content="tr"],
html[data-language="tr"] [data-lang-content="en"] {
  display: none !important;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 47%, rgba(10, 123, 255, 0.12), transparent 32%),
    radial-gradient(circle at 87% 48%, rgba(166, 255, 0, 0.1), transparent 32%);
}

.home-hero::before,
.product-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image: repeating-radial-gradient(ellipse at 8% 50%, transparent 0 34px, rgba(0, 198, 255, 0.13) 35px 36px);
  mask-image: linear-gradient(90deg, #000, transparent 37%);
}

.home-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image: repeating-radial-gradient(ellipse at 92% 50%, transparent 0 34px, rgba(166, 255, 0, 0.14) 35px 36px);
  mask-image: linear-gradient(270deg, #000, transparent 37%);
}

.home-hero__inner,
.section-inner,
.product-hero__inner,
.legal-shell {
  width: min(calc(100% - 40px), var(--page-max));
  margin: 0 auto;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 10vw, 132px) 0 88px;
}

.hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1,
.product-hero h1,
.legal-hero h1,
.contact-main h1 {
  margin: 0;
  text-wrap: balance;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 760;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.hero-copy p {
  max-width: 670px;
  margin: 28px auto 0;
  color: #b6bdc6;
  text-wrap: balance;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.route-bridge {
  width: 100%;
  height: auto;
  margin: 50px auto 18px;
  overflow: visible;
}

.route-bridge__track {
  fill: none;
  stroke: url(#route-gradient);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  filter: drop-shadow(0 0 12px rgba(0, 198, 255, 0.25));
}

.product-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 2px;
}

.product-card {
  position: relative;
  min-height: 290px;
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(14, 19, 24, 0.78);
  text-decoration: none;
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.product-card::after {
  position: absolute;
  inset: auto -15% -55% 30%;
  height: 220px;
  border-radius: 50%;
  background: var(--card-glow);
  filter: blur(70px);
  opacity: 0.12;
  pointer-events: none;
  content: "";
  transition: opacity 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border);
  background: rgba(17, 24, 31, 0.92);
}

.product-card:hover::after {
  opacity: 0.24;
}

.product-card--drive {
  --card-accent: var(--drive-secondary);
  --card-border: rgba(0, 198, 255, 0.55);
  --card-glow: var(--drive);
  background: linear-gradient(145deg, rgba(8, 27, 49, 0.9), rgba(9, 15, 22, 0.9));
}

.product-card--motion {
  --card-accent: var(--motion);
  --card-border: rgba(166, 255, 0, 0.5);
  --card-glow: var(--motion);
  background: linear-gradient(145deg, rgba(22, 28, 19, 0.9), rgba(11, 15, 11, 0.9));
}

.app-icon {
  width: 132px;
  aspect-ratio: 1;
  border-radius: 29%;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
}

.product-card h2 {
  margin: 0;
  color: var(--card-accent);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.product-card p {
  margin: 14px 0 25px;
  color: #b8c0c9;
  font-size: 17px;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--card-accent, var(--accent));
  font-size: 15px;
  font-weight: 720;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

a:hover .text-link svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.privacy-band {
  position: relative;
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080b0e;
}

.privacy-band__content {
  display: grid;
  grid-template-columns: auto minmax(0, 600px) auto;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.privacy-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.06);
}

.privacy-icon svg {
  width: 42px;
  height: 42px;
}

.privacy-band h2,
.feature-copy h2,
.privacy-panel h2,
.legal-content h2,
.contact-panel h2 {
  margin: 0;
  text-wrap: balance;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.privacy-band p,
.feature-copy p,
.privacy-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.button,
.button-secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 15px;
  font-weight: 720;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(var(--accent-rgb), 0.48);
  color: var(--accent);
}

.site-footer {
  padding: 38px 0;
  background: #050709;
}

.site-footer__inner {
  width: min(calc(100% - 40px), var(--page-max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer .brand {
  font-size: 20px;
}

.site-footer .brand__mark {
  width: 26px;
  height: 21px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 26px;
}

.copyright {
  margin: 0;
  color: #727c87;
  font-size: 13px;
}

.product-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 77% 50%, rgba(var(--accent-rgb), 0.16), transparent 29%),
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.025), transparent 65%);
}

.motion-page .product-hero::before {
  background-image: repeating-radial-gradient(ellipse at 100% 50%, transparent 0 42px, rgba(166, 255, 0, 0.12) 43px 44px);
  mask-image: linear-gradient(270deg, #000, transparent 60%);
}

.product-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding: 72px 0 84px;
}

.product-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 21px;
  font-weight: 720;
}

.product-lockup .app-icon {
  width: 72px;
  border-radius: 22%;
}

.product-hero h1 {
  max-width: 700px;
  font-size: clamp(55px, 6.6vw, 92px);
}

.product-hero__copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #b5bec8;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

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

.phone-preview {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 0.53;
  justify-self: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 58px;
  background: #020407;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.52), 0 0 80px rgba(var(--accent-rgb), 0.1);
}

.phone-preview::before {
  position: absolute;
  z-index: 3;
  top: 19px;
  left: 50%;
  width: 34%;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 18px;
  background: #000;
  content: "";
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 47px;
  background: var(--canvas);
}

.phone-bar {
  height: 78px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 24px 15px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 680;
}

.phone-bar span:last-child {
  color: var(--accent);
}

.mode-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 18px 16px 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  font-size: 11px;
  text-align: center;
}

.mode-control span {
  padding: 8px 4px;
  border-radius: 9px;
  color: var(--muted);
}

.mode-control span:first-child {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 760;
}

.map-preview {
  position: relative;
  min-height: 330px;
  margin: 18px 16px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background:
    linear-gradient(28deg, transparent 46%, rgba(255, 255, 255, 0.035) 47% 49%, transparent 50%),
    linear-gradient(-33deg, transparent 46%, rgba(255, 255, 255, 0.025) 47% 49%, transparent 50%),
    var(--surface);
  background-size: 78px 58px, 94px 72px, auto;
}

.map-preview svg {
  position: absolute;
  inset: 12% 9%;
  width: 82%;
  height: 76%;
}

.map-preview path {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(var(--accent-rgb), 0.4));
}

.motion-page .map-preview path {
  stroke: url(#motion-route-gradient);
}

.phone-metric {
  margin: 14px 16px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.phone-metric small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--accent);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 37px;
  line-height: 1.15;
}

.phone-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 13px 8px 24px;
  border-top: 1px solid var(--line);
  background: rgba(8, 11, 14, 0.96);
  color: #737d86;
  font-size: 9px;
  text-align: center;
}

.phone-tabs span:first-child {
  color: var(--accent);
}

.feature-flow {
  overflow: hidden;
}

.feature-section {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.feature-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.014);
}

.feature-grid {
  width: min(calc(100% - 40px), 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(48px, 9vw, 128px);
}

.feature-section:nth-child(even) .feature-copy {
  order: 2;
}

.feature-number {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.feature-copy p {
  max-width: 520px;
}

.feature-visual {
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.1), transparent 48%),
    var(--surface);
}

.feature-visual svg {
  width: 78%;
  height: auto;
}

.feature-visual .route-line {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.metric-rail {
  width: min(86%, 440px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--line);
}

.metric-rail div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: var(--surface-raised);
}

.metric-rail strong {
  color: var(--accent);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.metric-rail span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.history-list {
  width: min(86%, 480px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface-raised);
}

.history-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
}

.history-row:last-child {
  border: 0;
}

.history-dot {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  font-weight: 820;
}

.history-row strong,
.history-row small {
  display: block;
}

.history-row strong {
  font-size: 14px;
}

.history-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.history-route {
  width: 58px;
  height: 25px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}

.share-control {
  width: min(86%, 470px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-raised);
}

.share-preview {
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--canvas);
}

.share-preview svg {
  width: 82%;
  height: 78%;
}

.share-options {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.toggle {
  width: 43px;
  height: 24px;
  padding: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.toggle::after {
  width: 18px;
  height: 18px;
  display: block;
  margin-left: auto;
  border-radius: 50%;
  background: var(--accent-ink);
  content: "";
}

.privacy-panel-wrap {
  padding: 110px 0;
}

.privacy-panel {
  width: min(calc(100% - 40px), 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.07), var(--surface));
}

.privacy-panel .privacy-icon {
  width: 110px;
  height: 110px;
}

.privacy-panel__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.legal-main,
.contact-main,
.overview-main {
  background:
    radial-gradient(circle at 82% 2%, rgba(var(--accent-rgb), 0.12), transparent 32rem),
    var(--canvas);
}

.overview-shell {
  width: min(calc(100% - 40px), 1040px);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: 92px 0 120px;
}

.overview-shell > h1 {
  max-width: 820px;
  margin: 0;
  text-wrap: balance;
  font-size: clamp(48px, 6.4vw, 78px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.overview-shell > p {
  max-width: 690px;
  margin: 24px 0 48px;
  color: #b6bec7;
  font-size: 20px;
}

.overview-shell .product-card {
  min-height: 260px;
}

.legal-shell {
  max-width: 860px;
  padding: 78px 0 110px;
}

.legal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.legal-breadcrumb svg {
  width: 17px;
  height: 17px;
}

.legal-hero {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1,
.contact-main h1 {
  max-width: 760px;
  font-size: clamp(45px, 6vw, 74px);
}

.legal-hero__product {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: var(--accent);
  font-weight: 720;
}

.legal-hero__product .app-icon {
  width: 48px;
  border-radius: 23%;
}

.legal-intro {
  max-width: var(--text-max);
  margin: 24px 0 0;
  color: #b6bec7;
  font-size: 20px;
}

.legal-meta {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.summary-item {
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
}

.summary-item strong,
.summary-item span {
  display: block;
}

.summary-item strong {
  color: var(--accent);
  font-size: 15px;
}

.summary-item span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.legal-content {
  max-width: var(--text-max);
  padding-top: 12px;
}

.legal-content section {
  padding-top: 50px;
}

.legal-content h2 {
  font-size: 26px;
}

.legal-content p,
.legal-content li {
  color: #b8c0c9;
}

.legal-content p {
  margin: 14px 0 0;
}

.legal-content ul {
  margin: 18px 0 0;
  padding-left: 23px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a,
.contact-panel a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

.legal-contact {
  margin-top: 58px;
  padding: 30px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 21px;
  background: rgba(var(--accent-rgb), 0.06);
}

.legal-contact h2 {
  font-size: 24px;
}

.contact-shell {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding: 88px 0 120px;
}

.contact-main h1 {
  margin-bottom: 28px;
}

.contact-lead {
  max-width: 720px;
  margin: 0;
  color: #b6bec7;
  font-size: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  margin-top: 56px;
}

.contact-panel {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--surface);
}

.contact-panel h2 {
  font-size: 28px;
}

.contact-panel p {
  margin: 14px 0 0;
  color: var(--muted);
}

.email-link {
  display: inline-block;
  margin-top: 25px;
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 730;
  letter-spacing: -0.03em;
}

.contact-note {
  margin-top: 24px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.06);
  color: #b8c0c9;
  font-size: 14px;
}

.contact-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #b8c0c9;
}

.contact-list li:last-child {
  border: 0;
}

.not-found {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 60px 20px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(80px, 16vw, 180px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.not-found h2 {
  margin: 24px 0 0;
  font-size: 30px;
}

.not-found p {
  margin: 10px 0 26px;
  color: var(--muted);
}

@media (max-width: 940px) {
  .nav-links {
    gap: 18px;
  }

  .header-tools {
    gap: 18px;
  }

  .product-card {
    grid-template-columns: 95px 1fr;
    gap: 24px;
    padding: 30px;
  }

  .product-card .app-icon {
    width: 95px;
  }

  .product-hero__inner {
    grid-template-columns: 1fr minmax(330px, 0.72fr);
    gap: 40px;
  }

  .privacy-panel {
    grid-template-columns: 82px 1fr;
  }

  .privacy-panel .privacy-icon {
    width: 82px;
    height: 82px;
  }

  .privacy-panel__actions {
    grid-column: 2;
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header__inner,
  .home-hero__inner,
  .section-inner,
  .product-hero__inner,
  .legal-shell,
  .site-footer__inner,
  .contact-shell,
  .overview-shell {
    width: min(calc(100% - 28px), var(--page-max));
  }

  .menu-toggle {
    display: flex;
  }

  .header-tools {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 9, 0.98);
  }

  .site-header[data-menu-open="true"] .header-tools {
    display: flex;
  }

  .nav-links {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
    font-size: 17px;
  }

  .language-switch {
    align-self: flex-start;
  }

  .hero-copy h1 {
    font-size: clamp(45px, 13vw, 70px);
  }

  .home-hero__inner {
    padding-top: 70px;
  }

  .route-bridge {
    width: 150%;
    margin-left: -25%;
  }

  .product-pair,
  .feature-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 250px;
  }

  .privacy-band__content {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .privacy-band__content .button-secondary {
    margin-top: 4px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .product-hero,
  .product-hero__inner {
    min-height: 0;
  }

  .product-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .product-hero__copy {
    text-align: left;
  }

  .phone-preview {
    width: min(100%, 350px);
  }

  .feature-section {
    min-height: 0;
    padding: 78px 0;
  }

  .feature-section:nth-child(even) .feature-copy {
    order: initial;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .privacy-panel__actions {
    grid-column: auto;
    flex-direction: column;
  }

  .policy-summary {
    grid-template-columns: 1fr;
  }

  .summary-item {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .brand {
    font-size: 22px;
  }

  .header-tools {
    flex-direction: column;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-card .app-icon {
    width: 82px;
  }

  .privacy-band,
  .privacy-panel-wrap {
    padding: 72px 0;
  }

  .product-hero h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .phone-preview {
    border-radius: 48px;
  }

  .phone-screen {
    border-radius: 38px;
  }

  .map-preview {
    min-height: 280px;
  }

  .metric-rail {
    width: 90%;
    grid-template-columns: 1fr;
  }

  .metric-rail div {
    min-height: 92px;
  }

  .legal-shell,
  .contact-shell,
  .overview-shell {
    padding-top: 54px;
  }

  .legal-hero h1,
  .contact-main h1 {
    font-size: clamp(40px, 12vw, 57px);
  }

  .legal-intro,
  .contact-lead {
    font-size: 18px;
  }

  .legal-contact,
  .contact-panel {
    padding: 24px;
  }

  .email-link {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
