:root {
  --serene-50: #f0f9ff;
  --serene-100: #e0f2fe;
  --serene-200: #bae6fd;
  --serene-300: #7dd3fc;
  --serene-400: #38bdf8;
  --serene-600: #0284c7;
  --serene-700: #0369a1;
  --serene-800: #075985;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-600: #d97706;
  --amber-800: #92400e;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--slate-50);
  color: var(--slate-700);
  -webkit-user-select: none;
  user-select: none;
}

body.landing {
  height: auto;
  min-height: 100%;
  -webkit-user-select: auto;
  user-select: auto;
  scroll-behavior: smooth;
}
html:has(body.landing) { scroll-behavior: smooth; height: auto; }

input, textarea { -webkit-user-select: text; user-select: text; font-family: inherit; }
button { font-family: inherit; cursor: pointer; touch-action: manipulation; border: none; background: none; }

.hidden { display: none !important; }

.screen {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-group { display: flex; align-items: center; gap: 12px; }

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--serene-100), var(--serene-50));
  border: 1px solid var(--serene-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-badge svg { width: 26px; height: 26px; }

.app-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--slate-800);
  margin: 0;
  line-height: 1.1;
}
.app-subtitle {
  font-size: 11px;
  color: var(--slate-500);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.icon-btn {
  color: var(--slate-400);
  padding: 8px;
  border-radius: 999px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-btn:hover { color: var(--serene-600); background: var(--serene-50); }

.section-heading {
  font-size: 17px;
  font-weight: 500;
  color: var(--slate-700);
  margin: 0 0 16px;
}

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

.mood-btn {
  background: white;
  border: 1px solid var(--slate-100);
  padding: 20px 12px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-800);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: all 0.3s;
}
.mood-btn:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  border-color: var(--serene-200);
  color: var(--serene-600);
}

.tip {
  padding: 14px 16px;
  background: var(--serene-50);
  border: 1px solid var(--serene-100);
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--serene-800);
}
.tip strong { font-weight: 600; }

.mood-display-card {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.mood-info { flex: 1; }
.mood-info p { margin: 0; }
.mood-label { font-size: 13px; color: var(--slate-500); }
.mood-value { font-weight: 600; color: var(--slate-800); font-size: 15px; }

.btn-change {
  font-size: 12px;
  padding: 6px 12px;
  color: var(--slate-500);
  background: var(--slate-50);
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-change:hover { color: var(--slate-700); background: var(--slate-100); }

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 12px;
}

.mentor-card {
  background: white;
  border: 1px solid var(--slate-100);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  display: flex;
  gap: 16px;
  text-align: left;
  transition: all 0.3s;
  align-items: flex-start;
}
.mentor-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  border-color: var(--serene-200);
}
.mentor-card:hover .mentor-name { color: var(--serene-600); }
.mentor-card:hover .mentor-avatar { transform: scale(1.05); }
.mentor-card:hover .select-badge { background: var(--serene-50); color: var(--serene-600); }

.mentor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--slate-50);
  flex-shrink: 0;
  object-fit: cover;
  transition: transform 0.3s;
}

.mentor-info { flex: 1; min-width: 0; }
.mentor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.mentor-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-800);
  margin: 0;
  transition: color 0.2s;
}
.select-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  background: var(--slate-50);
  padding: 4px 8px;
  border-radius: 999px;
  transition: all 0.2s;
}
.mentor-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--serene-600);
  margin: 0 0 6px;
}
.mentor-desc {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.5;
  margin: 0;
}

.footer-note { text-align: center; padding: 4px; }
.footer-note span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--serene-800);
  background: var(--serene-50);
  border: 1px solid var(--serene-100);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  max-width: 400px;
  width: 100%;
  padding: 24px;
  animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-logo { display: flex; justify-content: center; margin-bottom: 20px; }
.modal-logo-inner {
  background: var(--serene-50);
  padding: 16px;
  border-radius: 999px;
  display: flex;
}
.modal-logo-inner svg { width: 40px; height: 40px; }
.modal h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--slate-800);
  margin: 0 0 8px;
  text-align: center;
}
.modal-subtitle {
  color: var(--slate-500);
  text-align: center;
  font-size: 14px;
  margin: 0 0 20px;
}

.disclaimer-box {
  background: var(--amber-50);
  border: 1px solid var(--amber-100);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
}
.disclaimer-box .icon { color: var(--amber-600); flex-shrink: 0; margin-top: 2px; }
.disclaimer-box p { margin: 0; font-size: 13px; color: var(--slate-700); line-height: 1.5; }
.disclaimer-box .disclaimer-title { font-weight: 600; color: var(--amber-800); margin-bottom: 4px; font-size: 14px; }
.disclaimer-box p + p { margin-top: 8px; }

