:root {
  --bg: #06111f;
  --bg-soft: #0b1730;
  --surface: rgba(14, 26, 48, 0.72);
  --surface-strong: #0f1f39;
  --card: rgba(255, 255, 255, 0.06);
  --text: #e9f2ff;
  --muted: #9fb4d4;
  --line: rgba(255,255,255,0.10);
  --accent: #3da5ff;
  --accent-2: #7bd7ff;
  --accent-3: #4f6fff;
  --success: #13d78a;
  --danger: #ff5e7e;
  --shadow: 0 30px 90px rgba(0,0,0,0.35);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(61,165,255,0.22), transparent 26%),
    radial-gradient(circle at 90% 5%, rgba(123,215,255,0.16), transparent 22%),
    radial-gradient(circle at 65% 70%, rgba(79,111,255,0.12), transparent 20%),
    linear-gradient(180deg, #07101d 0%, #08111f 25%, #081321 55%, #08111b 100%);
  color: var(--text);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--muted); line-height: 1.7; }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; }

.page-wrap {
  overflow: clip;
  position: relative;
}

.blur-orb,
.blur-orb::after,
.blur-orb::before {
  position: absolute;
  pointer-events: none;
  filter: blur(60px);
  opacity: .55;
  z-index: 0;
}
.blur-orb.one {
  width: 320px; height: 320px;
  background: rgba(61,165,255,0.18);
  top: 80px; right: -80px;
  border-radius: 50%;
}
.blur-orb.two {
  width: 260px; height: 260px;
  background: rgba(79,111,255,0.18);
  top: 420px; left: -80px;
  border-radius: 50%;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(5, 13, 24, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(61,165,255,.35), rgba(79,111,255,.28));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 14px 34px rgba(61,165,255,.18);
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.04));
}
.brand-mark span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 900;
}
.brand-meta small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nav-links a {
  color: #d9e6fb;
  font-weight: 600;
  font-size: 14px;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: white;
  box-shadow: 0 18px 42px rgba(61,165,255,.28);
}
.btn-primary:hover { box-shadow: 0 22px 52px rgba(61,165,255,.36); }
.btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}
.btn-link {
  color: white;
  background: transparent;
  padding-inline: 0;
  min-height: auto;
}

.hero {
  padding: 76px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #d6e7ff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7bd7ff, #3da5ff);
  box-shadow: 0 0 0 6px rgba(61,165,255,.12);
}
.hero-copy h1 {
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.06em;
  max-width: 11ch;
}
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #8ad8ff 45%, #6a7fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .lede {
  font-size: 18px;
  margin: 22px 0 30px;
  max-width: 60ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 30px;
}
.proof-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.proof-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.proof-card span {
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 700px;
}
.device-stage {
  position: absolute;
  inset: 0;
  perspective: 1200px;
}
.device-shell {
  position: absolute;
  right: 0;
  top: 20px;
  width: min(100%, 560px);
  aspect-ratio: 11 / 13;
  transform: rotateY(-18deg) rotateX(8deg);
  transform-style: preserve-3d;
}
.glass-panel,
.info-float,
.map-float,
.small-float,
.metric-card,
.service-card,
.timeline-step,
.story-card,
.pricing-card,
.download-panel,
.cta-panel,
.content-card,
.contact-card,
.legal-card,
.form-card,
.footer-card,
.stat-strip {
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.device-phone {
  position: absolute;
  right: 40px;
  top: 0;
  width: 320px;
  height: 650px;
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  box-shadow: 0 40px 100px rgba(0,0,0,0.44);
}
.device-phone::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 30px;
  background: linear-gradient(180deg, #0d1e36 0%, #0c1728 100%);
  border: 1px solid rgba(255,255,255,.08);
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 28px;
  border-radius: 0 0 20px 20px;
  background: #091220;
  z-index: 5;
}
.phone-screen {
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  overflow: hidden;
  z-index: 2;
  background: linear-gradient(180deg, #0c1830 0%, #07111d 100%);
}
.screen-map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 22%, rgba(61,165,255,.22), transparent 18%),
    radial-gradient(circle at 72% 64%, rgba(123,215,255,.18), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, #0c1a31, #0a1424);
  background-size: auto, auto, auto, 42px 42px, 42px 42px, auto;
}
.route-line {
  position: absolute;
  left: 18%;
  top: 18%;
  width: 64%;
  height: 54%;
  border: 3px dashed rgba(123, 215, 255, 0.72);
  border-radius: 42px 60px 50px 64px;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(12deg);
}
.route-point {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  border: 5px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(61,165,255,.12);
}
.route-point.start { left: 22%; top: 18%; }
.route-point.end { right: 18%; bottom: 28%; border-color: var(--success); box-shadow: 0 0 0 8px rgba(19,215,138,.12); }
.screen-topbar {
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  font-size: 13px;
  color: #d5e7ff;
}
.screen-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}
.screen-bottom {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(8,17,31,.86);
  border: 1px solid rgba(255,255,255,.08);
  z-index: 4;
}
.screen-bottom h4 { font-size: 20px; margin-bottom: 6px; }
.screen-bottom p { font-size: 14px; margin: 0 0 14px; }
.screen-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.screen-meta div {
  padding: 10px;
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  text-align: center;
}
.screen-meta strong { display: block; font-size: 15px; color: white; }
.screen-meta span { font-size: 12px; color: var(--muted); }

