/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --orange: #E8721E;
  --orange-soft: #F4A35E;
  --orange-tint: #FCE9D7;
  --teal: #1FA0B8;
  --teal-deep: #157A8E;
  --teal-tint: #DBEFF3;
  --navy: #143049;
  --navy-soft: #1F4061;
  --navy-tint: #E5ECF3;

  /* Neutrals (warm) */
  --bg: #FBFAF7;
  --bg-alt: #F4F1EB;
  --bg-card: #FFFFFF;
  --ink: #0F1B26;
  --ink-2: #44546A;
  --ink-3: #7C8A9C;
  --line: #E6E1D7;
  --line-2: #D8D2C5;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(20,48,73,.05), 0 1px 0 rgba(20,48,73,.03);
  --shadow-md: 0 8px 28px -12px rgba(20,48,73,.18), 0 2px 6px -2px rgba(20,48,73,.08);
  --shadow-lg: 0 32px 80px -32px rgba(20,48,73,.30), 0 12px 28px -16px rgba(20,48,73,.12);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--orange);
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}

p { margin: 0; color: var(--ink-2); }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand img {
  width: 28px;
  height: 28px;
}
.brand-mark { color: var(--ink); }
.brand-mark span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-end { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: inline-flex;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink-3);
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.15s ease;
}
.lang-switch button.active {
  background: var(--ink);
  color: var(--bg);
}

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 18px -8px rgba(232,114,30,0.5);
}
.btn-primary:hover { background: #d76817; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--bg-alt); }
.btn-dark {
  background: var(--ink);
  color: var(--bg);
}
.btn-dark:hover { background: var(--navy); }

.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-top: 22px;
  margin-bottom: 26px;
  font-weight: 600;
}
.hero h1 .accent-water { color: var(--teal); font-style: italic; font-family: "Source Serif Pro", "Source Serif 4", Georgia, serif; font-weight: 500; }
.hero h1 .accent-iot { color: var(--orange); font-style: italic; font-family: "Source Serif Pro", "Source Serif 4", Georgia, serif; font-weight: 500; }
.hero .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 520px;
}
.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  gap: 12px;
}
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.hero-stat .value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin-left: auto;
}
.hero-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #F9D8B8 0%, var(--orange-tint) 35%, var(--bg-alt) 75%);
}
.hero-rings {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 38px, rgba(20,48,73,0.06) 39px, transparent 40px);
}
.hero-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-md);
  padding: 14px 16px;
  font-size: 13px;
}
.hero-card .row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}
.hero-card.alarm {
  top: 12%;
  right: -8%;
  width: 240px;
}
.hero-card.alarm .dot { background: var(--orange); }
.hero-card.alarm .title-row { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.hero-card.alarm .meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }

.hero-card.reading {
  bottom: 14%;
  left: -10%;
  width: 260px;
}
.hero-card.reading .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-3); text-transform: uppercase; margin-bottom: 6px; }
.hero-card.reading .value { font-size: 22px; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; }
.hero-card.reading .sub { font-size: 12px; color: var(--ink-2); margin-top: 4px; }
.hero-card.reading .spark { display: flex; align-items: flex-end; gap: 3px; margin-top: 12px; height: 28px; }
.hero-card.reading .bar { width: 6px; background: var(--teal); border-radius: 2px; opacity: 0.85; }

