/* ═══════════════════════════════════════════════
   HOPTOI — Stylesheet v3
   Colors matched to app frames
   ═══════════════════════════════════════════════ */

:root {
  /* ── Matched directly to app screenshots ── */
  --app-cream:      #f5ede2;   /* exact app background */
  --app-cream-dark: #ece4d7;   /* slightly deeper cream */
  --app-green:      #276b4e;   /* app CTA buttons (Next, Create) */
  --app-green-hover:#1e5940;
  --app-green-light:#3a9b72;   /* circle icons, active states */
  --app-green-100:  #c2dfd2;   /* tint backgrounds */
  --app-green-50:   #e8f5ee;   /* very light tint */
  --app-coral:      #de7c6b;   /* Registration Closed badge, selected card */
  --app-coral-50:   #faeae7;   /* coral tint */
  --app-coral-dark: #c4624f;
  --app-border:     #e5ddd3;   /* card and divider borders */
  --app-text:       #1c2820;   /* dark text */
  --app-text-muted: #8a8278;   /* secondary text */
  --app-white:      #ffffff;

  /* ── Site-level tokens ── */
  --forest:         #0e1f15;   /* nav bar, footer */
  --forest-mid:     #152a1c;
  --border-dark:    rgba(255,255,255,.09);
  --text-on-dark:   rgba(255,255,255,.68);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 100px;

  --shadow-sm:    0 1px 4px rgba(28,40,32,.06), 0 1px 2px rgba(28,40,32,.04);
  --shadow-card:  0 2px 14px rgba(28,40,32,.08), 0 1px 3px rgba(28,40,32,.05);
  --shadow-float: 0 20px 56px rgba(28,40,32,.15), 0 6px 18px rgba(28,40,32,.08);
  --shadow-phone: 0 44px 84px rgba(0,0,0,.58), 0 0 0 1px rgba(255,255,255,.05);

  --transition: 200ms cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--app-text);
  background: var(--app-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--app-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--app-green-hover); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 28px;
}

/* ── Section header ── */
.section-header {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--app-green);
  background: var(--app-green-50);
  padding: 4px 13px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

.section-eyebrow.light {
  color: var(--app-green-100);
  background: rgba(255,255,255,.1);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--app-text);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: var(--app-text-muted);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--forest);
  border-bottom: 1px solid var(--border-dark);
  padding-block: 14px;
  transition: padding var(--transition);
}
.site-nav.scrolled { padding-block: 11px; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-tile-svg {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  /* Slight drop shadow to lift it off dark nav/footer backgrounds */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.28));
}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--app-white);
  letter-spacing: -.02em;
}

.nav-menu { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.62);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--app-white); background: rgba(255,255,255,.07); }

.nav-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--app-white);
  background: var(--app-green);
  padding: 8px 18px;
  border-radius: var(--r-sm);
  text-decoration: none;
  margin-left: 10px;
  box-shadow: 0 3px 10px rgba(39,107,78,.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--app-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(39,107,78,.5);
  color: var(--app-white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--app-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  background: var(--forest);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 65% 55% at 68% 45%, rgba(58,155,114,.11) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 12% 78%, rgba(39,107,78,.07) 0%, transparent 55%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 85% 85% at center, black 15%, transparent 72%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { max-width: 530px; }

/* Eyebrow with live pulse dot */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--app-green-light);
  margin-bottom: 22px;
}

.eyebrow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--app-green-light);
  border-radius: 50%;
  animation: pulse-live 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(58,155,114,.2);
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 3px rgba(58,155,114,.2); }
  50%       { box-shadow: 0 0 0 7px rgba(58,155,114,.05); }
}

h1 {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 26px;
}

.headline-line {
  display: block;
  font-size: clamp(42px, 5.8vw, 70px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.07;
  color: var(--app-white);
}

.headline-line.accent { color: var(--app-green-light); }

.hero-lead {
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-on-dark);
  margin-bottom: 38px;
  max-width: 450px;
}

/* ── Download Badges ── */
.download-badges { display: flex; flex-wrap: wrap; gap: 12px; }

.badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff; /* hardcoded fallback — SVG fill uses currentColor */
  color: var(--app-white);
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  padding: 10px 19px;
  border-radius: var(--r-md);
  text-decoration: none;
  min-width: 166px;
  backdrop-filter: blur(4px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.badge-btn:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.27);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  color: var(--app-white);
}

