@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=DM+Sans:wght@400;500;600&display=swap');


/* ============================================================
   WAGGR LANDING PAGE v2 — STYLES
   ============================================================ */

/* Global resets */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: #ffffff; color: var(--charcoal); }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === navbar.css === */


/* ─── Navbar shell ──────────────────────────────────────────── */
.waggr-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 var(--space-sm);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.waggr-nav.scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.waggr-nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── Logo ──────────────────────────────────────────────────── */
.waggr-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.waggr-nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.waggr-nav__logo-img--white {
  display: none;
}

/* Always show teal logo — hero is light, no dark nav state */
.waggr-nav__logo-img--teal {
  display: block;
}

/* ─── Desktop links ─────────────────────────────────────────── */
.waggr-nav__links {
  display: none;
  list-style: none;
  align-items: center;
  gap: var(--space-md);
}

.waggr-nav__links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.waggr-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width 0.25s ease;
}

.waggr-nav__links a:hover {
  color: var(--teal);
}

.waggr-nav__links a:hover::after {
  width: 100%;
}

/* ─── CTA button ────────────────────────────────────────────── */
.waggr-nav__cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.waggr-nav__cta:hover {
  box-shadow: 0 0 18px var(--teal-glow), 0 0 6px var(--teal-glow);
  transform: translateY(-1px);
}

.waggr-nav__cta:active {
  transform: translateY(0);
}

.waggr-nav__cta:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ─── Hamburger ─────────────────────────────────────────────── */
.waggr-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.waggr-nav__hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.waggr-nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.waggr-nav__hamburger span:nth-child(1) { width: 22px; }
.waggr-nav__hamburger span:nth-child(2) { width: 16px; }
.waggr-nav__hamburger span:nth-child(3) { width: 22px; }

/* Open state */
.waggr-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  width: 22px;
  transform: translateY(7px) rotate(45deg);
}

.waggr-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.waggr-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  width: 22px;
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile overlay ────────────────────────────────────────── */
.waggr-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.waggr-nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

.waggr-nav__overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.waggr-nav__overlay-links a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.waggr-nav__overlay-links a:hover {
  color: var(--teal);
}

.waggr-nav__overlay .waggr-nav__cta {
  font-size: 16px;
  padding: 14px 36px;
}

/* ─── Responsive: desktop ───────────────────────────────────── */
@media (min-width: 768px) {
  .waggr-nav {
    height: 72px;
    padding: 0 var(--space-md);
  }

  .waggr-nav__links {
    display: flex;
  }

  .waggr-nav__hamburger {
    display: none;
  }
}

@media (min-width: 1024px) {
  .waggr-nav {
    padding: 0 var(--space-lg);
  }
}

/* === hero.css === */

/* ─── Hero Section ─────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f0fafa 0%, #e6f7f7 50%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 80px);
  padding: 100px clamp(24px, 5vw, 80px) clamp(48px, 6vw, 80px);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
  }
}

/* Bottom fade into light-bg (hero → problem transition) */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--light-bg));
  pointer-events: none;
  z-index: 2;
}

/* ─── Hero phone mockup ──────────────────────────────────────────────────────── */

.hero__mockup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  pointer-events: none;
  filter: drop-shadow(0 32px 64px rgba(0, 194, 203, 0.18)) drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

/* Allow dots to be clickable */
.hero__carousel-dots,
.hero__carousel-caption {
  pointer-events: all;
}

/* CSS phone chrome — single border, no inner frame */
.hero__phone {
  width: 260px;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 14px 10px 10px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), inset 0 0 0 1px #3a3a3a;
}

@media (min-width: 768px) {
  .hero__phone {
    width: 280px;
  }
}

.hero__phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #1a1a1a;
  border-radius: 0 0 12px 12px;
  z-index: 10;
}

/* Screen viewport — clips iframe, matches mockup 375×812 design ratio */
.hero__phone-screen {
  width: 100%;
  aspect-ratio: 375 / 812;
  border-radius: 36px;
  overflow: hidden;
  background: #f0fafa;
  position: relative;
}

/* Stack of layers — transition opacity on the layer, not the iframe */
.hero__screen-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero__screen-layer.is-active {
  opacity: 1;
}