.hero-card.gateway {
  bottom: 38%;
  right: -4%;
  width: 200px;
}
.hero-card.gateway .label { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-card.gateway .name { font-weight: 600; color: var(--navy); margin-top: 4px; }
.hero-card.gateway .pill { display: inline-block; margin-top: 8px; font-family: var(--font-mono); font-size: 11px; padding: 3px 8px; background: var(--teal-tint); color: var(--teal-deep); border-radius: 999px; }

.hero-logo-mark {
  position: absolute;
  width: 48%;
  inset: 26% 0 0 26%;
  filter: drop-shadow(0 12px 30px rgba(232, 114, 30, 0.25));
}

@media (max-width: 980px) {
  .hero { padding: 64px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { width: 100%; margin: 0 auto; max-width: 380px; }
  .hero-card.alarm { right: -4%; }
  .hero-card.reading { left: -4%; }
}

@media (max-width: 540px) {
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .hero-card.alarm, .hero-card.gateway { width: 180px; }
  .hero-card.reading { width: 200px; }
}

/* ---------- Section ---------- */
section { padding: 96px 0; position: relative; }
section.tight { padding: 72px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: end;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-top: 16px;
}
.section-head p { font-size: 17px; color: var(--ink-2); max-width: 460px; }

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}

/* ---------- Company / pillars ---------- */
.section-company {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.pillar .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-size: 19px;
  margin-top: 28px;
  margin-bottom: 8px;
}
.pillar p { font-size: 14px; line-height: 1.55; }
.pillar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0.15);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar:hover::after { transform: scaleX(1); }

@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Product / surfaces ---------- */
.product-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.surface-tabs {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 32px;
  gap: 4px;
  width: fit-content;
}
.surface-tabs button {
  border: 0;
  background: transparent;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 500;
  transition: all 0.15s ease;
}
.surface-tabs button.active {
  background: var(--navy);
  color: #fff;
}
.surface-tabs button:hover:not(.active) { color: var(--ink); }

.surface {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.surface-info .name {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 18px 0 8px;
}
.surface-info .os {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.surface-info .desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 420px;
}

.surface-shot {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.surface-shot.desktop, .surface-shot.web {
  aspect-ratio: 16 / 10;
}
.surface-shot.mobile {
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-xl);
  border-width: 8px;
  border-color: var(--ink);
}
.surface-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 980px) {
  .surface { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Capabilities ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.cap {
  background: var(--bg-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  transition: background 0.18s ease;
}
.cap:hover { background: #fff; }
.cap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cap .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--orange-tint);
  padding: 4px 10px;
  border-radius: 999px;
}
.cap .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.cap h3 { font-size: 22px; letter-spacing: -0.02em; line-height: 1.2; }
.cap p { font-size: 14px; line-height: 1.6; }

@media (max-width: 980px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cap-grid { grid-template-columns: 1fr; } }

/* ---------- Expertise ---------- */
.domains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.domain {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.domain:hover { border-color: var(--orange); transform: translateY(-2px); }
.domain-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.domain .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-deep);
  background: var(--teal-tint);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.domain .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.domain h3 { font-size: 24px; letter-spacing: -0.02em; line-height: 1.2; margin-top: 4px; }
.domain p { font-size: 14px; line-height: 1.6; }
.domain-bullets {
  list-style: none;
  margin: 8px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.domain-bullets li {
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.domain-bullets .tick {
  font-family: var(--font-mono);
  color: var(--orange);
  font-weight: 600;
}

@media (max-width: 980px) { .domains { grid-template-columns: 1fr; } }

.rf-callout {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: #E7EEF4;
  position: relative;
  overflow: hidden;
}
.rf-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(31, 160, 184, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.rf-text { position: relative; }
.rf-text .eyebrow { color: rgba(231, 238, 244, 0.6); }
.rf-text .eyebrow::before { background: var(--teal); }
.rf-text h3 {
  color: #fff;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 16px 0 16px;
}
.rf-text p { color: rgba(231, 238, 244, 0.8); font-size: 15px; line-height: 1.65; }
.rf-chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rf-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(231, 238, 244, 0.2);
  border-radius: 999px;
  color: rgba(231, 238, 244, 0.85);
}
.rf-shot {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid rgba(231, 238, 244, 0.1);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}
.rf-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 980px) {
  .rf-callout { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ---------- MBox3 ---------- */
.section-mbox {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mbox-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.mbox-device {
  position: sticky;
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-rings {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    transparent 0,
    transparent 28px,
    rgba(31, 160, 184, 0.08) 29px,
    transparent 30px
  );
  z-index: 0;
}
.mbox-photo-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  padding: 0;
  background: transparent;
}
.mbox-photo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(20, 48, 73, 0.18));
}

.mbox-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mbox-openness {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-m);
  padding: 28px 28px;
}
.mbox-openness-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.mbox-openness .badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--orange-tint);
  color: var(--orange);
  border-radius: 999px;
  font-weight: 500;
}
.mbox-openness h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}
.mbox-openness p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.mbox-chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mbox-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--bg);
}
.mbox-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.mbox-feature {
  background: var(--bg-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}
.mbox-feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.mbox-feature h3 { font-size: 18px; letter-spacing: -0.01em; }
.mbox-feature p { font-size: 14px; line-height: 1.55; }

.mbox-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.mbox-spec {
  background: var(--bg-card);
  padding: 18px 20px;
}
.mbox-spec .spec-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.mbox-spec .spec-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 980px) {
  .mbox-grid { grid-template-columns: 1fr; gap: 40px; }
  .mbox-device { position: relative; top: auto; aspect-ratio: auto; padding: 32px 0; }
}
@media (max-width: 600px) {
  .mbox-features { grid-template-columns: 1fr; }
  .mbox-specs { grid-template-columns: 1fr 1fr; }
}