.badge-btn.coming-soon {
  cursor: default;
  opacity: .68;
}
.badge-btn.coming-soon:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  transform: none;
  box-shadow: none;
}

.badge-icon { width: 24px; height: 24px; flex-shrink: 0; overflow: visible; }

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.badge-text small { font-size: 10px; font-weight: 500; opacity: .62; }

/* ─────────────────────────────────────────
   PHONE MOCKUP — Browse Games (Frame 2)
───────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 268px;
  height: 565px;
  background: #18261e;
  border-radius: 44px;
  border: 7px solid #243120;
  box-shadow: var(--shadow-phone);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  background: #18261e;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

/* Screen matches app cream background */
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--app-cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Greeting header (Frame 2) ── */
.app-greeting-header {
  background: var(--app-white);
  padding: 30px 14px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--app-border);
  flex-shrink: 0;
}

.greeting-hi {
  font-size: 15px;
  font-weight: 800;
  color: var(--app-text);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.greeting-name {
  font-size: 11px;
  color: var(--app-text-muted);
  margin-top: 2px;
}

.greeting-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notif-wrap {
  position: relative;
  color: var(--app-text-muted);
}

.notif-dot {
  position: absolute;
  top: -1px; right: -1px;
  width: 7px; height: 7px;
  background: var(--app-green-light);
  border-radius: 50%;
  border: 1.5px solid var(--app-white);
}

.app-avatar-grey {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ccc8c4;
  border: 2px solid var(--app-border);
}

/* ── Browse Games row ── */
.browse-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 8px;
  background: var(--app-white);
}

.browse-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--app-text);
  letter-spacing: -.02em;
}

.browse-arrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--app-green);
  letter-spacing: -.04em;
}

/* ── Game cards (horizontal, matches Frame 2) ── */
.browse-cards-wrap {
  display: flex;
  gap: 8px;
  padding: 0 14px 12px;
  background: var(--app-white);
  overflow-x: auto;
  flex-shrink: 0;
  border-bottom: 1px solid var(--app-border);
}
.browse-cards-wrap::-webkit-scrollbar { display: none; }

.browse-card {
  min-width: 152px;
  background: var(--app-white);
  border-radius: 12px;
  border: 1px solid var(--app-border);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.browse-card.partial { min-width: 108px; }

.card-status-tag {
  text-align: center;
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .02em;
}
.card-status-tag.closed { background: var(--app-coral); color: var(--app-white); }
.card-status-tag.open   { background: var(--app-green); color: var(--app-white); }

.card-body-inner {
  padding: 8px 10px 10px;
}

.card-game-name {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--app-text);
  line-height: 1.3;
  margin-bottom: 5px;
}

.card-style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 6px;
}

.style-pill {
  font-size: 8px;
  font-weight: 600;
  border: 1.5px solid var(--app-border);
  border-radius: var(--r-pill);
  padding: 1.5px 6px;
  color: var(--app-text-muted);
}

.card-meta-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: var(--app-text-muted);
  margin-bottom: 2px;
}

/* ── Skill level strip ── */
.skill-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 10px 8px;
  background: var(--app-cream);
  flex-shrink: 0;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.skill-item span {
  font-size: 8px;
  font-weight: 600;
  color: var(--app-text-muted);
}

.skill-item.selected span { color: var(--app-text); }

.skill-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: serif;
}

.skill-icon.green { background: var(--app-green); color: var(--app-white); }
.skill-icon.coral { background: var(--app-coral); color: var(--app-white); }

/* ── Bottom nav (matches app exactly: Home | My Games | Create● | Score Log | Settings) ── */
.app-bottom-nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  background: var(--app-white);
  border-top: 1px solid var(--app-border);
  padding: 6px 4px 12px;
  margin-top: auto;
  flex-shrink: 0;
}

.bnav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--app-text-muted);
  flex: 1;
}

.bnav-tab span {
  font-size: 7.5px;
  font-weight: 600;
}

.bnav-tab.active { color: var(--app-green); }

/* The iconic green circle Create button */
.bnav-create {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.create-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--app-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(39,107,78,.45);
  position: relative;
  top: -10px;
  margin-bottom: -10px;
}

.bnav-create span {
  font-size: 7.5px;
  font-weight: 700;
  color: var(--app-green);
}