.hero__screen-layer iframe {
  /* Render at design size (375×812) and scale to fit phone chrome */
  width: 375px;
  height: 812px;
  border: none;
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  /* hero phone 260px, padding 10px each side → inner 240px → 240/375 */
  transform: scale(0.64);
}

@media (min-width: 768px) {
  .hero__screen-layer iframe {
    /* 280px phone, inner 260px → 260/375 */
    transform: scale(0.693);
  }
}

@media (min-width: 1024px) {
  .hero__screen-layer iframe {
    /* 290px phone, inner 270px → 270/375 */
    transform: scale(0.72);
  }
}

@media (min-width: 1280px) {
  .hero__screen-layer iframe {
    /* 310px phone, inner 290px → 290/375 */
    transform: scale(0.773);
  }
}

.hero__phone-home {
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__phone-home::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
}

/* Dots + caption below phone */
.hero__carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero__dot.is-active {
  background: var(--teal);
  transform: scale(1.25);
}

.hero__carousel-caption {
  text-align: center;
  font-size: 13px;
  color: var(--charcoal);
  margin-top: 10px;
  min-height: 20px;
  transition: opacity 0.4s ease;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  opacity: 0.7;
}

/* ─── Content ───────────────────────────────────────────────────────────────── */

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.05;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: -0.02em;
}

.hero__headline-teal {
  color: var(--teal);
}

.hero__subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ─── Waitlist form ─────────────────────────────────────────────────────────── */

.hero__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: var(--space-xs);
}

.hero__form-helper {
  font-family: var(--font-body);
  font-size: 13px;
  color: #888;
  margin: -4px 0 0;
}

/* Field groups */
.hero__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.hero__field-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.hero__field-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #e05c3a;
  display: none;
}

.hero__field.has-error .hero__field-error {
  display: block;
}

.hero__field.has-error .hero__input,
.hero__field.has-error .hero__pills,
.hero__field.has-error .waitlist-footer__select,
.hero__field.has-error .waitlist-footer__input {
  outline: 2px solid #e05c3a;
  outline-offset: 2px;
  border-radius: 8px;
}

.hero__input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #d0d0d0;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.hero__input::placeholder {
  color: #aaa;
}

.hero__input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.15);
}

/* Radio pill group */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 2px 0;
}

/* Hidden actual radio */
.hero__pills input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hero__pill-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1.5px solid #d0d0d0;
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  user-select: none;
}

.hero__pill-label:hover {
  border-color: var(--teal);
  color: var(--charcoal);
}

.hero__pills input[type="radio"]:checked + .hero__pill-label {
  background: var(--teal);
  border-color: var(--teal);
  color: #ffffff;
  font-weight: 600;
}

.hero__pills input[type="radio"]:focus-visible + .hero__pill-label {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Hero CTA row */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-sm);
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.18s ease, background 0.18s ease;
  border: 2px solid transparent;
}

.hero__btn--primary {
  background: #00C2CB;
  color: #ffffff;
  border-color: #00C2CB;
}

.hero__btn--primary:hover {
  background: #00adb5;
  border-color: #00adb5;
  box-shadow: 0 6px 20px rgba(0, 194, 203, 0.35);
  transform: translateY(-1px);
}

.hero__btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(45,45,45,0.25);
}

.hero__btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.hero__btn:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: none;
}

/* Success state */
.hero__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  padding: var(--space-md) 0;
  text-align: center;
}

.hero__success img {
  height: 40px;
  width: auto;
}

/* ─── Scroll indicator ──────────────────────────────────────────────────────── */

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.hero__scroll--hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__scroll-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg);
  animation: float-down 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes float-down {
  0%   { transform: rotate(45deg) translateY(0);   opacity: 0.6; }
  60%  { transform: rotate(45deg) translateY(7px);  opacity: 1; }
  100% { transform: rotate(45deg) translateY(0);   opacity: 0.6; }
}

/* ─── Scroll-triggered entrance animations ──────────────────────────────────── */

.hero__content > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero__content.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.hero__content.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.hero__content.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.hero__content.is-visible > *:nth-child(4) { transition-delay: 0.35s; }

.hero__content.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Desktop layout (≥768px) ───────────────────────────────────────────────── */

@media (min-width: 768px) {
  .hero__content {
    text-align: left;
    padding: 0;
    margin: 0;
    max-width: 480px;
  }

  .hero__mockup-wrap {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    max-width: 520px;
  }

  .hero__phone {
    width: 290px;
  }
}

