@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,700;0,9..144,900;1,9..144,700;1,9..144,900&display=swap');

/* ====================================================
   RESET
   ==================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input { font-family: inherit; }

/* ====================================================
   DESIGN TOKENS
   ==================================================== */
:root {
  /* Backgrounds */
  --stone:       #F0EAE1;
  --card:        #F8F4EF;
  --inset:       #E8E0D5;
  --slate-dark:  #1C2228;

  /* Teal (brand) */
  --teal:        #2B8C84;
  --teal-dark:   #1E6B65;
  --teal-light:  #5BB5AD;

  /* Neutrals */
  --slate:       #5E6E78;
  --slate-mid:   #3A4A54;

  /* Accent */
  --peach:       #E8956A;
  --sage:        #7AAF8A;
  --amber:       #C9922B;
  --danger:      #C0392B;

  /* Text */
  --text:        #2A2018;
  --text-muted:  #7A6E62;
  --border:      #D4C9BC;

  /* Typography */
  --ff-display: 'Fraunces', serif;
  --ff-body:    'Nunito', sans-serif;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Shadows (warm-toned, never cool grey) */
  --shadow-card:   0 2px 8px rgba(42,32,24,0.08), 0 0 0 1px rgba(212,201,188,0.5);
  --shadow-lg:     0 8px 24px rgba(42,32,24,0.12), 0 0 0 1px rgba(212,201,188,0.4);
  --shadow-phone:  0 32px 80px rgba(42,32,24,0.3), 0 8px 24px rgba(42,32,24,0.15);
  --shadow-btn:    0 4px 12px rgba(232,149,106,0.35);

  --nav-h: 68px;
}

/* ====================================================
   BASE
   ==================================================== */
html { scroll-behavior: smooth; }

body {
  background-color: var(--stone);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay — nearly invisible, felt not seen */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* ====================================================
   TYPOGRAPHY
   ==================================================== */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem);   font-weight: 900; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }

em { font-style: italic; }

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--teal-light); }
.eyebrow--peach { color: var(--peach); }
.eyebrow--muted { color: rgba(255,255,255,0.4); }

p {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--text-muted);
}

.text-white       { color: white; }
.text-white p     { color: rgba(255,255,255,0.72); }
.text-white h2,
.text-white h3    { color: white; }
.text-center      { text-align: center; }

/* ====================================================
   LAYOUT
   ==================================================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 96px 0; }

/* ====================================================
   NAVIGATION
   ==================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(240,234,225,0.92);
  border-bottom: 1px solid rgba(212,201,188,0.5);
  transition: box-shadow 0.25s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(42,32,24,0.08);
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 34px;
  width: auto;
  flex-shrink: 0;
}
.footer__logo img {
  height: 26px;
  width: auto;
  opacity: 0.85;
}

.nav__wordmark {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--teal-dark); }

.nav__cta {
  background: var(--teal);
  color: white;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(240,234,225,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 28px 32px;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu .nav__link {
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-menu .nav__cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 800;
  border-radius: var(--r-pill);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--peach);
  color: white;
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: #d9845c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,149,106,0.42);
}

.btn--teal {
  background: var(--teal);
  color: white;
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(43,140,132,0.28);
}
.btn--teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: white;
  padding: 13px 28px;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost {
  background: var(--card);
  color: var(--teal-dark);
  padding: 13px 28px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--teal);
  transform: translateY(-1px);
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  background: var(--teal-dark);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__topo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__topo svg {
  width: 140%;
  height: 140%;
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 28px;
}

.hero__content h1 {
  color: white;
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero__content h1 em {
  color: var(--teal-light);
}

.hero__content > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}
.hero__input::placeholder { color: rgba(255,255,255,0.45); }
.hero__input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.16);
}

.hero__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-top: 12px;
}

.hero__phones {
  position: relative;
  z-index: 1;
  margin-top: 72px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  padding: 0 28px;
}

/* ====================================================
   PHONE FRAME
   ==================================================== */