/* ─────────────────────────────────────────
   STATEMENT
───────────────────────────────────────── */
.statement-section {
  background: var(--app-cream);
  padding-block: 68px;
  border-top: 1px solid var(--app-border);
  border-bottom: 1px solid var(--app-border);
}

.statement-text {
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--app-text);
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  letter-spacing: -.015em;
}

.statement-text em {
  font-style: normal;
  color: var(--app-green);
}

.styles-intro {
  font-size: 16px;
  color: var(--app-text-muted);
  text-align: center;
  max-width: 520px;
  margin: 36px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--app-border);
  line-height: 1.7;
}

/* Stacked styles list */
.styles-list-wrap {
  margin-top: 32px;
  max-width: 620px;
  margin-inline: auto;
}


.styles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styles-list-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--app-border);
}


.styles-item-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.styles-item-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--app-text);
  letter-spacing: -.01em;
}

.styles-item-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}

.styles-item-tag.jokers {
  background: var(--app-green-50);
  color: var(--app-green);
  border: 1px solid var(--app-green-100);
}

.styles-item-tag.no-jokers {
  background: var(--app-cream-dark);
  color: var(--app-text-muted);
  border: 1px solid var(--app-border);
}

.styles-item-desc {
  font-size: 14px;
  color: var(--app-text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
#features {
  background: var(--app-white);
  padding-block: 96px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--app-cream);
  border: 1px solid var(--app-border);
  border-radius: 0;
  padding: 30px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
  border-color: var(--app-green-100);
}

.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 0;
  background: var(--app-green-50);
  border: 1px solid var(--app-green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--app-green);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--app-text);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--app-text-muted);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-section {
  background: var(--app-cream);
  padding-block: 96px;
  border-top: 1px solid var(--app-border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials-grid:has(.testimonial-card:only-child) {
  grid-template-columns: 1fr;
  max-width: 460px;
  margin-inline: auto;
}

.testimonial-card {
  background: var(--app-white);
  border: 1px solid var(--app-border);
  border-radius: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}

.testimonial-stars {
  color: var(--app-coral);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--app-text);
  font-style: italic;
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
}

.testimonial-card.placeholder .testimonial-quote {
  color: var(--app-text-muted);
  font-style: normal;
  font-size: 13.5px;
  background: var(--app-cream);
  border: 1px dashed var(--app-border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--app-border);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--app-green-50);
  border: 1px solid var(--app-green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--app-green);
  flex-shrink: 0;
}

.testimonial-card.placeholder .testimonial-avatar {
  background: var(--app-cream-dark);
  border-color: var(--app-border);
  color: var(--app-text-muted);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-meta strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--app-text);
}

.testimonial-meta span {
  font-size: 12px;
  color: var(--app-text-muted);
}

.testimonial-card.placeholder .testimonial-meta strong,
.testimonial-card.placeholder .testimonial-meta span {
  color: var(--app-text-muted);
}

/* ─────────────────────────────────────────
   FOR HOSTS
───────────────────────────────────────── */
#for-hosts {
  background: var(--app-cream);
  padding-block: 96px;
  border-top: 1px solid var(--app-border);
}

.hosts-card {
  background: var(--forest);
  border-radius: 0;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hosts-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 85% 50%, rgba(58,155,114,.1) 0%, transparent 65%);
  pointer-events: none;
}

.hosts-text { position: relative; z-index: 1; }

.hosts-text h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--app-white);
  letter-spacing: -.03em;
  line-height: 1.22;
  margin: 10px 0 16px;
}

.hosts-text > p {
  font-size: 15px;
  color: var(--text-on-dark);
  line-height: 1.78;
  margin-bottom: 26px;
}

.host-feature-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.host-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
}

.host-feature-list li svg {
  flex-shrink: 0;
  color: var(--app-green-light);
  margin-top: 2px;
}

/* ── Host Dashboard UI ── */
.hosts-visual { position: relative; z-index: 1; }

.host-dashboard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.dashboard-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--app-white);
}

.dashboard-badge {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--app-green-light);
  background: rgba(58,155,114,.14);
  padding: 3px 9px;
  border-radius: var(--r-pill);
}

.dashboard-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 16px 18px;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.dash-stat { text-align: center; }

.dash-stat strong {
  display: block;
  font-size: 21px;
  font-weight: 800;
  color: var(--app-white);
  letter-spacing: -.03em;
  line-height: 1.1;
}

.dash-stat span {
  font-size: 9.5px;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}