/* ---------- Roadmap ---------- */
.section-roadmap {
  background: var(--navy);
  color: #E7EEF4;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}
.section-roadmap h2, .section-roadmap h3 { color: #fff; }
.section-roadmap p { color: rgba(231, 238, 244, 0.78); }
.section-roadmap .eyebrow { color: rgba(231, 238, 244, 0.6); }
.section-roadmap .eyebrow::before { background: var(--orange-soft); }

.road-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.road {
  display: grid;
  grid-template-columns: 110px 180px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: baseline;
  transition: padding 0.2s ease;
}
.road:hover { padding-left: 12px; }
.road .phase {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.road .phase.water { color: #8FCBD9; }
.road .phase.ops { color: var(--orange-soft); }
.road .phase.industry { color: #C5A8E0; }
.road .phase.productivity { color: #FFD89C; }
.road .phase.reporting { color: #A6D9C2; }
.road .phase.default { color: rgba(231, 238, 244, 0.6); }
.road h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0;
}
.road p { font-size: 14px; line-height: 1.6; }

@media (max-width: 820px) {
  .road { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .road:hover { padding-left: 0; }
}

/* ---------- Contact ---------- */
.contact-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--orange-tint) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,114,30,0.18) 0%, transparent 70%);
  right: -120px;
  top: -120px;
}
.contact-card .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-card h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 16px 0 16px;
}
.contact-card p { font-size: 16px; max-width: 440px; }
.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-cta .btn { justify-content: center; }
.contact-cta .hint {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .contact-card { padding: 40px 28px; }
  .contact-card .inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.footer-brand .brand img { width: 32px; height: 32px; }
.footer-brand p { font-size: 14px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  padding: 4px 0;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ---------- Misc ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fade-in 0.5s ease forwards;
}
@keyframes fade-in { to { opacity: 1; transform: none; } }


/* ===== Multi-page additions ===== */

/* Nav dropdown */
.nav-links a.active { color: var(--ink); }
.nav-dd { position: relative; }
.nav-dd-btn {
  background: none;
  border: 0;
  font: inherit;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.15s ease;
}
.nav-dd-btn:hover, .nav-dd-btn.active { color: var(--ink); }
.nav-dd-btn .caret { font-size: 10px; opacity: 0.6; }
.nav-dd-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: 0 20px 50px -10px rgba(20, 48, 73, 0.18), 0 4px 12px -4px rgba(20, 48, 73, 0.08);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 100;
}
.nav-dd.open .nav-dd-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.12s ease;
}
.nav-dd-menu a:hover { background: var(--bg-alt); color: var(--ink); }
.nav-dd-menu a.active { background: var(--bg-alt); }
.nav-dd-menu .dd-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.nav-dd-menu .dd-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* Products preview (home) */
.section-products {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--ink-3);
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -20px rgba(20, 48, 73, 0.14);
}
.product-card--mbox::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.product-card--ws::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
}
.pc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.pc-tag {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pc-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pc-visual {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  aspect-ratio: 16 / 9;
  overflow: visible;
}
.pc-visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pc-visual--shot {
  padding: 0;
  background: #0F1B26;
}
.pc-visual--shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.product-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.pc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pc-bullets li {
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pc-bullets .tick {
  font-family: var(--font-mono);
  color: var(--orange);
  font-weight: 500;
  flex-shrink: 0;
}
.product-card--ws .pc-bullets .tick { color: var(--teal); }
.pc-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
}
.pc-cta .arrow {
  transition: transform 0.18s ease;
}
.product-card:hover .pc-cta .arrow {
  transform: translateX(4px);
}

/* Page hero (product pages) */
.page-hero {
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero--mbox {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.page-hero--ws {
  background: linear-gradient(180deg, #F4FAFC 0%, var(--bg-alt) 100%);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.back-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.15s ease;
}
.back-link:hover { color: var(--orange); }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 8px 0 24px;
}
.page-hero .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: 32px;
}
.page-hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}
.page-hero-visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(20, 48, 73, 0.18));
}
.page-hero-visual--ws {
  padding: 0 !important;
  background: transparent !important;
  aspect-ratio: auto !important;
  display: block !important;
  overflow: visible !important;
  width: 100%;
}
.page-hero-visual--ws .ws-diagram {
  width: 100%;
}