@media (min-width: 1280px) {
  .hero__content {
    max-width: 560px;
  }

  .hero__phone {
    width: 310px;
  }
}

/* === problem.css === */

.problem {
  background: linear-gradient(
    to bottom,
    var(--light-bg) 0%,
    #edf8f8 60%,
    var(--light-bg) 100%
  );
  padding: var(--space-2xl) var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.problem__stat {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  max-width: 700px;
  margin: 0 auto var(--space-lg);

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.problem__stat strong {
  color: var(--teal);
}

.problem__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto var(--space-xl);
  padding: 0;
  width: 100%;
  max-width: 900px;
}

.problem__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  background: #ffffff;
  border: 1.5px solid rgba(0, 194, 203, 0.2);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: center;

  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.problem__card:nth-child(2) { transition-delay: 0.1s; }
.problem__card:nth-child(3) { transition-delay: 0.2s; }

.problem__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem__card-icon {
  font-size: 28px;
  line-height: 1;
}

.problem__card-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 17px);
  color: #444;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 640px) {
  .problem__cards {
    flex-direction: row;
  }
  .problem__card {
    flex: 1;
  }
}

.problem__subtext {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--teal);
  margin: 0;

  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

/* Animated state — added by IntersectionObserver */
.problem__stat.is-visible,
.problem__subtext.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .problem {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1440px) {
  .problem {
    padding: var(--space-2xl) var(--space-xl);
  }
}

/* === demo.css === */

/* ─── Section ───────────────────────────────────────────────────────────── */

.demo {
  background: var(--light-bg);
  padding: var(--space-xl) 0 var(--space-2xl);
}

.demo__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* ─── Header ────────────────────────────────────────────────────────────── */

.demo__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.demo__label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ─── Persona switcher ──────────────────────────────────────────────────── */

.demo__switcher {
  display: inline-flex;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 4px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.demo__pill {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: transparent;
  color: var(--charcoal);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.demo__pill--active {
  background: var(--teal);
  color: #fff;
}

.demo__pill:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ─── Stage ─────────────────────────────────────────────────────────────── */

.demo__stage {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* ─── Demo phone chrome ──────────────────────────────────────────────────── */

.demo__phone-chrome {
  position: relative;
  width: 260px;
  background: #1a1a1a;
  border-radius: 42px;
  padding: 13px 9px 9px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.32), inset 0 0 0 1px #3a3a3a;
  flex-shrink: 0;
}

.demo__phone-chrome-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 19px;
  background: #1a1a1a;
  border-radius: 0 0 11px 11px;
  z-index: 10;
}

.demo__phone-chrome-screen {
  width: 100%;
  aspect-ratio: 375 / 812;
  border-radius: 34px;
  overflow: hidden;
  background: #f0fafa;
  position: relative;
}

.demo__phone-chrome-home {
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo__phone-chrome-home::after {
  content: '';
  display: block;
  width: 58px;
  height: 3px;
  background: rgba(255,255,255,0.22);
  border-radius: 4px;
}

/* iframe fills the chrome screen */
.demo__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

/* Chapter inline mockup (mobile only) */
.demo__mockup-mobile {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.demo__mockup-mobile .demo__phone-chrome {
  width: 240px;
}

/* Mobile chapter iframes: render at 375×812 and scale down */
.demo__iframe--mobile {
  width: 375px;
  height: 812px;
  border: none;
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  /* demo mobile phone: 240px chrome, inner ~222px → 222/375 */
  transform: scale(0.592);
}

/* ─── Desktop sticky phone (hidden on mobile) ───────────────────────────── */

.demo__phone-wrap {
  display: none;
}

/* ─── Mobile per-chapter phone ──────────────────────────────────────────── */

.demo__phone--mobile {
  margin: 0 auto var(--space-md);
}

/* ─── Chapters ──────────────────────────────────────────────────────────── */

.demo__chapters {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.demo__chapter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── Chapter text ──────────────────────────────────────────────────────── */

.demo__chapter-text {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.demo__chapter.is-visible .demo__chapter-text {
  opacity: 1;
  transform: translateY(0);
}

.demo__chapter-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--teal);
  opacity: 0.55;
  margin: 0 0 4px;
}

.demo__chapter-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--space-xs);
}

.demo__chapter-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  max-width: 36ch;
  margin: 0;
}