.dashboard-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  padding: 12px 18px 7px;
}

.dashboard-table-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,.68);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.table-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.table-dot.green { background: var(--app-green-light); }
.table-dot.coral { background: var(--app-coral); }

.dashboard-table-row > span:nth-child(2) { flex: 1; }

.table-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-pill);
}
.table-status.full { background: rgba(58,155,114,.14); color: var(--app-green-light); }
.table-status.open { background: rgba(222,124,107,.14); color: var(--app-coral); }

.dashboard-actions {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
}

.dash-btn {
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.72);
  cursor: default;
  text-align: center;
}

.dash-btn.primary {
  background: var(--app-green);
  border-color: var(--app-green);
  color: var(--app-white);
}

/* ─────────────────────────────────────────
   OUR STORY
───────────────────────────────────────── */
#our-story {
  background: var(--app-white);
  padding-block: 96px;
}

.story-grid {
  max-width: 740px;
  margin-inline: auto;
}

.story-text-col .section-eyebrow { text-align: left; margin-bottom: 12px; }

.story-text-col h2 {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  color: var(--app-text);
  letter-spacing: -.03em;
  line-height: 1.18;
  margin-bottom: 18px;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 26px;
}

.story-body p {
  font-size: 16px;
  color: var(--app-text-muted);
  line-height: 1.82;
}

.founder-quote {
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
  color: var(--app-text);
  line-height: 1.62;
  border-left: 3px solid var(--app-green);
  padding-left: 18px;
  margin-bottom: 10px;
}

.founder-cite {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--app-text-muted);
  padding-left: 21px;
  margin-bottom: 30px;
}

.story-cta {
  display: inline-flex;
  align-items: center;
  background: var(--app-green);
  color: var(--app-white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(39,107,78,.3);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.story-cta:hover {
  background: var(--app-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(39,107,78,.4);
  color: var(--app-white);
}

/* ─────────────────────────────────────────
   THE NAME
───────────────────────────────────────── */
.name-section {
  background: var(--forest);
  padding-block: 104px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.name-inner {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.name-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--app-white);
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 44px;
}

.name-body {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 52px;
}

.name-body p {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.name-body em {
  color: rgba(255,255,255,.92);
  font-style: italic;
}

.name-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 600;
  font-style: italic;
  color: var(--app-white);
  line-height: 1.25;
  letter-spacing: -.01em;
  border: none;
  padding: 0;
  margin: 0 0 36px;
}

.name-footnote {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
  letter-spacing: .01em;
}

/* ─────────────────────────────────────────
   DOWNLOAD CTA
───────────────────────────────────────── */
.download-cta-section {
  background: var(--forest);
  padding-block: 96px;
  position: relative;
  overflow: hidden;
}

.download-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 50%, rgba(58,155,114,.1) 0%, transparent 68%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  color: var(--app-white);
  letter-spacing: -.035em;
  line-height: 1.12;
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 16px;
  color: var(--text-on-dark);
  margin-bottom: 34px;
}

.cta-badges { justify-content: center; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
#contact {
  background: var(--app-cream);
  padding-block: 96px;
  border-top: 1px solid var(--app-border);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 76px;
  align-items: start;
}

.contact-info .section-eyebrow { text-align: left; }

.contact-info h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--app-text);
  letter-spacing: -.025em;
  margin: 10px 0 13px;
  line-height: 1.2;
}

.contact-info > p {
  font-size: 15px;
  color: var(--app-text-muted);
  line-height: 1.78;
  margin-bottom: 30px;
}

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

.contact-detail-item { display: flex; align-items: flex-start; gap: 12px; }

.contact-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--app-green-50);
  border: 1px solid var(--app-green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--app-green);
  flex-shrink: 0;
}

.contact-detail-item strong { display: block; font-size: 12.5px; font-weight: 600; color: var(--app-text); margin-bottom: 2px; }
.contact-detail-item a, .contact-detail-item span { font-size: 13.5px; color: var(--app-text-muted); }
.contact-detail-item a { color: var(--app-green); }
.contact-detail-item a:hover { color: var(--app-green-hover); }