.btn-primary {
  width: 100%;
  background: var(--serene-600);
  color: white;
  font-weight: 500;
  padding: 12px;
  border-radius: 12px;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--serene-700); }

.privacy-note {
  text-align: center;
  font-size: 11px;
  color: var(--slate-400);
  margin: 12px 0 0;
}

.modal input[type="password"] {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
  transition: all 0.2s;
}
.modal input[type="password"]:focus {
  border-color: var(--serene-400);
  box-shadow: 0 0 0 3px var(--serene-100);
}

.button-row { display: flex; gap: 12px; }
.btn-secondary {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--slate-700);
  background: var(--slate-100);
  border-radius: 12px;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--slate-200); }
.btn-primary.inline { width: auto; flex: 1; padding: 10px 16px; font-size: 14px; }

#chat-screen { height: 100dvh; overflow: hidden; }

.chat-header {
  background: white;
  padding: 10px 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  flex-shrink: 0;
}
.chat-avatar { position: relative; flex-shrink: 0; }
.chat-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--slate-100);
  border: 1px solid var(--slate-100);
  display: block;
}
.status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border: 2px solid white;
  border-radius: 50%;
}
.chat-mentor-info { flex: 1; min-width: 0; }
.chat-mentor-info h1 {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-800);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-mentor-info p {
  font-size: 12px;
  font-weight: 500;
  color: var(--serene-600);
  margin: 0;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.chat-messages::-webkit-scrollbar { display: none; }

.message-row { display: flex; width: 100%; }
.message-row.user { justify-content: flex-end; }

.message-group {
  display: flex;
  gap: 10px;
  max-width: 75%;
}
.message-row.user .message-group { flex-direction: row-reverse; }

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: cover;
  background: var(--slate-100);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.message-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.message-row.ai .message-bubble {
  background: white;
  color: var(--slate-700);
  border: 1px solid var(--slate-100);
  border-top-left-radius: 4px;
}
.message-row.user .message-bubble {
  background: var(--serene-600);
  color: white;
  border-top-right-radius: 4px;
}
.message-time {
  font-size: 9px;
  margin-top: 4px;
  opacity: 0.7;
  text-align: right;
}
.message-row.user .message-time { color: #dbeafe; }
.message-row.ai .message-time { color: var(--slate-400); }

.typing-row { display: flex; gap: 10px; align-items: flex-end; }
.typing-indicator {
  background: white;
  border: 1px solid var(--slate-100);
  padding: 10px 14px;
  border-radius: 16px;
  border-top-left-radius: 4px;
  display: flex;
  gap: 4px;
}
.typing-dot {
  width: 7px;
  height: 7px;
  background: var(--serene-400);
  border-radius: 50%;
  animation: bounce 1s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.chat-input-bar {
  background: white;
  border-top: 1px solid var(--slate-100);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.03);
  padding: 12px 16px;
  flex-shrink: 0;
}
.chat-input-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 5px 8px;
  transition: all 0.2s;
}
.chat-input-wrap:focus-within {
  border-color: var(--serene-300);
  box-shadow: 0 0 0 3px var(--serene-100);
}
.chat-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 6px 12px;
  color: var(--slate-700);
}
.chat-input-wrap input::placeholder { color: var(--slate-400); }

.btn-send {
  background: var(--serene-600);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
  flex-shrink: 0;
}
.btn-send:hover:not(:disabled) { background: var(--serene-700); }
.btn-send:active:not(:disabled) { transform: scale(0.95); }
.btn-send:disabled {
  background: var(--slate-200);
  color: var(--slate-400);
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 480px) {
  .mentor-grid { grid-template-columns: 1fr; }
  .mood-grid { gap: 10px; }
  .container { padding: 20px 16px; gap: 20px; }
}

body.landing {
  background: #ffffff;
  color: var(--slate-700);
}

.landing-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}
.landing-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--slate-800);
}
.nav-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--serene-100), var(--serene-50));
  border: 1px solid var(--serene-100);
}
.nav-logo-badge svg { width: 22px; height: 22px; }
.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--slate-500);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--serene-600); }
.nav-cta {
  background: var(--serene-600);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.25);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--serene-700); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(2, 132, 199, 0.3); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(125, 211, 252, 0.15), transparent 60%),
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 70%);
  z-index: -1;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--serene-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--serene-800);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--serene-500, #0ea5e9);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(14, 165, 233, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--slate-800);
  margin: 0 0 20px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--serene-400), var(--serene-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate-500);
  margin: 0 0 32px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--serene-600);
  color: white;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.3);
  transition: all 0.2s;
}
.btn-primary-lg:hover {
  background: var(--serene-700);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(2, 132, 199, 0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  color: var(--slate-700);
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--serene-200); color: var(--serene-700); }