/* ─── Desktop (768px+) ──────────────────────────────────────────────────── */

@media (min-width: 768px) {

  .demo__inner {
    padding: 0 var(--space-md);
  }

  /* Two-column stage */
  .demo__stage {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-xl);
  }

  /* Show sticky phone */
  .demo__phone-wrap {
    display: block;
    flex-shrink: 0;
    align-self: flex-start;
    position: sticky;
    top: 10vh;
  }

  /* Desktop: slightly wider phone chrome */
  .demo__phone-wrap .demo__phone-chrome {
    width: 300px;
  }

  /* Hide per-chapter mobile phones */
  .demo__phone--mobile {
    display: none;
  }

  /* Hide inline chapter phones on desktop (sticky phone handles it) */
  .demo__mockup-mobile {
    display: none;
  }

  /* Chapters: tall scroll column */
  .demo__chapters {
    flex: 1;
    gap: 0;
  }

  .demo__chapter {
    min-height: 100vh;
    align-items: flex-start;
    justify-content: center;
  }

  .demo__chapter-text {
    text-align: left;
    max-width: 480px;
  }

  .demo__chapter-sub {
    max-width: 42ch;
  }
}

/* ─── Large desktop (1024px+) ───────────────────────────────────────────── */

@media (min-width: 1024px) {
  .demo__inner {
    padding: 0 var(--space-lg);
  }
}

/* ─── Reduced motion ────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .demo__chapter-text {
    transition: opacity 0.15s ease;
    transform: none !important;
  }

  .demo__pill {
    transition: none;
  }


}

/* === bento.css === */

/* ─── Section ─────────────────────────────────────────────── */
.bento {
  background: var(--light-bg);
  padding: var(--space-xl) var(--space-sm);
}

.bento__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bento__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 6vw, 4rem);
  color: var(--charcoal);
  text-align: center;
  margin: 0 0 var(--space-lg);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ─── Grid ─────────────────────────────────────────────────── */
.bento__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

/* ─── Cards — base ─────────────────────────────────────────── */
.bento-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border: 1.5px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  will-change: transform;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border-color: var(--teal);
}

.bento-card--accent-amber:hover {
  border-color: var(--amber);
}

.bento-card--accent-blush:hover {
  border-color: var(--blush);
}

/* ─── Icon ─────────────────────────────────────────────────── */
.bento-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 52px;
  height: 52px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 10px;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-card:hover .bento-card__icon {
  transform: scale(1.1);
}

/* ─── Body ─────────────────────────────────────────────────── */
.bento-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.bento-card__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.3;
}

.bento-card__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #6b6b6b;
  margin: 0;
  line-height: 1.6;
}

/* ─── Scroll animation ─────────────────────────────────────── */
.bento-card--animate {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.bento-card--animate.bento-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.bento-card--animate.bento-card--visible:hover {
  transform: translateY(-4px);
}

/* ─── Tablet (≥ 768px) ─────────────────────────────────────── */
@media (min-width: 768px) {
  .bento {
    padding: var(--space-xl) var(--space-md);
  }

  .bento__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  /* Wide cards span both columns */
  .bento-card--wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .bento-card--wide .bento-card__icon {
    flex-shrink: 0;
  }

  /* Tall cards: taller min-height */
  .bento-card--tall {
    min-height: 260px;
  }
}

/* ─── Desktop (≥ 1024px) ───────────────────────────────────── */
@media (min-width: 1024px) {
  .bento {
    padding: var(--space-2xl) var(--space-lg);
  }

  .bento__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
  }

  /* Row 1: wide (cols 1-2) + tall (col 3) + tall (col 4) */
  .bento-card--wide:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .bento-card--tall:nth-child(2) {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .bento-card--tall:nth-child(3) {
    grid-column: 4;
    grid-row: 1 / 3;
  }

  /* Row 2: wide (cols 1-2) */
  .bento-card--wide:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 2;
    flex-direction: row;
    align-items: flex-start;
  }

  /* Row 3: two squares filling the full width (2 cols each) */
  .bento-card--square:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 3;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .bento-card--square:nth-child(6) {
    grid-column: 3 / 5;
    grid-row: 3;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
  }

  /* Tall cards: fill their row span */
  .bento-card--tall {
    min-height: unset;
  }

  /* Wide card icon sizing on desktop */
  .bento-card--wide .bento-card__icon {
    width: 60px;
    height: 60px;
    padding: 12px;
  }

  .bento-card__heading {
    font-size: 1.25rem;
  }
}