/* ── Form (pill inputs to match app style) ── */
.contact-form {
  background: var(--app-white);
  border-radius: 0;
  padding: 38px;
  border: 1px solid var(--app-border);
  box-shadow: var(--shadow-card);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

label { font-size: 13px; font-weight: 600; color: var(--app-text); }

.required { color: var(--app-coral); }

/* Pill-style inputs matching app (frames 1 & 3) */
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 11px 16px;
  background: var(--app-cream);
  border: 1.5px solid var(--app-border);
  border-radius: var(--r-pill);
  font-size: 14.5px;
  color: var(--app-text);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea { border-radius: var(--r-md); resize: vertical; min-height: 116px; }

input:focus, select:focus, textarea:focus {
  border-color: var(--app-green);
  background: var(--app-white);
  box-shadow: 0 0 0 3px rgba(39,107,78,.1);
}

input::placeholder, textarea::placeholder { color: var(--app-border); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a8278' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
  cursor: pointer;
}

.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 4px; }

.form-note { font-size: 12px; color: var(--app-text-muted); }

/* Pill-style submit button matching app */
.btn-submit {
  padding: 12px 28px;
  background: var(--app-green);
  color: var(--app-white);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(39,107,78,.3);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  min-width: 148px;
}

.btn-submit:hover:not(:disabled) {
  background: var(--app-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(39,107,78,.4);
}

.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.btn-loading { display: none; align-items: center; gap: 7px; }
.btn-submit.loading .btn-label { display: none; }
.btn-submit.loading .btn-loading { display: flex; }

.spinner { width: 14px; height: 14px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success,
.form-error {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--r-md);
  margin-top: 13px;
  font-size: 13.5px;
}

.form-success { background: var(--app-green-50); border: 1px solid var(--app-green-100); color: var(--app-green-hover); }
.form-error   { background: var(--app-coral-50); border: 1px solid #f5c5bb; color: var(--app-coral-dark); }

.form-success strong, .form-error strong { display: block; font-weight: 700; margin-bottom: 2px; }
.form-success svg, .form-error svg { flex-shrink: 0; margin-top: 2px; }
.form-success.visible, .form-error.visible { display: flex; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  padding-top: 60px;
  padding-bottom: 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand .nav-logo { margin-bottom: 13px; }

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,.32);
  line-height: 1.72;
}

.footer-nav { display: flex; gap: 40px; }

.footer-nav-col { display: flex; flex-direction: column; gap: 10px; }

.footer-nav-col strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--app-white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.footer-nav-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,.42);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: var(--app-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.28); }

.footer-legal { display: flex; gap: 18px; }

.footer-legal a {
  font-size: 12.5px;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.features-grid .reveal:nth-child(2) { transition-delay: .07s; }
.features-grid .reveal:nth-child(3) { transition-delay: .14s; }
.features-grid .reveal:nth-child(4) { transition-delay: .04s; }
.features-grid .reveal:nth-child(5) { transition-delay: .11s; }
.features-grid .reveal:nth-child(6) { transition-delay: .18s; }

/* ─────────────────────────────────────────
   RESPONSIVE — ≤ 1024px
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-text { max-width: 100%; }
  .hero-lead { max-width: 500px; margin-inline: auto; }
  .download-badges { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-eyebrow { justify-content: center; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

  .hosts-card { grid-template-columns: 1fr; gap: 36px; padding: 44px; }

  .story-grid { max-width: 100%; }

  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }

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

  .trust-container { gap: 12px; }
  .trust-item { padding-inline: 20px; font-size: 12.5px; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — ≤ 768px
───────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding-inline: 20px; }

  #hero { padding-top: 88px; padding-bottom: 56px; }

  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14,31,21,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 999;
    padding: 40px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 22px; font-weight: 700; color: rgba(255,255,255,.8); padding: 12px 24px; }
  .nav-cta { font-size: 17px; padding: 13px 36px; margin: 6px 0 0; border-radius: var(--r-pill); }

  .phone-frame { width: 232px; height: 488px; }

  .statement-section { padding-block: 52px; }

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

  #features, #testimonials, #for-hosts, #our-story, #the-name, .download-cta-section, #contact { padding-block: 60px; }

  .hosts-card { padding: 30px 22px; border-radius: 0; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .btn-submit { width: 100%; text-align: center; }

  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .footer-nav { flex-direction: column; gap: 22px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }

  .download-badges { flex-direction: column; align-items: center; }
  .badge-btn { width: 100%; max-width: 252px; justify-content: center; }
}

@media (max-width: 400px) {
  .headline-line { font-size: 36px; }
  .phone-frame { width: 208px; height: 438px; }
}
