/* ============================================
   THE WAYPOINTER COLLECTIVE — Design System
   ============================================ */

/* Variables */
:root {
  --teal:        #1B617A;
  --teal-dark:   #154f63;
  --teal-light:  #F0F6F8;
  --gold:        #E8A020;
  --gold-dark:   #c98a18;
  --gold-light:  rgba(232, 160, 32, 0.12);
  --navy:        #1A2D40;
  --white:       #FFFFFF;
  --off-white:   #F7F8F9;
  --warm-white:  #F5F3EF;
  --text:        #1A1A1A;
  --text-muted:  #666;
  --text-light:  #999;
  --border:      #E4ECF0;
  --shadow-sm:   0 2px 8px rgba(27, 97, 122, 0.08);
  --shadow-md:   0 8px 32px rgba(27, 97, 122, 0.12);
  --shadow-lg:   0 16px 48px rgba(27, 97, 122, 0.16);

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-width: 1140px;
  --radius:    16px;
  --radius-sm:  8px;
  --radius-xs:  4px;

  --nav-height: 68px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--teal);
  margin-bottom: 16px;
}

.section-subhead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 48px;
}

.gold-bar {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 14px;
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-bg {
  background: var(--off-white);
  padding: 88px 0;
}

.section-bg .container {
  padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 97, 122, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 12px 28px;
}
.btn-secondary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ============================================
   Tags
   ============================================ */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-xs);
  background: rgba(27, 97, 122, 0.08);
  color: var(--teal);
}

.tag-gold {
  background: var(--gold-light);
  color: #8a6000;
}

.tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ============================================
   Navigation
   ============================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 97, 122, 0.08);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

#nav.scrolled {
  box-shadow: 0 2px 20px rgba(27, 97, 122, 0.1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.nav-logo-text span {
  display: block;
  font-weight: 600;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: #444;
  transition: color 0.2s;
}

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

.nav-cta {
  flex-shrink: 0;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
  color: var(--teal);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid rgba(232, 160, 32, 0.28);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  color: #9a6e00;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hero-gospel {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text);
  padding-bottom: 5px;
  border-bottom: 2.5px solid var(--gold);
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   What Is section
   ============================================ */
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.what-is-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.what-is-body p + p {
  margin-top: 16px;
}

.what-is-stat {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  height: 1px;
  background: rgba(27, 97, 122, 0.15);
}

/* ============================================
   How It Works
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   Business Cards
   ============================================ */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.biz-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.biz-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.biz-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.biz-card:hover::before {
  transform: scaleX(1);
}

.biz-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: white;
  overflow: hidden;
}

.biz-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.biz-info {
  flex: 1;
  min-width: 0;
}

.biz-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin: 6px 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.biz-location {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.biz-description {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   Waypointers (Blog) Cards
   ============================================ */
.waypointers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.story-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.story-img {
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-img-placeholder {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

.story-body {
  padding: 20px;
}

.story-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.story-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.story-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   Join CTA Band
   ============================================ */
.join-cta {
  background: var(--teal);
  padding: 88px 24px;
  text-align: center;
}

.join-cta h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.join-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--navy);
  padding: 52px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(232, 160, 32, 0.5)) drop-shadow(0 0 20px rgba(232, 160, 32, 0.2));
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-divider {
  width: 100%;
  max-width: 360px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   Find Page — Filters
   ============================================ */
.find-hero {
  padding-top: calc(var(--nav-height) + 56px);
  padding-bottom: 48px;
  padding-left: 24px;
  padding-right: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.find-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 8px;
}

.find-hero p {
  font-size: 17px;
  color: var(--text-muted);
}

.filters-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  padding: 0 24px;
}

.filters-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-input {
  flex: 1;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}

.search-input:focus {
  border-color: var(--teal);
}

.search-input::placeholder {
  color: var(--text-light);
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  height: 34px;
  padding: 0 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-pill.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  font-weight: 600;
}

.filter-pill.active-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  font-weight: 600;
}

.filter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  align-self: center;
  white-space: nowrap;
}

.find-results {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 88px;
}

.results-count {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.no-results {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.no-results h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

/* ============================================
   About Page
   ============================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + 72px);
  padding-bottom: 72px;
  padding-left: 24px;
  padding-right: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.5px;
  max-width: 700px;
}

.content-block {
  max-width: 720px;
  margin: 0 auto;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--teal);
  margin-bottom: 16px;
}

.content-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.about-section {
  padding: 56px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-section + .about-section {
  border-top: 1px solid var(--border);
}

.founder-note {
  background: var(--teal);
  border-radius: var(--radius);
  padding: 48px;
  color: white;
}

.founder-note blockquote {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  margin-bottom: 24px;
}

.founder-note cite {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  font-style: normal;
}

/* ============================================
   FAQ Page
   ============================================ */
.faq-group {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}

.faq-group h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--teal);
}

.faq-question.open {
  color: var(--teal);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: var(--teal);
  font-size: 16px;
  font-weight: 400;
}

.faq-question.open .faq-icon {
  background: var(--teal);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 20px;
}

/* ============================================
   Apply Page
   ============================================ */
.apply-hero {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 56px;
  padding-left: 24px;
  padding-right: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.apply-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 16px;
}

.apply-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.tally-embed {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 88px;
}

/* ============================================
   Waypointers Page
   ============================================ */
.waypointers-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================
   Business Modal
   ============================================ */
.biz-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.biz-modal.open {
  display: flex;
}

.biz-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 45, 64, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.biz-modal-content {
  position: relative;
  background: white;
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  z-index: 1;
  animation: modalIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.biz-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--off-white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.biz-modal-close:hover {
  background: var(--border);
  color: var(--text);
}

.modal-logo-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.modal-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: white;
  overflow: hidden;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.modal-biz-meta {
  flex: 1;
  min-width: 0;
}

.modal-biz-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  margin: 8px 0 4px;
}

.modal-biz-location {
  font-size: 13px;
  color: var(--text-light);
}

.modal-description {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.modal-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.modal-socials a {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

.modal-socials a:hover {
  color: var(--teal-dark);
}

.modal-cta {
  width: 100%;
  justify-content: center;
}

/* Cursor on cards */
.biz-card {
  cursor: pointer;
}

/* Card entrance animation (replaces data-aos on dynamic cards) */
.biz-card-animate {
  animation: cardFadeUp 0.5s ease forwards;
}

@keyframes cardFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Page transition (fade in)
   ============================================ */
body {
  animation: pageFadeIn 0.4s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-center .section-subhead { margin-left: auto; margin-right: auto; }
.text-center .gold-bar { margin-left: auto; margin-right: auto; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================
   Responsive — Tablet (< 900px)
   ============================================ */
@media (max-width: 900px) {
  .what-is-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .waypointers-grid,
  .waypointers-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .biz-grid {
    grid-template-columns: 1fr;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ============================================
   Responsive — Mobile (< 600px)
   ============================================ */
@media (max-width: 600px) {
  .section { padding: 64px 20px; }
  .section-bg { padding: 64px 0; }
  .hero { padding-top: calc(var(--nav-height) + 48px); padding-bottom: 56px; padding-left: 20px; padding-right: 20px; }
  .join-cta { padding: 64px 20px; }
  footer { padding: 44px 20px; }

  .waypointers-grid,
  .waypointers-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  .search-row { flex-direction: column; }

  .founder-note { padding: 32px 24px; }
  .founder-note blockquote { font-size: 16px; }

  .faq-group { padding: 36px 20px; }
}

/* ============================================
   AOS overrides
   ============================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
