/* JumboMap landing page — brand-matched to the app design system. */
:root {
  --bg: #0e1119;
  --bg-2: #0b0e15;
  --surface: #171b26;
  --surface-2: #1c212e;
  --surface-hi: #222838;
  --line: #252b3a;
  --line-soft: #1e2432;
  --text: #eaedf3;
  --text-2: #a5aec0;
  --text-3: #6c7689;
  --blue: #2e86e8;
  --blue-soft: #3b93f0;
  --green: #6dbe2e;
  --green-soft: #82d13f;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1100px 700px at 80% -10%, rgba(46, 134, 232, 0.12), transparent 60%),
    radial-gradient(900px 620px at 5% 8%, rgba(109, 190, 46, 0.09), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.serif {
  font-family: 'Source Serif 4', Georgia, serif;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  box-shadow: 0 8px 24px rgba(46, 134, 232, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text-2);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--blue-soft);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  background: rgba(14, 17, 25, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.site-header > * {
  max-width: none;
}

.site-header.visible {
  transform: translateY(0);
  opacity: 1;
}

/* the header's inner content is constrained; center it on wide screens */
.site-header .brand { margin-right: 0; }
.site-header .nav { margin-left: auto; }
.site-header .btn { margin-left: 0; }


.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-elephant {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.wordmark {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.wordmark.small {
  font-size: 17px;
}

.wordmark .b {
  color: var(--blue-soft);
}

.wordmark .g {
  color: var(--green-soft);
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 15px;
  color: var(--text-2);
}

.nav a:hover {
  color: var(--text);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 24px 90px;
  text-align: center;
  overflow: hidden;
}

.hero-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.hero-elephant {
  height: 152px;
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
}

.hero-wordmark {
  font-weight: 800;
  font-size: clamp(64px, 11vw, 112px);
  letter-spacing: -0.03em;
}

.hero-wordmark .b { color: var(--blue-soft); }
.hero-wordmark .g { color: var(--green-soft); }

@media (max-width: 560px) {
  /* Stack the wordmark under the elephant head so the mark fits narrow screens. */
  .hero-brand { flex-direction: column; gap: 12px; margin-bottom: 30px; }
  .hero-elephant { height: 96px; }
  .hero-wordmark { font-size: clamp(44px, 13vw, 64px); }
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: clamp(38px, 6.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.lede {
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-2);
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--text-3);
}

.hero-glow {
  position: absolute;
  inset: auto 0 -40% 0;
  height: 60%;
  background: radial-gradient(600px 200px at 50% 100%, rgba(46, 134, 232, 0.14), transparent 70%);
  pointer-events: none;
}

/* ---------- generic sections ---------- */
.band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(23, 27, 38, 0.4);
}

.band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px;
}

.narrow {
  max-width: 860px;
}

.band-inner h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.2;
}

.prose {
  font-size: 18px;
  color: var(--text-2);
  margin: 0;
}

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 84px 24px;
}

.section.alt {
  max-width: none;
  background: rgba(11, 14, 21, 0.5);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section.alt > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 600;
  margin: 10px 0 0;
  line-height: 1.15;
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  margin-bottom: 18px;
}

.step h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.step p {
  color: var(--text-2);
  font-size: 15.5px;
  margin: 0;
}

/* ---------- features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.feature:hover {
  border-color: rgba(46, 134, 232, 0.4);
  transform: translateY(-2px);
}

.feature-ico {
  font-size: 26px;
  display: block;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 17px;
  margin: 0 0 6px;
}

.feature p {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- pricing ---------- */
.price-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.price-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(46, 134, 232, 0.5), rgba(109, 190, 46, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-top {
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 22px;
}

.price-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.price-amount {
  margin: 10px 0 6px;
}

.price-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 52px;
  font-weight: 600;
}

.price-per {
  font-size: 17px;
  color: var(--text-3);
  margin-left: 6px;
}

.price-sub {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0;
}

.price-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 15px;
}

.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-soft);
  font-weight: 700;
}

.price-foot {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  margin: 14px 0 0;
}

/* ---------- waitlist ---------- */
.waitlist {
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(46, 134, 232, 0.12), transparent 70%),
    rgba(11, 14, 21, 0.5);
}

.waitlist-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 84px 24px;
  text-align: center;
}

.waitlist-inner h2 {
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 600;
  margin: 0 0 14px;
}

.waitlist-inner > p {
  color: var(--text-2);
  font-size: 17px;
  margin: 0 auto 28px;
  max-width: 480px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 18px;
  outline: none;
}

.waitlist-form input:focus {
  border-color: rgba(46, 134, 232, 0.55);
  box-shadow: 0 0 0 3px rgba(46, 134, 232, 0.12);
}

.waitlist-form input::placeholder {
  color: var(--text-3);
}

.waitlist-inner > .waitlist-msg {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-soft);
}

.waitlist-msg.error {
  color: #e5844d;
}

.waitlist-inner > .waitlist-fine {
  margin: 32px auto 0;
  font-size: 12.5px;
  color: var(--text-3);
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--text-2);
}

.footer-nav a:hover {
  color: var(--text);
}

.copyright {
  margin: 0 0 0 auto;
  font-size: 13.5px;
  color: var(--text-3);
}

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .steps,
  .features {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
}

@media (max-width: 560px) {
  .waitlist-form {
    flex-direction: column;
  }
  .waitlist-form input,
  .waitlist-form .btn {
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .copyright {
    margin: 0;
  }
}