/* ─── Large desktop (≥ 1280px) ────────────────────────────── */
@media (min-width: 1280px) {
  .bento__inner {
    max-width: 1200px;
  }

  .bento-card {
    padding: var(--space-md) var(--space-lg);
  }
}

/* === difference / reminders / more sections === */

/* Shared static phone frame for below-hero sections */
.difference__phone-frame,
.reminders__phone-frame {
  width: 270px;
  background: #111;
  border-radius: 42px;
  padding: 13px 9px 9px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.difference__phone-notch,
.reminders__phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: #111;
  border-radius: 0 0 10px 10px;
  z-index: 10;
}

.difference__phone-screen,
.reminders__phone-screen {
  width: 100%;
  aspect-ratio: 320 / 660;
  border-radius: 32px;
  overflow: hidden;
  background: #f0fafa;
  position: relative;
}

.difference__phone-screen iframe,
.reminders__phone-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

.difference__phone-home,
.reminders__phone-home {
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.difference__phone-home::after,
.reminders__phone-home::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: rgba(255,255,255,0.22);
  border-radius: 4px;
}

/* Section number decoration */
.difference__num,
.reminders__num,
.more__num {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--amber);
  opacity: 0.55;
  margin-bottom: 4px;
  user-select: none;
}

/* ── Shared warm amber-tinted sections 01 / 02 / 03 ── */
.difference,
.reminders,
.more {
  background: rgba(245, 166, 35, 0.1);
}

/* THE DIFFERENCE — blends from light section above */
.difference {
  padding: var(--space-xl) clamp(var(--space-md), 5vw, var(--space-2xl));
  padding-top: var(--space-2xl);
  background: linear-gradient(to bottom, var(--light-bg) 0%, rgba(245, 166, 35, 0.1) 140px);
}

.difference__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}

.difference__text {
  max-width: 500px;
  flex-shrink: 0;
}

.difference__headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.difference__body {
  font-size: 1rem;
  color: rgba(45, 45, 45, 0.72);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

@media (min-width: 960px) {
  .difference__inner {
    flex-direction: row;
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
    justify-content: center;
  }

  .difference__phone {
    order: -1;
    flex-shrink: 0;
  }
}

/* SMART REMINDERS */
.reminders {
  padding: var(--space-xl) clamp(var(--space-md), 5vw, var(--space-2xl));
}

.reminders__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}

.reminders__text {
  max-width: 500px;
  flex-shrink: 0;
}

.reminders__headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.reminders__body {
  font-size: 1rem;
  color: rgba(45, 45, 45, 0.72);
  line-height: 1.7;
}

@media (min-width: 960px) {
  .reminders__inner {
    flex-direction: row;
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
    justify-content: center;
  }

  .reminders__phone {
    flex-shrink: 0;
  }
}

/* MORE THAN A BOOKING APP */
.more {
  padding: var(--space-xl) clamp(var(--space-md), 5vw, var(--space-2xl));
  /* Extra bottom padding so cards clear the 220px fade zone */
  padding-bottom: 320px;
  position: relative;
}

.more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--light-bg));
  pointer-events: none;
}

.more__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.more__headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
  line-height: 1.1;
}

.more__sub {
  font-size: 1.05rem;
  color: rgba(45, 45, 45, 0.6);
  margin-bottom: var(--space-2xl);
}

.more__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .more__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.more__card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.more__card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.06);
}

.more__card-icon {
  margin-bottom: var(--space-sm);
}

.more__card-headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.more__card-copy {
  font-size: 0.95rem;
  color: rgba(45, 45, 45, 0.65);
  line-height: 1.6;
}

.more__badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0, 194, 203, 0.12);
  border: 1px solid rgba(0, 194, 203, 0.25);
  border-radius: 20px;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}

/* === groomers.css === */

.groomers {
  background: var(--light-bg);
  padding: var(--space-2xl) var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.groomers__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 760px;
  margin: 0 auto var(--space-lg);

  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.groomers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  width: 100%;
  max-width: 1080px;
  margin-bottom: var(--space-lg);
}

