/* ===========================
   1. RESET & BASE
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background-color: #FFFDF7;
  background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0F172A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ===========================
   2. CUSTOM PROPERTIES
   =========================== */
:root {
  /* Brand */
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --purple: #7C3AED;
  --purple-dark: #6D28D9;
  --green: #059669;
  --orange: #EA580C;
  --teal: #0D9488;
  --pink: #DB2777;
  --sky: #0EA5E9;
  --yellow: #D97706;

  /* Neutral */
  --text: #0F172A;
  --muted: #4B5563;
  --subtle: #6B7280;
  --border: rgba(37, 99, 235, 0.08);
  --surface: #FFFFFF;
  --bg: #FFFDF7;

  /* Category gradients */
  --grad-people: linear-gradient(135deg, #EDE9FE, #C4B5FD);
  --grad-games: linear-gradient(135deg, #D1FAE5, #6EE7B7);
  --grad-places: linear-gradient(135deg, #FFEDD5, #FCA5A5);
  --grad-activities: linear-gradient(135deg, #FCE7F3, #F9A8D4);
  --grad-school: linear-gradient(135deg, #CCFBF1, #5EEAD4);
  --grad-misc: linear-gradient(135deg, #FEF3C7, #FCD34D);
  --grad-blue: linear-gradient(135deg, #DBEAFE, #93C5FD);

  /* Shadows */
  --shadow-card: 0 2px 14px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 8px 28px rgba(15, 23, 42, 0.10);
  --shadow-sticker: 0 4px 16px rgba(15, 23, 42, 0.10);
  --shadow-phone: 0 20px 60px rgba(37, 99, 235, 0.18);

  /* Radii */
  --r-sm: 10px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 18px;
  --r-2xl: 22px;
  --r-full: 999px;

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --max-w-text: 640px;
}

/* ===========================
   3. TYPOGRAPHY
   =========================== */
.text-hero {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text);
}
.text-section {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: var(--text);
}
.text-subsection {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
}
.text-card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text);
}
.text-body-lg {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: var(--muted);
}
.text-body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.text-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.text-caption {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--subtle);
}

/* ===========================
   4. LAYOUT UTILITIES
   =========================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.container--narrow { max-width: var(--max-w-narrow); }
.container--text { max-width: var(--max-w-text); }
.text-center { text-align: center; }
.section-pad { padding-top: 96px; padding-bottom: 96px; }

/* ===========================
   5. SKIP LINK
   =========================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ===========================
   6. NAVIGATION
   =========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.nav__inner {
  max-width: var(--max-w);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.nav__logo-icon { font-size: 24px; }
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: width 0.2s;
}
.nav__links a:hover { color: var(--blue); }
.nav__links a:hover::after { width: 100%; }
.nav__links a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}
.nav__cta {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-full);
  padding: 8px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: var(--blue-dark); transform: translateY(-1px); }
.nav__cta:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__overlay.is-open { display: flex; }
.nav__overlay a {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__overlay a:hover { color: var(--blue); }
.nav__overlay a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ===========================
   7. STICKER SYSTEM
   =========================== */
.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sticker);
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: sticker-float 6s ease-in-out infinite;
}
.sticker--sm { width: 44px; height: 44px; font-size: 22px; border-radius: var(--r-md); }
.sticker--md { width: 56px; height: 56px; font-size: 28px; }
.sticker--lg { width: 72px; height: 72px; font-size: 36px; border-radius: var(--r-xl); }

.sticker--purple { background: var(--grad-people); }
.sticker--green { background: var(--grad-games); }
.sticker--orange { background: var(--grad-places); }
.sticker--pink { background: var(--grad-activities); }
.sticker--teal { background: var(--grad-school); }
.sticker--yellow { background: var(--grad-misc); }
.sticker--blue { background: var(--grad-blue); }

@keyframes sticker-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* ===========================
   8. CARD SYSTEM
   =========================== */
.card {
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.card--tilt-r { transform: rotate(0.8deg); }
.card--tilt-r:hover { transform: rotate(0deg) translateY(-4px); }
.card--tilt-l { transform: rotate(-0.8deg); }
.card--tilt-l:hover { transform: rotate(0deg) translateY(-4px); }

/* ===========================
   9. HOMEPAGE — HERO
   =========================== */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(124,58,237,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 15%, rgba(219,39,119,0.04) 0%, transparent 70%);
}
.hero__inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__text { position: relative; z-index: 2; }
.hero__eyebrow {
  color: var(--blue);
  margin-bottom: 16px;
}
.hero__headline { margin-bottom: 20px; }
.hero__headline em {
  font-style: normal;
  color: var(--yellow);
}
.hero__subline {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__appstore {
  display: inline-block;
  transition: transform 0.2s;
}
.hero__appstore:hover { transform: translateY(-2px); }
.hero__appstore img { height: 48px; }
.hero__appstore:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 8px;
}
.hero__secondary-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--purple);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.hero__secondary-link:hover { color: var(--purple-dark); gap: 10px; }
.hero__secondary-link:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Phone mockup */
.hero__phone-area {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__phone {
  width: 280px;
  border-radius: 36px;
  box-shadow: var(--shadow-phone);
  border: 1px solid rgba(37, 99, 235, 0.08);
  background: #F5F7FF;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero__phone img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   9b. HOMEPAGE — PILLARS
   =========================== */
.pillars {
  padding: 96px 24px;
}
.pillars__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.pillars__header .text-section { margin-bottom: 12px; }
.pillars__header .text-body-lg { max-width: 540px; margin: 0 auto; }

.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 72px;
  padding: 40px;
  border-radius: var(--r-2xl);
  position: relative;
}
.pillar:last-child { margin-bottom: 0; }
.pillar--reverse .pillar__image { order: -1; }

.pillar__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: white;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sticker);
}
.pillar__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 12px;
}
.pillar__desc {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 400px;
}

