/* Shared Auroviq geo lander styles — match main SPA brand */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/playfair-display-regular.woff2') format('woff2');
}

:root {
  --bg: #f7f5f2;
  --white: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --orange: #ea580c;
  --orange-soft: #fff7ed;
  --shadow: 0 20px 50px -28px rgba(15, 23, 42, 0.18);
  --radius: 1.5rem;
  --max: 72rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.shell { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .shell { padding: 0 2rem; } }
@media (min-width: 1280px) { .shell { padding: 0 2.5rem; } }

/* Top bar — matches SPA pill chrome */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 245, 242, 0.85);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--orange);
}
.nav-pill {
  display: none;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--line);
}
@media (min-width: 900px) { .nav-pill { display: flex; } }
.nav-pill a {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}
.nav-pill a:hover { background: #f8fafc; color: var(--ink); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.nav-right a:hover { color: var(--orange); }

/* Hero */
.hero {
  padding: 3.5rem 0 2.5rem;
}
@media (min-width: 768px) { .hero { padding: 5rem 0 3.5rem; } }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: 16ch;
  color: var(--ink);
}
.hero .lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 1.75rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(15, 23, 42, 0.55);
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.1rem 1rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.stat b {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.stat span { font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* Sections */
.section { padding: 1rem 0 3rem; }
.section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.section-head .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.65rem;
}
.section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.section-head p { margin: 0; color: var(--muted); }

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}
.card p, .card li { color: #475569; font-size: 0.95rem; margin: 0; }
.card ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.card li { margin-bottom: 0.35rem; }

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) { .panel { padding: 2.25rem 2rem; } }
.panel h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.panel .block { margin: 0 0 1.75rem; }
.panel .block:last-child { margin-bottom: 0; }
.panel .block p { color: #334155; margin: 0 0 0.65rem; }
.panel .block ul { margin: 0.4rem 0 0; padding-left: 1.15rem; color: #334155; }
.panel .block li { margin-bottom: 0.35rem; }

.split {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.2fr 1fr; align-items: start; }
}

.faq { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.faq:first-of-type { border-top: 0; padding-top: 0; }
.faq h3 { margin: 0 0 0.4rem; font-size: 1.05rem; font-weight: 700; }
.faq p { margin: 0; color: #475569; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.85rem; }
.chip {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
}
.chip:hover { border-color: #fdba74; background: var(--orange-soft); color: #9a3412; }

/* CTA band — like main site footer hero */
.cta-band {
  margin: 2rem 0 3rem;
  padding: 2.5rem 1.5rem;
  border-radius: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .cta-band {
    grid-template-columns: 1.4fr auto;
    align-items: center;
    padding: 3rem 2.5rem;
  }
}
.cta-band h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}
.cta-band h2 em {
  font-style: italic;
  color: #94a3b8;
  font-weight: 400;
}
.cta-band p { margin: 0; color: var(--muted); max-width: 36rem; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  color: #94a3b8;
  font-size: 0.9rem;
}
.site-footer a { color: var(--ink); font-weight: 600; }
.site-footer .foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 0.75rem;
}
.site-footer .foot-links a { font-weight: 500; color: #64748b; }
.site-footer .foot-links a:hover { color: var(--orange); }

.table-wrap { overflow-x: auto; margin: 0.75rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
th, td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; }