.hero-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500;
}
.hero-meta-item svg { color: var(--serene-600); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  width: 100%;
}
.hero-glow {
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 65%);
  filter: blur(30px);
}
.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42%;
  height: 42%;
  animation: floatGentle 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(14, 165, 233, 0.25));
}
.hero-logo svg { width: 100%; height: 100%; }
@keyframes floatGentle {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.orbit {
  position: absolute;
  inset: 0;
  animation: spin 28s linear infinite;
}
.orbit-2 { animation-duration: 34s; animation-direction: reverse; }
.orbit-3 { animation-duration: 40s; }
.orbit-4 { animation-duration: 46s; animation-direction: reverse; }
@keyframes spin {
  to { transform: rotate(360deg); }
}
.orbit-avatar {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: white;
  border: 4px solid white;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  animation: bobble 4s ease-in-out infinite;
  animation-delay: var(--orbit-delay, 0s);
}
.orbit-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes bobble {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-6px) rotate(0); }
}
.orbit-1 .orbit-avatar { top: 6%; left: 50%; margin-left: -38px; }
.orbit-2 .orbit-avatar { top: 50%; right: 4%; margin-top: -38px; }
.orbit-3 .orbit-avatar { bottom: 6%; left: 50%; margin-left: -38px; }
.orbit-4 .orbit-avatar { top: 50%; left: 4%; margin-top: -38px; }

.orbit-1 .orbit-avatar,
.orbit-3 .orbit-avatar { animation: bobble 4s ease-in-out infinite, counterspin 28s linear infinite; }
.orbit-2 .orbit-avatar { animation: bobble 4s ease-in-out infinite, counterspin 34s linear infinite reverse; }
.orbit-4 .orbit-avatar { animation: bobble 4s ease-in-out infinite, counterspin 46s linear infinite reverse; }
@keyframes counterspin { to { transform: rotate(-360deg); } }

.stats-strip {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--slate-100);
}
.stat { text-align: center; }
.stat-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--slate-800);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--serene-500, #0ea5e9), var(--serene-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500;
  margin-top: 6px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}
.section-tinted {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.5), rgba(255, 255, 255, 0));
}
.section-tinted > .section-head,
.section-tinted > .steps {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--serene-600);
  padding: 4px 12px;
  background: var(--serene-50);
  border: 1px solid var(--serene-100);
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow-light {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--slate-800);
  margin: 0 0 16px;
}
.section-head h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--serene-500, #0ea5e9), var(--serene-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 17px;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--serene-200);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: white;
}
.icon-sky    { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.icon-pink   { background: linear-gradient(135deg, #f9a8d4, #ec4899); }
.icon-green  { background: linear-gradient(135deg, #86efac, #16a34a); }
.icon-purple { background: linear-gradient(135deg, #c4b5fd, #7c3aed); }
.icon-amber  { background: linear-gradient(135deg, #fcd34d, #d97706); }
.icon-slate  { background: linear-gradient(135deg, #94a3b8, #475569); }
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-800);
  margin: 0 0 8px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate-500);
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
.step {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--serene-100), var(--serene-200));
  color: var(--serene-700);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-800);
  margin: 0 0 8px;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-500);
  margin: 0;
}
.step-connector {
  align-self: center;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--serene-200), var(--serene-100));
  border-radius: 2px;
}

.mentor-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.mentor-tile {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.mentor-tile:hover {
  transform: translateY(-6px);
  border-color: var(--serene-200);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.mentor-tile img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--slate-50);
  margin-bottom: 14px;
  border: 3px solid white;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s;
}
.mentor-tile:hover img { transform: scale(1.06); }
.mentor-tile h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-800);
  margin: 0 0 4px;
}
.mentor-tile p {
  font-size: 12px;
  color: var(--serene-600);
  font-weight: 500;
  margin: 0;
}

.privacy-section { padding-top: 40px; padding-bottom: 40px; }
.privacy-card {
  background: linear-gradient(135deg, var(--serene-700), var(--serene-800));
  border-radius: 28px;
  padding: 56px 48px;
  color: white;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(7, 89, 133, 0.3);
}
.privacy-card::before {
  content: '';
  position: absolute;
  inset: -50% -50% auto auto;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.3), transparent 70%);
  pointer-events: none;
}
.privacy-content h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: white;
}
.privacy-content > p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 28px;
  max-width: 520px;
}
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.privacy-list strong { color: white; font-weight: 600; }
.tick {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  color: #7dd3fc;
  border-radius: 50%;
  margin-top: 2px;
}
.privacy-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.shield-wrap {
  width: 200px;
  height: 200px;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  animation: floatGentle 6s ease-in-out infinite;
}
.shield-wrap svg { width: 100%; height: 100%; }