.info-float {
  position: absolute;
  left: 0;
  top: 60px;
  width: 260px;
  padding: 18px;
  border-radius: 24px;
  transform: rotate(-6deg);
}
.info-float strong,
.small-float strong,
.map-float strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge-row span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #dcecff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,.08);
}
.map-float {
  position: absolute;
  left: 50px;
  bottom: 80px;
  width: 280px;
  padding: 18px;
  border-radius: 24px;
  transform: rotate(3deg);
}
.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.map-grid div {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
}
.small-float {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 210px;
  padding: 16px;
  border-radius: 22px;
  transform: rotate(-8deg);
}
.small-float .bar {
  width: 100%; height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.small-float .bar::after {
  content: "";
  display: block;
  width: 72%; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

section {
  padding: 52px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.05em;
  max-width: 12ch;
}
.section-head p { max-width: 60ch; margin: 0; }

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.logo-pill,
.stat-strip {
  padding: 18px 20px;
  border-radius: 20px;
}
.logo-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #e8f4ff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.logo-pill small { color: var(--muted); display: block; margin-top: 4px; }
.mono-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
}

.services-grid,
.features-grid,
.stats-grid,
.stories-grid,
.pricing-grid,
.links-grid,
.legal-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}
.services-grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.service-card {
  padding: 22px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,165,255,.24), transparent 70%);
}
.service-card .icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  background: linear-gradient(145deg, rgba(61,165,255,.22), rgba(79,111,255,.18));
  border: 1px solid rgba(255,255,255,.10);
  font-size: 22px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { margin: 0 0 18px; font-size: 15px; }
.service-card a { font-weight: 700; color: #fff; }

.stats-grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.metric-card {
  padding: 28px;
  border-radius: 24px;
}
.metric-card strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}
.metric-card span { color: var(--muted); font-size: 15px; }

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.story-card {
  padding: 26px;
  border-radius: 28px;
  min-height: 100%;
}
.story-card .title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.story-card .title h3 { font-size: 28px; letter-spacing: -0.04em; }
.list-check {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.list-check div {
  display: flex;
  gap: 12px;
  align-items: start;
}
.list-check i {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(19,215,138,.18);
  color: #9df0cb;
  font-style: normal;
  font-size: 12px;
  margin-top: 2px;
}
.timeline {
  display: grid;
  gap: 14px;
}
.timeline-step {
  padding: 18px 18px 18px 68px;
  border-radius: 22px;
  position: relative;
}
.timeline-step .num {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px; height: 34px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: white;
  font-weight: 800;
}
.timeline-step strong { display: block; margin-bottom: 8px; }

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.pricing-card {
  padding: 28px;
  border-radius: 28px;
  position: relative;
}
.pricing-card.featured {
  outline: 2px solid rgba(61,165,255,.35);
  transform: translateY(-6px);
}
.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(61,165,255,.14);
  color: #dceeff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 10px 0 10px;
}
.price strong {
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.price span { color: var(--muted); }
.pricing-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
}
.pricing-list div {
  display: flex;
  gap: 10px;
  align-items: start;
}

.download-panel,
.cta-panel,
.footer-card,
.contact-card,
.content-card,
.form-card,
.legal-card {
  border-radius: 30px;
  padding: 28px;
}
.download-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.download-mock {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.download-mini {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,.08);
}
.download-mini strong { display: block; margin-bottom: 8px; }
.qr-placeholder {
  margin-top: 18px;
  width: 88px; height: 88px;
  border-radius: 18px;
  background:
    linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.08) 75%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.cta-panel h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.05em; }