/* WaySense stacked hero: text on top, full-width animation below */
.page-hero--stacked .ws-hero-text {
  max-width: 720px;
}
.page-hero--stacked .ws-hero-anim {
  margin-top: 56px;
  width: 100%;
}
.page-hero--stacked .ws-hero-anim .ws-diagram {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}
.page-hero--stacked .ws-hero-anim .ws-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Openness full-width */
.section-openness { padding: 80px 0; }
.mbox-openness--full {
  padding: 40px;
}
.mbox-openness--full h2 {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.mbox-openness--full p {
  font-size: 17px;
  max-width: 720px;
}

/* Features full-width */
.section-features { padding: 0 0 80px; }
.mbox-features--full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Specs section */
.section-specs {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mbox-specs--full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--bg);
  overflow: hidden;
}
.mbox-specs--full .mbox-spec {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.mbox-specs--full .mbox-spec:nth-child(3n) { border-right: 0; }

/* History timeline */
.section-history {
  padding: 80px 0;
}
.history-inner {
  text-align: center;
}
.history-inner .eyebrow {
  display: block;
  margin-bottom: 32px;
}
.history-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.history-line::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.history-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.history-year {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.history-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--ink-3);
}
.history-step--current .history-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 6px var(--orange-tint);
}
.history-step--active .history-dot {
  background: var(--ink-2);
  border-color: var(--ink-2);
}
.history-step--deprecated .history-dot {
  opacity: 0.5;
}
.history-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.history-step--deprecated .history-label,
.history-step--deprecated .history-year {
  opacity: 0.55;
}
.history-step--current .history-label {
  color: var(--orange);
  font-weight: 600;}

/* Responsive */
@media (max-width: 980px) {
  .product-cards { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .mbox-features--full { grid-template-columns: 1fr; }
  .mbox-specs--full { grid-template-columns: repeat(2, 1fr); }
  .mbox-specs--full .mbox-spec:nth-child(3n) { border-right: 1px solid var(--line); }
  .mbox-specs--full .mbox-spec:nth-child(2n) { border-right: 0; }
  .nav-dd-menu { left: 0; transform: translateX(0) translateY(-4px); }
  .nav-dd.open .nav-dd-menu { transform: translateX(0) translateY(0); }
}
@media (max-width: 600px) {
  .mbox-specs--full { grid-template-columns: 1fr; }
  .mbox-specs--full .mbox-spec { border-right: 0 !important; }
  .history-line { grid-template-columns: 1fr; gap: 32px; }
  .history-line::before { display: none; }
}

/* ---------- Legal page ---------- */
.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.footer-bottom-links a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.legal-hero {
  padding: 80px 0 56px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.legal-hero-inner {
  max-width: 820px;
}
.legal-hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 20px;
}
.legal-hero .lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 720px;
  text-wrap: pretty;
}

