:root {
  --background: hsl(39 35% 97%);
  --foreground: hsl(0 0% 10%);
  --card: hsl(0 0% 100%);
  --primary: hsl(150 56% 24%);
  --primary-glow: hsl(150 50% 34%);
  --primary-foreground: hsl(39 35% 97%);
  --secondary: hsl(222 61% 15%);
  --secondary-foreground: hsl(39 35% 97%);
  --muted: hsl(39 25% 92%);
  --muted-foreground: hsl(222 15% 35%);
  --accent: hsl(36 91% 55%);
  --accent-soft: hsl(36 91% 92%);
  --success: hsl(152 62% 44%);
  --success-foreground: hsl(0 0% 100%);
  --border: hsl(39 20% 88%);
  --shadow-soft: 0 4px 16px -4px hsl(150 56% 24% / 0.08);
  --shadow-elegant: 0 20px 50px -20px hsl(150 56% 24% / 0.25);
  --shadow-phone: 0 30px 80px -20px hsl(222 61% 15% / 0.35);
  --gradient-primary: linear-gradient(135deg, hsl(150 56% 24%) 0%, hsl(150 50% 34%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(36 91% 55%) 0%, hsl(28 91% 50%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(39 35% 97%) 0%, hsl(36 91% 92% / 0.5) 100%);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 6rem 0; }
.section h2, .hero h1, .centered-heading, .card h3, .team-card h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
.hero h1, .section h2, .centered-heading { line-height: 1.06; margin: 0; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); max-width: 12ch; }
.section h2, .centered-heading { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.editorial, .quote-large, .impact-quote blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: hsl(39 35% 97% / 0.8);
  border-bottom: 1px solid hsl(39 20% 88% / 0.65);
}
.nav {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand-logo { width: 2.25rem; height: 2.25rem; object-fit: contain; }
.brand-text { font-family: 'Sora', 'Inter', sans-serif; font-weight: 800; font-size: 1.25rem; }
.brand-accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2rem; color: var(--muted-foreground); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.button-secondary {
  border: 1px solid var(--border);
  color: var(--foreground);
  background: hsl(0 0% 100% / 0.6);
}
.button-outline-light {
  border: 1px solid hsl(39 35% 97% / 0.4);
  color: var(--primary-foreground);
}
.light-primary { background: hsl(39 35% 97%); color: var(--primary); }
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 999px;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.1rem;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--border);
}
.mobile-menu a { padding: 0.8rem 0.5rem; }
.mobile-menu.is-open { display: flex; }
.section-hero {
  position: relative;
  overflow: hidden;
  background-image: var(--gradient-hero);
  padding-top: 5rem;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.hero-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
  pointer-events: none;
}
.hero-blob-right { top: -10rem; right: -8rem; width: 30rem; height: 30rem; background: hsl(36 91% 55% / 0.18); }
.hero-blob-left { top: 30%; left: -10rem; width: 26rem; height: 26rem; background: hsl(150 56% 24% / 0.12); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: hsl(0 0% 100% / 0.62);
  border: 1px solid hsl(39 20% 88% / 0.75);
  color: var(--muted-foreground);
  font-size: 0.78rem;
  font-weight: 600;
}
.status-dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: var(--success); }
.hero-copy, .body-large { font-size: 1.125rem; color: var(--muted-foreground); }
.hero-copy { max-width: 38rem; margin: 1.5rem 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.centered-actions { justify-content: center; }
.hero-trust { margin-top: 2.25rem; max-width: 40rem; font-size: 0.8rem; color: hsl(222 15% 35% / 0.8); }
.phone-shell-wrap { display: flex; justify-content: center; }
.phone-shell {
  width: min(300px, 100%);
  border-radius: 2.5rem;
  padding: 0.6rem;
  background: hsl(0 0% 10% / 0.92);
  box-shadow: var(--shadow-phone);
  position: relative;
}
.phone-shell::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  z-index: -1;
  border-radius: 3rem;
  background: var(--gradient-gold);
  opacity: 0.2;
  filter: blur(42px);
}
.phone-screen { overflow: hidden; border-radius: 1.85rem; background: hsl(34 24% 86%); }
.chat-header { display: flex; gap: 0.75rem; align-items: center; background: var(--primary); color: var(--primary-foreground); padding: 1rem; }
.chat-avatar { width: 2.25rem; height: 2.25rem; border-radius: 999px; background: var(--accent); color: var(--secondary); display: grid; place-items: center; }
.chat-title { font-weight: 700; font-size: 0.95rem; }
.chat-status { font-size: 0.72rem; opacity: 0.75; }
.chat-body { height: 22.5rem; padding: 0.9rem; display: flex; flex-direction: column; gap: 0.6rem; overflow: hidden; }
.chat-message { display: flex; }
.chat-message.user { justify-content: flex-end; }
.chat-message.hoot { justify-content: flex-start; }
.chat-bubble {
  max-width: 78%;
  padding: 0.7rem 0.9rem;
  border-radius: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.4;
  box-shadow: var(--shadow-soft);
}
.chat-message.user .chat-bubble { background: var(--success); color: var(--success-foreground); border-top-right-radius: 0.3rem; }
.chat-message.hoot .chat-bubble { background: var(--card); color: var(--foreground); border-top-left-radius: 0.3rem; }
.metrics-section { background: var(--primary); color: var(--primary-foreground); position: relative; overflow: hidden; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.metric { text-align: center; }
.metric-value { font-family: 'Sora', 'Inter', sans-serif; font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 800; color: var(--accent); }
.metric p { margin: 0.5rem 0 0; color: hsl(39 35% 97% / 0.8); font-weight: 500; }
.metrics-caption, .section-caption, .team-note { text-align: center; color: hsl(39 35% 97% / 0.7); max-width: 42rem; margin: 2.5rem auto 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.quote-large {
  margin: 4rem auto 0;
  max-width: 52rem;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--primary);
  line-height: 1.2;
}
.center-copy { text-align: center; }
.narrow { max-width: 48rem; margin: 1rem auto 0; }
.hoot-image { width: 10rem; height: 10rem; object-fit: contain; margin: 0 auto 1.5rem; }
.cards-grid { display: grid; gap: 1.5rem; margin-top: 4rem; }
.three-up { grid-template-columns: repeat(3, 1fr); }
.two-up { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card);
  border: 1px solid hsl(39 20% 88% / 0.7);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.card h3 { margin: 0 0 0.6rem; font-size: 1.35rem; }
.card p { margin: 0; color: var(--muted-foreground); }
.icon-pill {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}
.gallery-scroll { margin-top: 4.5rem; overflow-x: auto; padding-bottom: 0.5rem; }
.gallery-track { display: flex; gap: 1.5rem; width: max-content; }
.chat-card {
  width: 280px;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: hsl(39 25% 92% / 0.45);
  border: 1px solid hsl(39 20% 88% / 0.7);
}
.chat-card-title { margin: 0 0 1rem; color: var(--primary); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; }
.bubble {
  padding: 0.65rem 0.85rem;
  border-radius: 1rem;
  font-size: 0.82rem;
  line-height: 1.4;
  margin-bottom: 0.55rem;
  max-width: 85%;
}
.bubble.user { background: var(--success); color: var(--success-foreground); margin-left: auto; border-top-right-radius: 0.28rem; }
.bubble.hoot { background: var(--card); color: var(--foreground); border-top-left-radius: 0.28rem; box-shadow: var(--shadow-soft); }
.section-dark { background: var(--secondary); color: var(--secondary-foreground); position: relative; overflow: hidden; }
.section-dark .body-large, .section-dark .card p, .section-dark .section-caption { color: hsl(39 35% 97% / 0.75); }
.dark-card { background: hsl(39 35% 97% / 0.05); border-color: hsl(39 35% 97% / 0.1); }
.number-tag {
  display: inline-block;
  background: hsl(36 91% 55% / 0.15);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-label, .impact-label, .recognition-label, .footer-grid h4 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}
.section-label, .impact-label { color: var(--primary); }
.media-layout { align-items: center; }
.feature-list { list-style: none; padding: 0; margin: 2rem 0; display: grid; gap: 0.9rem; }
.feature-list li { position: relative; padding-left: 2rem; color: hsl(0 0% 10% / 0.88); }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: hsl(152 62% 44% / 0.15);
  color: var(--success);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.media-card { position: relative; }
.media-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1.8rem; box-shadow: var(--shadow-elegant); }
.stat-card {
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  background: var(--card);
  border: 1px solid hsl(39 20% 88% / 0.7);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-elegant);
}
.stat-card strong { display: block; font-family: 'Sora', 'Inter', sans-serif; font-size: 2rem; color: var(--primary); }
.stat-card span { font-size: 0.75rem; color: var(--muted-foreground); }
.section-muted { background: hsl(39 25% 92% / 0.45); }
.impact-quote { text-align: center; max-width: 70rem; margin: 0 auto; }
.impact-quote blockquote { font-size: clamp(2rem, 3vw, 3.6rem); line-height: 1.24; margin: 0; }
.impact-quote figcaption { margin-top: 1.5rem; color: var(--muted-foreground); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 4.5rem; }
.impact-text { font-size: 1.1rem; margin-top: 0.8rem; }
.section-recognition { border-top: 1px solid hsl(39 20% 88% / 0.75); border-bottom: 1px solid hsl(39 20% 88% / 0.75); padding: 3rem 0; }
.recognition-label { text-align: center; color: var(--muted-foreground); margin: 0 0 1.25rem; }
.recognition-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  color: hsl(222 15% 35% / 0.75);
  font-weight: 700;
}
.centered-heading { text-align: center; }
.team-grid { max-width: 64rem; margin-left: auto; margin-right: auto; }
.team-card { padding: 1.75rem; }
.team-head { display: flex; gap: 1rem; align-items: center; }
.avatar-badge {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 800;
}
.team-role { color: var(--primary); margin: 0.2rem 0 0; font-size: 0.95rem; }
.team-bio { margin-top: 1.2rem; color: var(--muted-foreground); white-space: normal; }
.team-note { color: var(--muted-foreground); }
.faq-wrap { max-width: 52rem; }
.faq-list { margin-top: 2.5rem; display: grid; gap: 0.9rem; }
.faq-list details {
  background: var(--card);
  border: 1px solid hsl(39 20% 88% / 0.7);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
}
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list p { color: var(--muted-foreground); margin: 0.9rem 0 0.2rem; }
.section-cta { background: var(--primary); color: var(--primary-foreground); position: relative; overflow: hidden; }
.narrow-block { max-width: 52rem; }
.site-footer { background: var(--secondary); color: var(--secondary-foreground); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand { margin-bottom: 1rem; }
.footer-brand-text { color: var(--primary-foreground); }
.footer-copy { color: hsl(39 35% 97% / 0.75); max-width: 18rem; }
.footer-locations, .footer-bottom, .footer-grid li, .footer-grid a { color: hsl(39 35% 97% / 0.55); }
.footer-grid ul { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.55rem; }
.footer-bottom { border-top: 1px solid hsl(39 35% 97% / 0.1); margin-top: 3rem; padding-top: 1.5rem; text-align: center; font-size: 0.8rem; }
@media (max-width: 980px) {
  .hero-grid, .two-col, .impact-grid, .footer-grid, .three-up, .two-up { grid-template-columns: 1fr; }
  .nav-links, .desktop-cta { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .section { padding: 4.5rem 0; }
  .hero h1 { max-width: none; }
  .stat-card { position: static; margin-top: 1rem; width: fit-content; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 1.25rem, 1120px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .phone-shell { width: min(100%, 300px); }
  .chat-card { width: 86vw; }
}