.final-cta {
  padding: 100px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(56, 189, 248, 0.15), transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--slate-800);
  margin: 0 0 16px;
}
.final-cta p {
  font-size: 17px;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 0 0 32px;
}

.landing-footer {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.5fr;
  gap: 32px;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-800);
}
.footer-brand-tag {
  font-size: 13px;
  color: var(--slate-500);
}
.footer-crisis {
  padding: 16px;
  background: var(--amber-50);
  border: 1px solid var(--amber-100);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--amber-800);
}
.footer-crisis strong { color: var(--amber-800); }
.footer-crisis span { color: var(--slate-700); font-weight: 500; }
.footer-disclaimer {
  font-size: 12px;
  color: var(--slate-400);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-meta { justify-content: center; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step-connector { width: 2px; height: 24px; background: linear-gradient(180deg, var(--serene-200), var(--serene-100)); justify-self: center; }
  .mentor-showcase { grid-template-columns: repeat(3, 1fr); }
  .privacy-card { grid-template-columns: 1fr; padding: 40px 32px; }
  .privacy-visual { order: -1; }
  .shield-wrap { width: 120px; height: 120px; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 80px 24px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .landing-nav { padding: 12px 16px; }
  .hero { padding: 48px 20px 60px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); row-gap: 30px; padding: 30px 20px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .mentor-showcase { grid-template-columns: repeat(2, 1fr); }
  .privacy-card { padding: 32px 24px; border-radius: 20px; }
  .section { padding: 64px 20px; }
  .final-cta { padding: 64px 20px 80px; }
}

.nav-active {
  color: var(--serene-700) !important;
  position: relative;
}
.nav-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--serene-500, #0ea5e9);
  border-radius: 2px;
}

.page-hero {
  position: relative;
  padding: 80px 24px 56px;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 130%;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 50% 10%, rgba(56, 189, 248, 0.2), transparent 60%),
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 80%);
}
.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--slate-800);
  margin: 16px 0 20px;
}
.page-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate-500);
  max-width: 600px;
  margin: 0 auto;
}

.back-home-btn { text-decoration: none; }

.crisis-band-wrap { padding-top: 0; padding-bottom: 60px; }
.crisis-band {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 1px solid #fde68a;
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.08);
}
.crisis-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.crisis-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crisis-head h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--amber-800);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.crisis-head p {
  font-size: 15px;
  color: var(--slate-700);
  margin: 0;
  line-height: 1.5;
}
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.crisis-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: white;
  border: 1px solid #fde68a;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.crisis-card:hover {
  transform: translateY(-2px);
  border-color: var(--amber-600);
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.15);
}
.crisis-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-800);
}
.crisis-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--slate-800);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.crisis-desc {
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.4;
  margin-top: 4px;
}
.crisis-foot {
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--slate-700);
  text-align: center;
}
.crisis-foot a { color: var(--amber-800); font-weight: 500; }

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: all 0.3s;
}
.resource-card:hover {
  transform: translateY(-4px);
  border-color: var(--serene-200);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}
.resource-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--serene-600);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.resource-emoji {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.resource-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--slate-800);
  margin: 0 0 8px;
}
.resource-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-500);
  margin: 0;
}
.resource-card p + p { margin-top: 10px; }
.resource-card strong { color: var(--slate-700); font-weight: 600; }
.resource-meta {
  font-size: 12px !important;
  color: var(--slate-400) !important;
  margin-top: 14px !important;
  font-weight: 500;
}
.resource-meta a { color: var(--serene-600); font-weight: 500; text-decoration: none; }
.resource-meta a:hover { color: var(--serene-700); }

.link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s;
  gap: 20px;
}
.link-card:hover {
  border-color: var(--serene-200);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transform: translateX(4px);
}
.link-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-800);
  margin: 0 0 4px;
}
.link-card p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.55;
  margin: 0;
}
.link-arrow {
  font-size: 22px;
  color: var(--slate-400);
  flex-shrink: 0;
  transition: all 0.2s;
}
.link-card:hover .link-arrow { color: var(--serene-600); transform: translateX(4px); }