.pillar__screenshot {
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  background: #F5F7FF;
  max-width: 260px;
  margin: 0 auto;
  border: 1px solid rgba(37, 99, 235, 0.06);
}
.pillar__screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   9c. HOMEPAGE — WHY AI + FEATURES
   =========================== */
.why-features {
  padding: 96px 24px;
  background: linear-gradient(180deg, transparent, rgba(37,99,235,0.015), transparent);
}
.why-features__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.why-features__header .text-section { margin-bottom: 12px; }

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 72px;
}
.ai-card {
  position: relative;
}
.ai-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ai-card__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}
.ai-card__desc {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.features-header {
  text-align: center;
  margin-bottom: 32px;
}
.features-header .text-eyebrow {
  color: var(--subtle);
  margin-bottom: 8px;
}
.features-header .text-subsection { color: var(--text); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  padding: 22px 20px;
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.feature-card__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
}
.feature-card__desc {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* ===========================
   9d. HOMEPAGE — THERAPIST TEASER
   =========================== */
.therapist-teaser {
  background: linear-gradient(135deg, #1E293B, #334155);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.therapist-teaser__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.therapist-teaser__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.therapist-teaser__eyebrow {
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.therapist-teaser__headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.therapist-teaser__body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 24px;
}
.therapist-teaser__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.therapist-teaser__tag {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  border-radius: var(--r-full);
  padding: 8px 18px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.therapist-teaser__cta {
  display: inline-block;
  background: #fff;
  color: #1E293B;
  border-radius: var(--r-full);
  padding: 14px 32px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.therapist-teaser__cta:hover { background: #F1F5F9; transform: translateY(-2px); }
.therapist-teaser__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ===========================
   9e. HOMEPAGE — ABOUT
   =========================== */
.about {
  padding: 96px 24px;
  text-align: center;
}
.about__inner {
  max-width: var(--max-w-text);
  margin: 0 auto;
}
.about__inner .text-section { margin-bottom: 24px; }
.about__divider {
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: var(--blue);
  margin: 0 auto 32px;
}
.about__inner .text-body-lg {
  max-width: 580px;
  margin: 0 auto;
}

/* ===========================
   10. THERAPIST PAGE
   =========================== */
.therapist-hero {
  background: linear-gradient(135deg, #1E293B, #334155);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.therapist-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.therapist-hero__eyebrow {
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.therapist-hero__headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.therapist-hero__subline {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
}
.therapist-hero__cta {
  display: inline-block;
  background: #fff;
  color: #1E293B;
  border-radius: var(--r-full);
  padding: 14px 32px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.therapist-hero__cta:hover { background: #F1F5F9; transform: translateY(-2px); }
.therapist-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.therapist-values {
  padding: 96px 24px;
}
.therapist-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.therapist-value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.therapist-value-card__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}
.therapist-value-card__desc {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.therapist-dashboard {
  padding: 0 24px 96px;
  text-align: center;
}
.therapist-dashboard__inner {
  max-width: 700px;
  margin: 0 auto;
}
.therapist-dashboard__inner .text-section { margin-bottom: 16px; }
.therapist-dashboard__body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
}
.therapist-dashboard__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.therapist-dashboard__tag {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.08));
  color: var(--text);
  border-radius: var(--r-full);
  padding: 10px 22px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
}
.therapist-dashboard__note {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--subtle);
  font-style: italic;
}

.therapist-signup {
  padding: 0 24px 96px;
}
.therapist-signup__card {
  max-width: 520px;
  margin: 0 auto;
  border-top: 3px solid var(--purple);
  padding: 40px 32px;
}
.therapist-signup__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}

/* ===========================
   11. LEGAL PAGES
   =========================== */
.legal {
  padding: 120px 24px 96px;
  max-width: 700px;
  margin: 0 auto;
}
.legal h1 {
  margin-bottom: 8px;
}
.legal__date {
  margin-bottom: 48px;
}
.legal__content h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal__content p {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
}
.legal__content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}
.legal__content li {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 8px;
  list-style: disc;
}

/* ===========================
   12. FORM ELEMENTS
   =========================== */
.form__group {
  margin-bottom: 16px;
}
.form__label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}
.form__input,
.form__select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form__input::placeholder { color: var(--subtle); }
.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}
.form__submit {
  display: block;
  width: 100%;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: var(--r-full);
  padding: 14px 32px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 24px;
}
.form__submit:hover { background: var(--purple-dark); transform: translateY(-1px); }
.form__submit:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}
.form__note {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--subtle);
  text-align: center;
  margin-top: 16px;
}
.form__success {
  text-align: center;
  padding: 40px 20px;
}
.form__success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.form__success-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}
.form__success-desc {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--muted);
}

