/* ==========================================================================
   Map Data — marketing site styles
   ========================================================================== */

:root {
  --bg:            #0b1120;
  --bg-soft:       #111a2e;
  --surface:       #16213a;
  --surface-2:     #1c2a47;
  --border:        rgba(148, 163, 184, 0.16);
  --text:          #e8edf6;
  --text-dim:      #9fb0c9;
  --brand:         #38bdf8;
  --brand-2:       #6366f1;
  --brand-3:       #22d3ee;
  --accent:        #f472b6;
  --radius:        18px;
  --radius-sm:     12px;
  --shadow:        0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --maxw:          1120px;
  --font:          -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                   Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Decorative background glow ------------------------------------------------ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 20% 0%, rgba(56, 189, 248, 0.14), transparent 70%),
    radial-gradient(50% 45% at 90% 10%, rgba(99, 102, 241, 0.16), transparent 70%),
    radial-gradient(60% 60% at 60% 100%, rgba(34, 211, 238, 0.08), transparent 70%);
}

/* Header -------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  background: rgba(11, 17, 32, 0.72);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand .logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px -6px rgba(56, 189, 248, 0.7);
}
.brand .logo svg { width: 20px; height: 20px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--text-dim); font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--text); text-decoration: none; }

/* Buttons ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  color: #06121f;
  background: linear-gradient(135deg, var(--brand-3), var(--brand));
  box-shadow: 0 14px 34px -12px rgba(56, 189, 248, 0.75);
}
.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

/* Hero ---------------------------------------------------------------------- */
.hero { padding: 84px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-3);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 22px 0 18px;
  letter-spacing: -0.02em;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--brand-3), var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 34ch;
  margin: 0 0 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 0.86rem; color: var(--text-dim); }

.hero-visual { position: relative; }
.hero-visual img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-visual .phone {
  position: absolute;
  width: 34%;
  right: -6%;
  bottom: -10%;
  border-radius: 26px;
  border: 5px solid #0b1120;
  box-shadow: var(--shadow);
}

/* Section scaffolding ------------------------------------------------------- */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 10px 0 12px;
}
.section-head p { color: var(--text-dim); font-size: 1.08rem; margin: 0; }
.kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Feature grid -------------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.18s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(56, 189, 248, 0.4); }
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(56, 189, 248, 0.12);
  color: var(--brand-3);
  margin-bottom: 16px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin: 0 0 8px; font-size: 1.14rem; }
.card p { margin: 0; color: var(--text-dim); font-size: 0.97rem; }

/* Showcase ------------------------------------------------------------------ */
.showcase { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.shot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}
.shot-row:last-child { margin-bottom: 0; }
.shot-row.reverse .shot-text { order: 2; }
.shot-figure img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.shot-text h3 { font-size: 1.5rem; letter-spacing: -0.01em; margin: 0 0 12px; }
.shot-text p { color: var(--text-dim); margin: 0 0 18px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.pill-list li {
  font-size: 0.85rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.phone-gallery figure { margin: 0; text-align: center; }
.phone-gallery img {
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}
.phone-gallery figcaption { color: var(--text-dim); font-size: 0.92rem; }

/* Export formats ------------------------------------------------------------ */
.formats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.format {
  text-align: center;
  padding: 26px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.format .tag {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, var(--brand-3), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.format p { color: var(--text-dim); font-size: 0.9rem; margin: 8px 0 0; }

/* CTA band ------------------------------------------------------------------ */
.cta-band { text-align: center; }
.cta-inner {
  background: linear-gradient(135deg, rgba(56,189,248,0.14), rgba(99,102,241,0.14));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 32px;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin: 0 0 12px; }
.cta-inner p { color: var(--text-dim); margin: 0 auto 26px; max-width: 46ch; }

/* Footer -------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
  color: var(--text-dim);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); font-size: 0.95rem; }
.footer-links a:hover { color: var(--text); text-decoration: none; }
.site-footer .copy { margin-top: 26px; font-size: 0.86rem; }

/* Content pages (support / privacy) ---------------------------------------- */
.page { padding: 72px 0 40px; }
.page .container { max-width: 820px; }
.page h1 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.02em; margin: 0 0 8px; }
.page .updated { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 40px; }
.page h2 {
  font-size: 1.4rem;
  margin: 40px 0 12px;
  padding-top: 8px;
}
.page h3 { font-size: 1.1rem; margin: 26px 0 8px; }
.page p, .page li { color: var(--text-dim); }
.page ul { padding-left: 20px; }
.page li { margin-bottom: 8px; }
.page a { font-weight: 500; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 24px 0;
}
.contact-card p { margin: 6px 0; color: var(--text); }
.contact-card .label { color: var(--text-dim); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.faq { border-top: 1px solid var(--border); }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 4px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 14px 0 4px; }

/* Responsive ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero p.lead { max-width: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .formats { grid-template-columns: repeat(2, 1fr); }
  .shot-row { grid-template-columns: 1fr; gap: 24px; }
  .shot-row.reverse .shot-text { order: 0; }
  .phone-gallery { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .hero-visual .phone { position: static; width: 60%; margin: 18px auto 0; }
}
@media (max-width: 560px) {
  .nav { display: none; }
  .features { grid-template-columns: 1fr; }
  .formats { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
}