.breathe-tool {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.technique-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  background: white;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid var(--slate-100);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.tech-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 10px;
  border-radius: 12px;
  background: transparent;
  color: var(--slate-500);
  font-weight: 500;
  transition: all 0.2s;
}
.tech-btn:hover { background: var(--slate-50); color: var(--slate-700); }
.tech-btn.is-active {
  background: linear-gradient(135deg, var(--serene-500, #0ea5e9), var(--serene-700));
  color: white;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
}
.tech-name { font-size: 15px; font-weight: 600; }
.tech-pattern { font-size: 11px; opacity: 0.8; }

.breathe-stage {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breathe-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.4), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.breathe-circle {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--serene-400), var(--serene-700));
  box-shadow: 0 20px 60px rgba(2, 132, 199, 0.3), inset 0 -20px 40px rgba(2, 132, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.6);
  transition: transform 0.5s ease-in-out;
  color: white;
}
.breathe-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.3);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.6; }
}
.breathe-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.breathe-phase {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.breathe-count {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}

.breathe-controls { display: flex; gap: 14px; }
.breathe-controls .btn-primary-lg { padding: 13px 28px; }
.breathe-controls .btn-ghost { padding: 13px 22px; border: 1px solid var(--slate-200); background: white; cursor: pointer; }

.breathe-stats {
  display: flex;
  gap: 32px;
}
.breathe-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.breathe-stat span:first-child {
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-800);
  font-variant-numeric: tabular-nums;
}
.breathe-stat span:last-child {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breathe-description {
  text-align: center;
  max-width: 520px;
  padding: 24px;
  background: var(--serene-50);
  border: 1px solid var(--serene-100);
  border-radius: 16px;
}
.breathe-description h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--serene-800);
  margin: 0 0 8px;
}
.breathe-description p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-700);
  margin: 0;
}

.when-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.when-card {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.when-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-800);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.when-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-500);
  margin: 0;
}
.when-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  color: white;
}
.tag-box      { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.tag-478      { background: linear-gradient(135deg, #c4b5fd, #7c3aed); }
.tag-coherent { background: linear-gradient(135deg, #86efac, #16a34a); }
.tag-extended { background: linear-gradient(135deg, #f9a8d4, #ec4899); }

.about-mission {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 24px;
  position: relative;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}
.about-quote-mark {
  position: absolute;
  top: -20px;
  left: 32px;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: var(--serene-200);
  font-family: Georgia, serif;
}
.about-mission p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--slate-700);
  margin: 0 0 16px;
}
.about-mission p:last-child { margin-bottom: 0; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.principle {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.principle-num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--serene-500, #0ea5e9), var(--serene-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.principle h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--slate-800);
  line-height: 1.3;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.principle p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate-500);
  margin: 0;
}

.how-it-works {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.how-row {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 16px;
  align-items: flex-start;
  transition: all 0.2s;
}
.how-row:hover { border-color: var(--serene-200); box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04); }
.how-step-tag {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--serene-100), var(--serene-200));
  color: var(--serene-700);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-row h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--slate-800);
  margin: 0 0 4px;
}
.how-row p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-500);
  margin: 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.2s;
}
.faq-item[open] { border-color: var(--serene-200); box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04); }
.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--serene-600);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-700);
  margin: 14px 0 0;
}

.safety-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--amber-50), #fef3c7);
  border: 1px solid #fde68a;
  border-radius: 24px;
  text-align: center;
}
.safety-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.safety-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--amber-800);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.safety-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate-700);
  margin: 0;
}
.safety-card strong { color: var(--amber-800); font-weight: 600; }

@media (max-width: 960px) {
  .crisis-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .when-grid { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 20px 40px; }
  .about-mission { padding: 32px 24px; }
  .about-mission p { font-size: 16px; }
}

@media (max-width: 640px) {
  .crisis-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .crisis-band { padding: 28px 20px; }
  .crisis-head { flex-direction: column; }
  .technique-picker { grid-template-columns: repeat(2, 1fr); }
  .breathe-stage { width: 280px; height: 280px; }
  .breathe-circle { width: 220px; height: 220px; }
  .breathe-phase { font-size: 22px; }
  .breathe-count { font-size: 40px; }
  .safety-card { padding: 28px 20px; }
  .link-card { flex-direction: column; align-items: flex-start; }
}

.back-home-btn { margin-right: 2px; }