.legal-body {
  padding: 72px 0 96px;
}
.legal-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 96px;
  font-family: var(--font-mono);
}
.legal-toc-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-toc a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.45;
  font-family: var(--font-sans);
  transition: color 0.15s;
}
.legal-toc a:hover { color: var(--orange); }
.legal-toc-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.legal-meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.legal-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.legal-section {
  scroll-margin-top: 96px;
}
.legal-section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.legal-section h2 {
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 600;
}
.legal-section p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  text-wrap: pretty;
  margin: 0;
}
.legal-dl {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.legal-dl-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.legal-dl-row dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  align-self: center;
}
.legal-dl-row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-1);
  font-weight: 500;
}

@media (max-width: 980px) {
  .legal-grid { grid-template-columns: 1fr; gap: 48px; }
  .legal-toc { position: relative; top: auto; }
  .legal-toc ol { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
  .legal-content { gap: 48px; }
}
@media (max-width: 600px) {
  .legal-toc ol { grid-template-columns: 1fr; }
  .legal-dl-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .legal-body { padding: 56px 0 72px; }
}

.history-thumb {
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  padding: 8px;
}
.history-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(20, 48, 73, 0.18));
  transition: transform 0.4s ease;
}
.history-step:hover .history-thumb img {
  transform: scale(1.05);
}
.history-step--deprecated .history-thumb img {
  opacity: 0.55;
  filter: grayscale(0.4) drop-shadow(0 6px 10px rgba(20, 48, 73, 0.12));
}
@media (max-width: 760px) {
  .history-thumb { width: 110px; height: 110px; }
}


/* ---------- Contact page ---------- */
.page-hero--narrow {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  padding: 64px 0 56px;
}
.page-hero--narrow .container { max-width: 920px; }
.page-hero--narrow h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 8px 0 16px;
}
.page-hero-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
}

.contact-grid-section { padding: 56px 0 96px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.contact-main {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-cta-large {
  font-size: 16px;
  padding: 16px 28px;
}
.contact-hint {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 460px;
}
.contact-blocks {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  padding-top: 32px;
}
.contact-block { display: grid; gap: 6px; }
.contact-block-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.contact-block-value {
  font-size: 16px;
  color: var(--ink);
  font-style: normal;
  line-height: 1.55;
}
.contact-block address.contact-block-value strong { font-weight: 600; }
.contact-link { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-2); }
.contact-link:hover { color: var(--orange); border-color: var(--orange); }
.contact-block-link {
  font-size: 13px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  margin-top: 4px;
  width: fit-content;
}
.contact-block-link:hover { text-decoration: underline; }

.contact-aside { display: grid; gap: 24px; }
.contact-aside-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  display: grid;
  gap: 14px;
}
.contact-audiences {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 10px;
}
.contact-audiences li {
  font-size: 14.5px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.45;
}
.contact-audiences li::before {
  content: "→";
  font-family: var(--font-mono);
  color: var(--orange);
  font-size: 12px;
  flex-shrink: 0;
}

.contact-aside-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-m);
  overflow: hidden;
  background:
    linear-gradient(135deg, #F4F1EB 0%, #ECE5D5 100%);
  border: 1px solid var(--line);
}
.contact-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,27,38,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,27,38,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.contact-aside-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(31,160,184,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 20% at 30% 30%, rgba(31,160,184,0.12) 0%, transparent 70%);
}
.contact-map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  filter: drop-shadow(0 6px 10px rgba(15,27,38,0.25));
}
.contact-map-label {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 8px 14px;
  display: grid;
  gap: 2px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  z-index: 2;
}
.contact-map-region {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-main { padding: 28px; }
}

/* Glimpse gallery */
.section-glimpse { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.glimpse-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.glimpse-shot {
  background: #0d1b2a;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(15,32,52,0.35);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glimpse-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.glimpse-card figcaption {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
  padding-left: 4px;
}
@media (max-width: 800px) {
  .glimpse-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* WaySense hero diagram */
.ws-diagram {
  width: 100%;
  background: linear-gradient(180deg, #f7fcfd 0%, #eef7fa 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 30px 60px -40px rgba(15,32,52,0.25);
}
.ws-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .ws-diagram { padding: 10px; }
}