.phone {
  background: var(--slate-dark);
  border-radius: 44px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
  flex-shrink: 0;
  position: relative;
}

/* Notch */
.phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--slate-dark);
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.phone--main {
  width: 240px;
  z-index: 3;
}

.phone--side {
  width: 200px;
  opacity: 0.65;
}

.phone--side:first-child {
  transform: rotate(-4deg) translateY(20px);
}

.phone--side:last-child {
  transform: rotate(4deg) translateY(20px);
}

.phone__screen {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/19.5;
  background: var(--card);
}

.phone__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Styled placeholder — shows when screenshot not added yet */
.phone__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--card) 0%, var(--inset) 100%);
  display: flex;
  flex-direction: column;
  padding: 48px 16px 16px;
  gap: 10px;
}

.phone__mock-bar {
  height: 10px;
  background: var(--inset);
  border-radius: 6px;
  width: 55%;
  margin-bottom: 4px;
}

.phone__mock-title {
  height: 14px;
  background: var(--teal-dark);
  border-radius: 6px;
  width: 75%;
  opacity: 0.5;
}

.phone__mock-card {
  height: 64px;
  background: white;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  margin-top: 6px;
}

.phone__mock-row {
  height: 48px;
  background: white;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
}

/* ====================================================
   FEATURE STRIP (overview cards)
   ==================================================== */
.features-strip {
  background: var(--card);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

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

.feature-card {
  background: white;
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s, box-shadow 0.22s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(43,140,132,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.feature-card__icon--peach { background: rgba(232,149,106,0.12); }
.feature-card__icon--sage  { background: rgba(122,175,138,0.12); }

.gear-icons {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.gear-icons__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.gear-icons__row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.gear-icons__row img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}
.gear-icons__row img:hover {
  opacity: 1;
  transform: scale(1.12);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.95rem; }

/* ====================================================
   FEATURE SECTIONS (detailed)
   ==================================================== */
.feature-section { padding: 96px 0; }
.feature-section--alt { background: var(--card); }

.feature-section--dark {
  background: var(--teal-dark);
  position: relative;
  overflow: hidden;
}

.feature-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.feature-section__inner--reverse > :first-child { order: 2; }
.feature-section__inner--reverse > :last-child  { order: 1; }

.feature-section__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-section__copy .eyebrow { margin-bottom: 4px; }

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bullet__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 9px;
  flex-shrink: 0;
}
.bullet__dot--peach { background: var(--peach); }
.bullet__dot--sage  { background: var(--sage); }
.bullet__dot--light { background: var(--teal-light); }

.bullet p { margin: 0; font-size: 1rem; }

.feature-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.feature-section__mascot {
  width: 160px;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 24px rgba(42,32,24,0.12));
}

/* Mascot floating card (used on dark sections) */
.mascot-card {
  background: var(--card);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mascot-card img {
  width: 140px;
}

/* ====================================================
   TOPO BACKGROUND (decorative rings)
   ==================================================== */
.topo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.topo-bg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
}

/* ====================================================
   STATUS BADGES
   ==================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.78rem;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
}
.badge--great   { background: rgba(43,140,132,0.12); color: var(--teal-dark); }
.badge--great::before   { background: var(--teal); }
.badge--good    { background: rgba(122,175,138,0.12); color: #4a8a5a; }
.badge--good::before    { background: var(--sage); }
.badge--fair    { background: rgba(201,146,43,0.12); color: var(--amber); }
.badge--fair::before    { background: var(--amber); }
.badge--replace { background: rgba(192,57,43,0.1);  color: var(--danger); }
.badge--replace::before { background: var(--danger); }

/* ====================================================
   GEAR HEALTH DEMO STRIP
   ==================================================== */
.gear-demo {
  background: white;
  border-radius: var(--r-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.gear-demo__title {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text);
}

.gear-demo__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--inset);
}
.gear-demo__row:last-child { border-bottom: none; padding-bottom: 0; }

.gear-demo__name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

/* ====================================================
   WAITLIST SECTION
   ==================================================== */
