* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f0e6;
  --surface: #fffdf8;
  --surface-soft: #ede5d4;
  --surface-strong: #586646;
  --text: #2f2a22;
  --muted: #6f665a;
  --line: #d9cdb9;
  --primary: #73844f;
  --primary-dark: #5d6c40;
  --accent: #9a7b50;
  --accent-soft: #f0e6d6;
  --warning: #b08a48;
  --shadow: 0 10px 24px rgba(73, 64, 47, 0.08);
  --radius: 10px;
  --radius-sm: 6px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.eyebrow::before {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: var(--accent);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h1,
.section-heading h2 {
  margin: 0.65rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.section-heading p,
p.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.topbar {
  background: var(--surface-strong);
  color: #dce7f7;
  font-size: 0.92rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.7rem 0;
}

.topbar strong {
  color: #fff;
}

.waitlist-banner {
  background: #d6b26a;
  color: #2f2a22;
  border-bottom: 1px solid rgba(47, 42, 34, 0.16);
}

.waitlist-banner-inner {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0;
  font-weight: 600;
  text-align: center;
  flex-wrap: wrap;
}

.waitlist-banner a {
  color: #2f2a22;
  text-decoration: underline;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(216, 224, 234, 0.8);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
}

.button-group {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  padding: 0.95rem 1.35rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 8px 18px rgba(93, 108, 64, 0.18);
}

.nav-links a.button,
.nav-links a.button:hover,
.nav-links a.button.active {
  color: #fff;
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.button-ghost {
  color: var(--primary-dark);
  padding-inline: 0;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-card,
.card,
.stat-card,
.quote-card,
.timeline-card,
.table-card,
.form-card,
.contact-card,
.packet-card {
  background: var(--surface);
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(2rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: auto -60px -70px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21, 94, 239, 0.18), rgba(21, 94, 239, 0));
}

.hero h1,
.page-hero h1 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 1.5rem;
}

.hero-points,
.list-clean,
.checklist {
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.hero-points li,
.checklist li,
.list-clean li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.hero-points li::before,
.checklist li::before,
.list-clean li::before {
  content: '•';
  color: var(--accent);
  font-weight: 800;
}

.hero-aside {
  display: grid;
  gap: 1.25rem;
}

.phone-box {
  background: var(--surface);
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

.phone-box h2 {
  margin: 0.6rem 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.phone-box p {
  margin: 0;
  color: var(--muted);
}

.quick-call {
  display: inline-flex;
  margin: 1rem 0 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(93, 108, 64, 0.18);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.3rem;
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.card,
.timeline-card,
.table-card,
.quote-card,
.packet-card,
.contact-card,
.form-card {
  padding: 1.6rem;
}

.card h3,
.timeline-card h3,
.table-card h3,
.packet-card h3,
.contact-card h3,
.form-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.card p,
.timeline-card p,
.table-card p,
.quote-card p,
.packet-card p,
.contact-card p,
.form-card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.band {
  background: linear-gradient(180deg, #6a7754, #596646);
  color: #fff;
}

.band .section-heading p,
.band p,
.band li,
.band .card p {
  color: rgba(255, 255, 255, 0.78);
}

.band .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.band .eyebrow::before {
  background: #d8c39b;
}

.band .button-secondary,
.cta-banner .button-secondary {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

.band .button-ghost,
.cta-banner .button-ghost {
  color: #fff;
}

.band .button-ghost:hover,
.cta-banner .button-ghost:hover {
  color: #fff;
}

.band .card,
.band .quote-card,
.band .timeline-card,
.band .table-card,
.band .packet-card,
.band .contact-card,
.band .form-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.highlight {
  background: linear-gradient(180deg, rgba(154, 123, 80, 0.12), rgba(115, 132, 79, 0.08));
  border: 1px solid rgba(21, 94, 239, 0.12);
}

.quote-card blockquote {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: var(--text);
}

.quote-card .quote-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.band .quote-card blockquote {
  color: #fff;
}

.band .quote-card .quote-meta {
  color: rgba(255, 255, 255, 0.68);
}

.audience-grid .card {
  min-height: 100%;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 0.95rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.pricing-table th {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-step span {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.cta-banner {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #73844f, #5d6c40);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
}

form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-result {
  display: none;
  border-radius: 8px;
  padding: 1rem 1.15rem;
  background: var(--surface-soft);
  border: 1px solid rgba(21, 94, 239, 0.15);
}

.form-result.active {
  display: block;
}

.kicker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.kicker-item {
  padding: 1rem 1.15rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(216, 224, 234, 0.95);
}

.kicker-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

footer {
  background: #4f5d3d;
  color: #f7f3ea;
  padding: 4rem 0 2rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

footer p,
footer li,
footer a {
  color: rgba(247, 243, 234, 0.82);
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(247, 243, 234, 0.14);
  font-size: 0.92rem;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 760px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  background: var(--surface-soft);
  border-radius: 999px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.callout {
  padding: 1.3rem 1.4rem;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.route-list span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-weight: 600;
}

.table-card .small-note,
.packet-card .small-note,
.contact-card .small-note {
  margin-top: 0.8rem;
}

.mobile-callbar {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .form-grid,
  .stats-row,
  .kicker-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(248, 251, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  body.homepage {
    padding-bottom: 4.75rem;
  }

  .hero,
  .page-hero,
  .section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .hero-card,
  .card,
  .quote-card,
  .timeline-card,
  .table-card,
  .contact-card,
  .packet-card,
  .form-card,
  .cta-banner {
    padding: 1.35rem;
  }

  .navbar {
    padding: 0.85rem 0;
  }

  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .waitlist-banner-inner {
    justify-content: flex-start;
    text-align: left;
  }

  .quick-call {
    width: 100%;
    justify-content: center;
  }

  .mobile-callbar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1rem;
    border-radius: 8px;
    background: var(--primary-dark);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(47, 42, 34, 0.2);
  }
}

/* Rebuild additions: show the sticky mobile call bar on every page, not just home */
@media (max-width: 640px) {
  body.has-callbar {
    padding-bottom: 4.75rem;
  }
}

/* Waitlist form: keep label text + marker/hint on one line, and bottom-align
   the paired inputs so a two-line label never knocks its row-mate out of line. */
#waitlist-form .form-grid {
  align-items: end;
}

#waitlist-form label {
  gap: 0.45rem;
}

#waitlist-form .field-label {
  display: block;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

#waitlist-form .field-hint {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.85rem;
}

#waitlist-form .req {
  color: var(--accent);
  font-weight: 700;
}

#waitlist-form input,
#waitlist-form select,
#waitlist-form textarea {
  min-height: 3.1rem;
}

#waitlist-form textarea {
  min-height: 150px;
}

#waitlist-form .field-error {
  color: var(--warning);
  font-size: 0.85rem;
}

/* Honeypot spam field: present in the DOM for bots, off-screen for humans. */
#waitlist-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