.groomers__card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);

  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.groomers__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.groomers__card:nth-child(2) {
  transition-delay: 0.1s;
}

.groomers__card:nth-child(3) {
  transition-delay: 0.2s;
}

.groomers__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--teal);
}

.groomers__card-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--charcoal);
  margin: 0;
}

.groomers__card-copy {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.groomers__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--teal);
  background: transparent;
  border: 2px solid var(--teal);
  border-radius: var(--radius-pill);
  padding: 14px 36px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.18s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.18s ease;

  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s,
              background 0.25s ease, color 0.25s ease;
}

.groomers__cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.groomers__cta:hover {
  background: var(--teal);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 180, 0.3);
}

.groomers__cta:active {
  transform: scale(0.97);
}

.groomers__cta:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* Headline visible state */
.groomers__headline.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .groomers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .groomers {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .groomers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .groomers {
    padding: var(--space-2xl) var(--space-xl);
  }
}

/* === footer.css === */

/* ─── Footer CTA ────────────────────────────────────────────────────────────── */

.waitlist-footer {
  background-color: var(--light-bg);
  padding: var(--space-2xl) var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.waitlist-footer__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 0;
  max-width: 760px;
}

.waitlist-footer__subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: #999;
  margin: 0;
}

/* ─── Form ──────────────────────────────────────────────────────────────────── */

.waitlist-footer__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  margin-top: var(--space-xs);
  text-align: left;
}

/* Reuse hero__field, hero__field-label, hero__pills, hero__pill-label, hero__input styles */
/* Footer form uses same classes for consistency */

/* Two-column row for paired dropdowns */
.waitlist-footer__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.waitlist-footer__row .hero__field {
  flex: 1;
}

@media (min-width: 480px) {
  .waitlist-footer__row {
    flex-direction: row;
  }
}

.waitlist-footer__input {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid #d0d0d0;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  width: 100%;
}

/* Dropdown selects */
.waitlist-footer__select {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #d0d0d0;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300C2CB' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.waitlist-footer__select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.15);
}

.waitlist-footer__select option[value=""] {
  color: #aaa;
}

.waitlist-footer__input::placeholder {
  color: #aaa;
}

.waitlist-footer__input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.15);
  outline: none;
}

/* Role toggle pills */
.waitlist-footer__role-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: var(--space-md);
  justify-content: center;
}

.waitlist-footer__role-pill {
  padding: 10px 24px;
  border-radius: 40px;
  border: 2px solid rgba(0, 194, 203, 0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s ease;
}

.waitlist-footer__role-pill--active {
  background: var(--teal);
  border-color: var(--teal);
  color: #ffffff;
}

.waitlist-footer__role-pill:not(.waitlist-footer__role-pill--active):hover {
  border-color: var(--teal);
  color: var(--teal);
}

.waitlist-footer__btn {
  width: 100%;
  background: #00C2CB;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px var(--space-lg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.18s ease, background 0.18s ease;
  margin-top: 4px;
}

.waitlist-footer__btn:hover {
  background: #00adb5;
  box-shadow: 0 6px 20px rgba(0, 194, 203, 0.35);
  transform: translateY(-1px);
}

.waitlist-footer__btn:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: none;
}

.waitlist-footer__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  padding: var(--space-md) 0;
  text-align: center;
  max-width: 480px;
}

.waitlist-footer__success img {
  height: 40px;
  width: auto;
}

/* ─── Footer bar ────────────────────────────────────────────────────────────── */

.site-footer {
  background-color: var(--light-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.site-footer__logo {
  height: 28px;
  width: auto;
  display: block;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(45, 45, 45, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--teal);
}

.site-footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(45, 45, 45, 0.45);
  margin: 0;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(45, 45, 45, 0.5);
  transition: color 0.2s ease;
  line-height: 0;
}

.site-footer__social a:hover {
  color: var(--teal);
}

/* ─── Desktop layout (≥768px) ───────────────────────────────────────────────── */

@media (min-width: 768px) {
  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .site-footer__left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }

  .site-footer__right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .waitlist-footer {
    padding: var(--space-2xl) var(--space-xl);
  }

  .site-footer {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

@media (min-width: 1440px) {
  .site-footer {
    padding-left: 160px;
    padding-right: 160px;
  }

  .waitlist-footer {
    padding-left: 160px;
    padding-right: 160px;
  }
}



/* === Global reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