/* ===========================
   13. FOOTER
   =========================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 44px 24px 32px;
  text-align: center;
}
.footer__tagline {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.footer__social a {
  color: var(--subtle);
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--blue); }
.footer__social a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}
.footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer__legal a {
  color: var(--subtle);
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--blue); }
.footer__legal-sep { color: #D1D5DB; font-size: 13px; }
.footer__copyright {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--subtle);
}

/* ===========================
   14. ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Tilt-in variants */
.card--tilt-r.reveal {
  transform: translateY(28px) rotate(0.8deg);
}
.card--tilt-r.reveal.is-visible {
  transform: translateY(0) rotate(0.8deg);
}
.card--tilt-l.reveal {
  transform: translateY(28px) rotate(-0.8deg);
}
.card--tilt-l.reveal.is-visible {
  transform: translateY(0) rotate(-0.8deg);
}

/* ===========================
   15. RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1023px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .therapist-values__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 100px 24px 60px; }
  .hero__phone { width: 240px; }
  .pillar { gap: 40px; padding: 32px 24px; }
  .pillar__desc { max-width: none; }
}

/* ===========================
   16. RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 767px) {
  /* Nav */
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { height: 56px; }

  /* Hero */
  .hero { padding: 60px 24px 48px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__subline { max-width: none; margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__phone { width: 220px; }

  /* Stickers — hide on mobile */
  .hero__phone-area .sticker { display: none; }

  /* Pillars */
  .pillars { padding: 64px 24px; }
  .pillar {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
    text-align: center;
  }
  .pillar__image { order: -1 !important; }
  .pillar__desc { max-width: none; }
  .pillar__screenshot { max-width: 200px; }
  .pillar__number { margin-left: auto; margin-right: auto; }

  /* AI + Features */
  .why-features { padding: 64px 24px; }
  .ai-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  /* Therapist */
  .therapist-teaser { padding: 64px 24px; }
  .therapist-values__grid { grid-template-columns: 1fr; }
  .therapist-signup__card { padding: 32px 20px; }

  /* About */
  .about { padding: 64px 24px; }

  /* Section spacing */
  .section-pad { padding-top: 64px; padding-bottom: 64px; }
}

/* ===========================
   17. REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
  .sticker { animation: none !important; }
  .card, .card--tilt-r, .card--tilt-l,
  .ai-card, .feature-card { transition: none !important; }
  .nav__hamburger span { transition: none; }
  .nav__links a::after { transition: none; }
}