.waitlist {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist__mascot {
  width: 140px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 8px 20px rgba(42,32,24,0.1));
}

.waitlist h2 { margin-bottom: 16px; }

.waitlist__sub {
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.waitlist__form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist__input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist__input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,140,132,0.12);
}
.waitlist__input::placeholder { color: var(--text-muted); }

.waitlist__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.4s ease;
}
.waitlist__success.visible { display: flex; }
.waitlist__success-mascot { width: 120px; }

.waitlist__success h3 {
  font-size: 1.6rem;
  color: var(--teal-dark);
}

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

/* ====================================================
   PLATFORM BADGE
   ==================================================== */
.platform-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}

.platform-badge--dark {
  background: var(--inset);
  border-color: var(--border);
  color: var(--text-muted);
}

/* ====================================================
   PAGE HERO (inner pages)
   ==================================================== */
.page-hero {
  background: var(--teal-dark);
  padding: calc(var(--nav-h) + 72px) 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero h1 { color: white; margin-bottom: 16px; }

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.page-hero__mascot {
  width: 180px;
  margin: 32px auto 0;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
}

/* ====================================================
   MISSION / STORY (about)
   ==================================================== */
.mission {
  padding: 96px 0;
  text-align: center;
}

.mission__quote {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.45;
  max-width: 780px;
  margin: 0 auto 40px;
  color: var(--text);
}
.mission__quote em { color: var(--teal-dark); }

.values {
  background: var(--card);
  padding: 96px 0;
}

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

.value-card {
  background: white;
  border-radius: var(--r-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
}

.value-card__num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }

/* ====================================================
   FAQ
   ==================================================== */
.faq { padding: 80px 0; }

.faq__header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq__mascot {
  width: 100px;
  filter: drop-shadow(0 6px 12px rgba(42,32,24,0.08));
}

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

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-align: left;
  gap: 16px;
}

.faq__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--inset);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  transition: transform 0.3s, background 0.2s, color 0.2s;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: white;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer p {
  padding-bottom: 24px;
}

.faq__item.open .faq__answer {
  max-height: 500px;
}

/* ====================================================
   PROSE (Privacy / Terms)
   ==================================================== */
.prose-page { background: var(--stone); }

.prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 28px 96px;
}

.prose .effective-date {
  display: inline-block;
  background: var(--inset);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.prose h2 {
  font-size: 1.5rem;
  margin: 52px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--teal-dark);
}

.prose h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }

.prose h3 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--text);
}

.prose p, .prose li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.prose ul li { margin-bottom: 8px; }

.prose a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong { color: var(--text); font-weight: 700; }

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--slate-dark);
  padding: 72px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

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

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

.footer__wordmark {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: white;
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer__col h5 {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }

.footer__col a {
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__col a:hover { color: white; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}

.footer__ios-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ====================================================
   UTILITY
   ==================================================== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.float { animation: float 4s ease-in-out infinite; }
.float-delay { animation: float 4s ease-in-out 1.5s infinite; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1020px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .features-strip__grid { grid-template-columns: 1fr; gap: 16px; }

  .feature-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .feature-section__inner--reverse > :first-child { order: unset; }
  .feature-section__inner--reverse > :last-child  { order: unset; }

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

  .hero__phones .phone--side { display: none; }
  .phone--main { width: 280px; }
}

/* Portrait mascot badge — hero section, wide screens only */
.hero__portrait-badge {
  display: none;
  position: absolute;
  right: 6%;
  top: calc(var(--nav-h) + 120px);
  width: 210px;
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(91,181,173,0.25);
  z-index: 2;
}
@media (min-width: 1280px) {
  .hero__portrait-badge { display: block; }
}

@media (max-width: 680px) {
  :root { --nav-h: 62px; }
  section { padding: 64px 0; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 48px); }

  .hero__form { flex-direction: column; }
  .hero__input { min-width: unset; width: 100%; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .mission__quote { font-size: 1.4rem; }

  .faq__question { font-size: 0.97rem; }
}