.footer {
  padding: 26px 0 42px;
}
.footer-card {
  display: grid;
  gap: 22px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}
.footer h4 { margin-bottom: 12px; }
.footer-linklist {
  display: grid;
  gap: 10px;
}
.footer-linklist a,
.footer-linklist span { color: var(--muted); }
.footer-linklist a:hover { color: white; }

.page-hero {
  padding: 70px 0 18px;
}
.page-hero .content-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 62px); letter-spacing: -0.05em; }
.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.highlights div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.highlights strong { display: block; margin-bottom: 6px; }

.links-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.content-card h2,
.legal-card h2 { font-size: 30px; margin-bottom: 14px; letter-spacing: -0.04em; }
.content-card h3,
.legal-card h3 { font-size: 22px; margin: 24px 0 10px; }
.content-card ul,
.legal-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}
.contact-card .contact-item,
.contact-card .meta-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.contact-stack {
  display: grid;
  gap: 12px;
}
.form-card form {
  display: grid;
  gap: 14px;
}
.input,
textarea.input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: white;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
.input:focus { border-color: rgba(61,165,255,.55); box-shadow: 0 0 0 4px rgba(61,165,255,.12); }
textarea.input { min-height: 150px; resize: vertical; }
.note {
  color: var(--muted);
  font-size: 14px;
}

.legal-grid {
  grid-template-columns: 280px 1fr;
}
.legal-nav {
  position: sticky;
  top: 100px;
}
.legal-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
}
.legal-nav a:hover,
.legal-nav a.active {
  background: rgba(255,255,255,.06);
  color: white;
}
.legal-card {
  margin-bottom: 18px;
}

.notice-box {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(19,215,138,.08);
  border: 1px solid rgba(19,215,138,.18);
}
.notice-box.danger {
  background: rgba(255,94,126,.08);
  border-color: rgba(255,94,126,.18);
}

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: white;
}
.mobile-panel { display: none; }

@media (max-width: 1120px) {
  .hero-grid,
  .story-layout,
  .download-panel,
  .page-hero .content-card,
  .footer-top,
  .cta-panel,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .stats-grid,
  .pricing-grid,
  .logo-row,
  .links-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .hero-visual { min-height: 620px; }
  .device-shell { margin-inline: auto; left: 0; }
  .section-head { flex-direction: column; align-items: start; }
}

@media (max-width: 840px) {
  .nav-links,
  .nav-cta .btn-secondary,
  .nav-cta .btn-primary {
    display: none;
  }
  .menu-toggle { display: inline-grid; place-items: center; }
  .mobile-panel {
    display: none;
    position: fixed;
    inset: 82px 16px auto 16px;
    z-index: 40;
    border-radius: 24px;
    padding: 16px;
    background: rgba(8,17,30,.96);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
  }
  .mobile-panel.open { display: grid; gap: 12px; }
  .mobile-panel a,
  .mobile-panel .btn { width: 100%; }
  .hero { padding-top: 36px; }
  .hero-copy h1 { max-width: 100%; }
  .hero-proof,
  .services-grid,
  .stats-grid,
  .pricing-grid,
  .logo-row,
  .links-grid,
  .highlights {
    grid-template-columns: 1fr;
  }
  .device-phone {
    width: 270px;
    height: 560px;
    right: 16px;
  }
  .info-float,
  .map-float,
  .small-float {
    position: absolute;
    width: 220px;
  }
  .info-float { left: -4px; top: 12px; }
  .map-float { left: 8px; bottom: 40px; }
  .small-float { right: 0; bottom: 0; }
  .hero-visual { min-height: 620px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .nav { min-height: 74px; }
  .brand-meta small { display: none; }
  .eyebrow { margin-bottom: 16px; }
  .hero-copy .lede { font-size: 16px; }
  .content-card,
  .contact-card,
  .form-card,
  .legal-card,
  .footer-card,
  .cta-panel,
  .download-panel,
  .story-card,
  .service-card,
  .pricing-card,
  .metric-card {
    padding: 22px;
  }
  .device-phone {
    width: 240px; height: 510px;
  }
  .hero-visual { min-height: 540px; }
  .screen-bottom { padding: 12px; }
  .screen-meta { grid-template-columns: 1fr; }
}
