:root {
  --bg: #060606;
  --bg-2: #111111;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --pink: #fadadd;
  --pink-strong: #f2b6c1;
  --text: #f5f3ef;
  --muted: rgba(245, 243, 239, 0.72);
  --soft: rgba(245, 243, 239, 0.5);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(250, 218, 221, 0.12), transparent 25%),
    linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
.brand {
  font-family: "Bodoni Moda", serif;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 9, 9, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 180px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 0;
  border: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--pink), #f7d5d6);
  color: #120d0d;
  box-shadow: none;
}

.button-ghost {
  background: transparent;
  border: none;
  color: var(--text);
}

.hero {
  padding: 72px 0 42px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 218, 221, 0.04), transparent 38%, rgba(250, 218, 221, 0.04));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.82;
  max-width: 630px;
  color: #f5f2ee;
}

.hero-copy h1 span {
  color: var(--pink);
  font-style: italic;
}

.lead {
  max-width: 600px;
  margin-top: 26px;
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-meta li {
  position: relative;
  padding-left: 18px;
}

.hero-meta li::before {
  content: "•";
  color: var(--pink);
  position: absolute;
  left: 0;
  top: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 620px;
}

.visual-orbit {
  position: absolute;
  border: none;
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-two {
  width: 620px;
  height: 620px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-style: dashed;
  opacity: 0.5;
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 410px);
  padding: 16px;
  border-radius: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: none;
  box-shadow: var(--shadow);
  transform: rotate(6deg);
}

.phone-app-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
}

.status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  margin-bottom: 14px;
}

.map-panel {
  position: relative;
  height: 360px;
  border-radius: 0;
  background: linear-gradient(180deg, #0d1a1d, #172b2f);
  overflow: hidden;
  border: none;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.pin {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.04);
}

.pin-green {
  background: #90e4a2;
}

.pin-pink {
  background: var(--pink);
}

.pin-red {
  background: #ff7b7b;
}

.mini-station {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: none;
  border-radius: 0;
  padding: 16px 14px;
}

.mini-station strong {
  display: block;
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.mini-station small {
  color: var(--muted);
}

.av-status {
  color: #9af0b9;
  background: rgba(154, 240, 185, 0.12);
  border: none;
  border-radius: 0;
  padding: 0.45rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 42px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 0.96;
  max-width: 760px;
}

.narrow {
  max-width: 620px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: none;
  border-radius: 0;
  padding: 22px 20px 20px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}

.feature-card.highlight {
  background: linear-gradient(180deg, rgba(250, 218, 221, 0.08), rgba(255,255,255,0.02));
  border: none;
}

.feature-index {
  display: inline-block;
  color: var(--pink);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.product-band {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.product-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
}

.product-copy p,
.coverage-copy p,
.process-step p,
.site-footer p,
.site-footer li,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.stat-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-box {
  background: rgba(250, 218, 221, 0.03);
  border: none;
  border-radius: 0;
  padding: 26px 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--pink);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-box span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  background: rgba(255, 255, 255, 0.02);
  border: none;
  border-radius: 0;
  padding: 24px 20px 22px;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(250, 218, 221, 0.08);
  border: none;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 18px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.coverage-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
}

.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.coverage-pills span {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: 0;
  border: none;
  background: rgba(250, 218, 221, 0.06);
  color: var(--pink);
  font-weight: 700;
}

.cta-panel {
  padding-top: 0;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(250, 218, 221, 0.1), rgba(255,255,255,0.02));
  border: none;
  border-radius: 0;
  padding: 30px 28px;
}

.cta-wrap h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.site-footer {
  border-top: 1px solid transparent;
  background: rgba(0, 0, 0, 0.3);
  padding: 34px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.copyright-row {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid transparent;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 0 90px;
}

.page-header {
  margin-bottom: 28px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 0.96;
}

.legal-card {
  background: rgba(255,255,255,0.02);
  border: none;
  border-radius: 0;
  padding: 32px 24px;
}

.legal-card h2,
.legal-card h3 {
  margin-top: 28px;
}

.legal-card ul {
  padding-left: 18px;
}

@media (max-width: 980px) {
  .hero-grid,
  .product-layout,
  .coverage-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .feature-grid,
  .stat-stack {
    grid-template-columns: 1fr;
  }

  .cta-wrap,
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .cta-row .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .phone-shell {
    transform: none;
  }
}
