/* ============================================================
   AASHWAS — style.css  v2.1
   Deep Teal-Tech + Healthcare Premium
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg:        #090E13;
  --bg2:       #0C1A1A;
  --bg3:       #0F2222;
  --surface:   #111E1E;
  --surface2:  #152525;
  --surface3:  #1A2E2E;
  --border:    rgba(0, 209, 178, 0.07);
  --border2:   rgba(0, 209, 178, 0.13);
  --border3:   rgba(0, 209, 178, 0.22);
  --accent:        #00D1B2;
  --accent-dim:    #00A892;
  --accent-bright: #14F1D9;
  --accent-glow:   rgba(0, 209, 178, 0.15);
  --accent-glow2:  rgba(0, 209, 178, 0.06);
  --glass-bg:     rgba(0, 209, 178, 0.04);
  --glass-border: rgba(0, 209, 178, 0.15);
  --glass-blur:   24px;
  --green:      #00D1B2;
  --green-dim:  #00A892;
  --green-glow: rgba(0, 209, 178, 0.15);
  --teal:       #14F1D9;
  --gold:   #F0C060;
  --red:    #FF5A7E;
  --orange: #FF8C42;
  --text:  #E6F1F1;
  --text2: #8AADAD;
  --text3: #3D6060;
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.7);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.85);
  --nav-h:     68px;
  --sidebar-w: 240px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
input, select, button, textarea {
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 209, 178, 0.20);
  border-color: var(--accent) !important;
}
.page { display: none; }
.page.active { display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, #00D1B2 0%, #14F1D9 40%, #E6F1F1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.center { text-align: center; }
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,209,178,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: transform;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px;
  font-weight: 600; cursor: pointer; transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid transparent; white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, #00D1B2, #00B89A);
  color: #050E0E; font-weight: 700; border-color: transparent;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #14f1d756, #00D1B2);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 209, 178, 0.40), 0 2px 8px rgba(0,0,0,0.4);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-glow {
  box-shadow: 0 0 24px rgba(0, 209, 178, 0.25), 0 4px 16px rgba(0,0,0,0.3);
}
.btn-glow:hover {
  box-shadow: 0 0 48px rgba(0, 209, 178, 0.50), 0 8px 32px rgba(0,0,0,0.5) !important;
}
.btn-outline {
  border-color: var(--border3); color: var(--text); background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(0, 209, 178, 0.06); transform: translateY(-2px);
}
.btn-ghost { background: transparent; color: var(--text2); }
.btn-ghost:hover { color: var(--text); background: var(--surface); }
.btn-lg  { padding: 15px 32px; font-size: 16px; border-radius: 12px; }
.btn-sm  { padding: 6px 14px; font-size: 13px; }
.btn-xs  { padding: 4px 10px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(9, 14, 19, 0.75);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(9, 14, 19, 0.96);
  border-bottom-color: var(--border2);
  box-shadow: 0 4px 32px rgba(0, 209, 178, 0.05);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  color: var(--text); letter-spacing: -0.02em;
}
.logo-mark { display: flex; align-items: center; }
.logo-icon { font-size: 22px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: black; font-size: 14px; font-weight: 500;
  padding: 7px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(0,209,178,0.05); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* ============================================================
   SECTION COMMON
============================================================ */
.section { padding: 100px 0; }
.section-dark { background: var(--bg2); }
.section-tag {
  display: inline-block;
  background: rgba(0, 209, 178, 0.08); color: var(--accent);
  border: 1px solid rgba(0, 209, 178, 0.20);
  padding: 5px 16px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800; line-height: 1.12;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.section-sub { color: var(--text2); font-size: 17px; margin-bottom: 48px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  padding: var(--nav-h) 0 0;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #0F2A2A 0%, #0B1A1A 40%, #090E13 75%);
}
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.7;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 209, 178, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 209, 178, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none; z-index: 1;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0; will-change: transform;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.10) 0%, transparent 70%);
  top: -10%; left: -8%; animation: blobFloat1 18s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(20, 241, 217, 0.07) 0%, transparent 70%);
  top: 30%; right: -5%; animation: blobFloat2 22s ease-in-out infinite;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 168, 146, 0.08) 0%, transparent 70%);
  bottom: 10%; left: 30%; animation: blobFloat3 26s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, 30px) scale(1.08); }
  66%       { transform: translate(-20px, 50px) scale(0.95); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-50px, -40px) scale(1.12); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(30px, -30px) scale(1.06); }
  80%       { transform: translate(-40px, 20px) scale(0.93); }
}
.hero-wrapper {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 40px;
  padding: 40px 24px 80px; width: 100%;
}
.hero-top-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 209, 178, 0.07);
  border: 1px solid rgba(0, 209, 178, 0.18);
  padding: 8px 20px; border-radius: 40px;
  font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: 0.02em;
  animation: fadeSlideDown 0.8s ease both;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0, 209, 178, 0.6);
  animation: pulseRing 2s ease-in-out infinite;
}
@keyframes pulseRing {
  0%    { box-shadow: 0 0 0 0 rgba(0,209,178,0.6); }
  70%   { box-shadow: 0 0 0 8px rgba(0,209,178,0); }
  100%  { box-shadow: 0 0 0 0 rgba(0,209,178,0); }
}
.hero-image-center {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 600px; animation: fadeSlideUp 1s 0.2s ease both;
}
.image-glow-ring {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(0, 209, 178, 0.12);
  animation: glowRingPulse 4s ease-in-out infinite;
}
.image-glow-core {
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.14) 0%, transparent 70%);
  animation: glowCorePulse 3s ease-in-out infinite alternate;
}
@keyframes glowRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.05); opacity: 1; }
}
@keyframes glowCorePulse {
  from { transform: scale(0.9); opacity: 0.8; }
  to   { transform: scale(1.1); opacity: 1; }
}
.hero-img-placeholder {
  width: 240px; height: 240px; border-radius: 50%;
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
  border: 1.5px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 8px rgba(0, 209, 178, 0.05),
    0 0 0 20px rgba(0, 209, 178, 0.03),
    0 24px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(0, 209, 178, 0.12);
  animation: floatImage 6s ease-in-out infinite;
  overflow: hidden; position: relative;
}
.hero-img-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.care-illustration {
  display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative;
}
.care-person { font-size: 52px; line-height: 1; }
.care-child  { margin-top: -8px; }
.care-connection { position: absolute; bottom: -20px; opacity: 0.7; }
@keyframes floatImage {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
.float-pill {
  position: absolute; display: flex; align-items: center; gap: 7px;
  background: rgba(9, 20, 20, 0.82); backdrop-filter: blur(20px);
  border: 1px solid var(--border2); border-radius: 40px;
  padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--text);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,209,178,0.06);
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; }
.pill-green { background: var(--accent); box-shadow: 0 0 6px rgba(0,209,178,0.8); }
.float-pill-1 { left: -20px; top: 10%; animation: pillFloat1 4s ease-in-out infinite; }
.float-pill-2 { right: -10px; top: 40%; animation: pillFloat2 5s ease-in-out infinite; }
.float-pill-3 { left: 0; bottom: 5%; animation: pillFloat3 4.5s ease-in-out infinite; }
@keyframes pillFloat1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pillFloat2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes pillFloat3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ── Glass card ── */
.hero-glass-card {
  background: rgba(0, 209, 178, 0.03);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 48px 56px;
  max-width: 780px; width: 100%;
  position: relative; overflow: hidden;
  animation: fadeSlideUp 1s 0.4s ease both;
}
.hero-glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,209,178,0.3), transparent);
}
.hero-glass-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(0,209,178,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 18px; color: var(--text);
}
.hero-subtitle {
  font-size: 16px; color: var(--text2);
  max-width: 560px; margin: 0 auto 28px; line-height: 1.75; font-weight: 400;
}

/* ── NEW: Hero Waitlist Bar ── */
.hero-waitlist-bar {
  display: flex; gap: 10px; align-items: center;
  max-width: 520px; margin: 0 auto 12px;
  position: relative; z-index: 1;
}
.hero-email-input {
  flex: 1; background: rgba(9, 14, 19, 0.6);
  border: 1px solid var(--border3); color: var(--text);
  padding: 13px 18px; border-radius: 10px; font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(12px);
}
.hero-email-input::placeholder { color: var(--text3); }
.hero-email-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 209, 178, 0.12);
  outline: none;
}
.waitlist-note {
  font-size: 12px; color: var(--text3); margin-bottom: 20px;
  position: relative; z-index: 1;
}
.waitlist-note.success-note {
  color: var(--accent); font-weight: 600;
}

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px;
  position: relative; z-index: 1;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  color: var(--accent); line-height: 1; letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.07em; margin-top: 4px; font-weight: 600;
}
.stat-divider { width: 1px; height: 40px; background: var(--border2); flex-shrink: 0; }

/* scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-dot {
  width: 20px; height: 32px; border: 1.5px solid rgba(0,209,178,0.3);
  border-radius: 10px; position: relative;
}
.scroll-dot::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--accent); border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite; opacity: 0.8;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.2; }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.hero-glow-2 {
  width: 380px; height: 380px; background: rgba(0, 209, 178, 0.06);
  bottom: 8%; right: 4%;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.steps-grid { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.step-card {
  flex: 1; min-width: 220px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(0,209,178,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.step-card:hover { transform: translateY(-5px); border-color: var(--border2); box-shadow: 0 12px 40px rgba(0,209,178,0.08); }
.step-card:hover::before { opacity: 1; }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--border2); line-height: 1; margin-bottom: 8px; }
.step-icon { font-size: 32px; margin-bottom: 12px; }
.step-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p  { color: var(--text2); font-size: 14px; line-height: 1.7; }
.step-arrow   { font-size: 28px; color: var(--text3); flex-shrink: 0; }

/* ============================================================
   FEATURES
============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: 0 12px 40px rgba(0,209,178,0.08); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card-lg { grid-column: span 2; }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { color: var(--text2); font-size: 14px; line-height: 1.7; }
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.feature-tags span {
  background: rgba(0, 209, 178, 0.08); color: var(--accent);
  border: 1px solid rgba(0, 209, 178, 0.18);
  padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 600;
}

/* ============================================================
   STORY
============================================================ */
.section-story { background: var(--bg); position: relative; overflow: hidden; }
.story-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,209,178,0.04) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-para { color: var(--text2); margin-bottom: 16px; font-size: 16px; line-height: 1.85; }
.story-para em { color: var(--text); font-style: italic; }
.story-highlight { color: var(--accent) !important; font-weight: 600; font-size: 17px !important; }
.story-quote-block {
  background: var(--surface); border: 1px solid var(--border2);
  border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 40px;
  position: relative;
}
.story-quote-block::before {
  content: '"'; position: absolute; top: 16px; left: 24px;
  font-size: 80px; color: var(--accent); opacity: 0.15; font-family: Georgia, serif; line-height: 1;
}
.story-quote-block blockquote {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 700; line-height: 1.55; color: var(--text); margin-bottom: 16px;
}
.story-quote-block cite { color: var(--text3); font-style: italic; font-size: 14px; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--bg2); border-top: 1px solid var(--border); }
.footer-inner { padding: 60px 0 40px; display: flex; gap: 48px; flex-wrap: wrap; }
.footer-logo { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 0; }
.footer-logo > *:first-child {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  display: flex; align-items: center; gap: 8px;
}
.footer-logo p { font-size: 13px; color: var(--text3); margin-top: 10px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col   { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; color: var(--text);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.10em;
}
.footer-col a { font-size: 13px; color: var(--text3); transition: color 0.2s; font-weight: 500; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding: 20px 24px; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--text3); }

/* ============================================================
   AUTH / SIGNUP
============================================================ */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left {
  background: var(--bg2); padding: 48px 56px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
}
.auth-brand {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  display: flex; align-items: center; gap: 8px; margin-bottom: 56px;
}
.auth-copy h2 { font-family: var(--font-display); font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.auth-copy p  { color: var(--text2); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.auth-feature-list { display: flex; flex-direction: column; gap: 12px; }
.auth-feat { color: var(--text); font-size: 15px; }
.auth-right {
  padding: 48px 56px; display: flex; align-items: center;
  justify-content: center; background: var(--bg);
}
.auth-card {
  width: 100%; max-width: 420px;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 36px;
}
.steps-indicator { display: flex; align-items: center; gap: 0; margin-bottom: 32px; }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface2); color: var(--text3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; transition: all 0.3s;
}
.step-dot.active { background: var(--accent); color: #050E0E; }
.step-dot.done   { background: var(--accent-dim); color: #050E0E; }
.step-line { flex: 1; height: 2px; background: var(--border2); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-sub { color: var(--text2); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text2); margin-bottom: 8px; letter-spacing: 0.01em;
}
.form-group input, .form-group select {
  width: 100%; background: var(--bg2); border: 1px solid var(--border2);
  color: var(--text); padding: 11px 14px; border-radius: 8px; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,209,178,0.10);
}
.form-group select option { background: var(--bg2); }
.input-prefix { display: flex; }
.input-prefix span {
  background: var(--surface2); border: 1px solid var(--border2);
  border-right: none; padding: 11px 12px; border-radius: 8px 0 0 8px;
  color: var(--text2); font-size: 13px;
}
.input-prefix input { border-radius: 0 8px 8px 0; }
.form-row { display: flex; gap: 10px; }
.form-row .btn { flex: 1; justify-content: center; }

/* ── Confirmation / Step 3 ── */
.confirm-success-icon {
  font-size: 56px; text-align: center; margin-bottom: 16px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.confirm-details-box {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 14px 16px;
  margin: 16px 0; font-size: 13px; color: var(--text2);
  line-height: 1.9;
}
.confirm-details-box strong { color: var(--accent); }
.confirm-next-steps {
  display: flex; flex-direction: column; gap: 12px; margin: 20px 0;
}
.confirm-step-item {
  display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--text2);
}
.confirm-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,209,178,0.12); border: 1px solid rgba(0,209,178,0.25);
  color: var(--accent); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.confirm-share-prompt {
  background: rgba(0,209,178,0.04); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 16px;
  text-align: center; margin: 16px 0;
}
.confirm-share-prompt p { font-size: 13px; color: var(--text2); margin-bottom: 10px; }
.confirm-share-btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.confirm-home-btn { display: block; text-align: center; margin-top: 12px; width: 100%; justify-content: center; }

/* ── About ── */
.about-page  { padding-top: 120px; position: relative; overflow: hidden; }
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 72px; }
.about-text p { color: var(--text2); margin-bottom: 20px; font-size: 16px; line-height: 1.85; }
.about-values { display: flex; flex-direction: column; gap: 16px; }
.value-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start; transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--border2); }
.value-card span { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.value-card h4   { font-family: var(--font-display); font-weight: 700; margin-bottom: 6px; }
.value-card p    { color: var(--text2); font-size: 14px; line-height: 1.7; }
.trust-section   { border-top: 1px solid var(--border); padding-top: 56px; }
.trust-section h3 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 32px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.trust-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.trust-icon  { font-size: 36px; margin-bottom: 12px; }
.trust-card h4 { font-weight: 700; margin-bottom: 8px; font-size: 15px; }
.trust-card p  { color: var(--text2); font-size: 13px; line-height: 1.6; }

/* ============================================================
   DASHBOARD LAYOUT
============================================================ */
.dashboard-layout { display: flex; min-height: 100vh; padding-top: 0; }
.sidebar {
  width: var(--sidebar-w); background: var(--bg2); border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 200; transition: transform 0.3s;
}
.sidebar-logo {
  padding: 20px 18px; font-family: var(--font-display); font-size: 18px; font-weight: 800;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px;
}
.sidebar-close { display: none; margin-left: auto; background: none; border: none; color: var(--text2); font-size: 18px; cursor: pointer; }
.sidebar-user { padding: 16px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0, 209, 178, 0.15); border: 1px solid rgba(0, 209, 178, 0.25);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; flex-shrink: 0;
}
.user-name { font-size: 14px; font-weight: 600; }
.user-plan { font-size: 11px; color: var(--accent); font-weight: 600; }
.sidebar-nav { flex: 1; overflow-y: auto; padding: 12px 10px; }
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; color: var(--text2);
  font-size: 14px; font-weight: 500; transition: all 0.2s; position: relative;
}
.nav-item:hover  { background: var(--surface); color: var(--text); }
.nav-item.active { background: rgba(0, 209, 178, 0.10); color: var(--accent); }
.nav-icon { font-size: 16px; width: 20px; text-align: center; }
.badge {
  margin-left: auto; background: var(--red); color: white;
  font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 10px;
}
.sidebar-footer { padding: 16px 10px; border-top: 1px solid var(--border); }
.dash-main { flex: 1; margin-left: var(--sidebar-w); display: flex; flex-direction: column; min-height: 100vh; }
.dash-topbar {
  height: 56px; background: var(--bg2); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 24px; gap: 12px;
  position: sticky; top: 0; z-index: 100;
}
.sidebar-toggle { display: none; background: none; border: none; color: var(--text); font-size: 20px; cursor: pointer; padding: 4px; }
.topbar-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; flex: 1; }
.topbar-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.topbar-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0, 209, 178, 0.15); border: 1px solid rgba(0, 209, 178, 0.25);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.alert-chip {
  background: rgba(255, 90, 126, 0.10); color: var(--red);
  border: 1px solid rgba(255, 90, 126, 0.20);
  padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600; cursor: pointer;
}
.alert-chip-green {
  background: rgba(0, 209, 178, 0.08); color: var(--accent);
  border: 1px solid rgba(0, 209, 178, 0.18);
  padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600;
}
.dash-tab { display: none; }
.dash-tab.active { display: block; }
.dash-content { padding: 32px 28px; max-width: 1000px; }
.dash-heading { font-family: var(--font-display); font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.dash-sub { color: var(--text2); margin-bottom: 28px; font-size: 14px; }

.parent-status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.parent-card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 24px; transition: border-color 0.3s; }
.parent-card:hover { border-color: var(--border3); }
.parent-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.parent-info     { display: flex; align-items: center; gap: 12px; }
.parent-avatar   { font-size: 32px; }
.parent-name     { font-weight: 700; font-size: 15px; }
.parent-location { color: var(--text3); font-size: 12px; }
.status-chip     { padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.status-ok       { background: rgba(0, 209, 178, 0.10); color: var(--accent); }
.status-warn     { background: rgba(240, 192, 96, 0.10); color: var(--gold); }
.parent-summary-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.ps-item { display: flex; align-items: center; gap: 8px; background: var(--bg2); border-radius: 8px; padding: 8px 12px; flex: 1; min-width: 100px; }
.ps-item span   { font-size: 18px; }
.ps-item small  { display: block; font-size: 11px; color: var(--text3); }
.ps-item strong { display: block; font-size: 13px; font-weight: 600; }
.parent-card-footer { display: flex; align-items: center; justify-content: space-between; }
.response-time  { font-size: 12px; color: var(--text3); }

.metrics-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.metric-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.metric-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.metric-icon  { font-size: 24px; margin-bottom: 8px; }
.metric-val   { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--accent); }
.metric-label { font-size: 12px; color: var(--text3); margin-top: 4px; font-weight: 600; }

.trends-controls { display: flex; gap: 8px; margin-bottom: 24px; }
.trend-btn {
  padding: 8px 18px; border-radius: 8px; cursor: pointer;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text2); font-size: 13px; transition: all 0.2s; font-weight: 600;
}
.trend-btn.active, .trend-btn:hover { background: var(--accent); color: #050E0E; border-color: var(--accent); font-weight: 700; }
.charts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.chart-card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 24px; }
.chart-card.chart-full { grid-column: span 2; }
.chart-title { font-weight: 700; font-size: 14px; margin-bottom: 20px; }
.chart-area  { height: 160px; }
.bar-chart   { display: flex; align-items: flex-end; gap: 6px; height: 100%; }
.bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top, #00D1B2, #14F1D9); opacity: 0.6; transition: opacity 0.2s; min-width: 12px; }
.bar:hover { opacity: 1; }
.line-chart { position: relative; height: 100%; background: linear-gradient(to bottom, rgba(0,209,178,0.04), transparent); border-radius: 8px; overflow: hidden; }
.line-chart::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(135deg, transparent 20%, rgba(0,209,178,0.12) 50%, rgba(20,241,217,0.06) 80%);
  clip-path: polygon(0 80%, 10% 60%, 20% 70%, 30% 40%, 45% 50%, 60% 20%, 75% 35%, 90% 15%, 100% 25%, 100% 100%, 0 100%);
}

.chat-toolbar { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.search-box { flex: 1; min-width: 200px; background: var(--surface); border: 1px solid var(--border2); color: var(--text); padding: 9px 14px; border-radius: 8px; }
.date-filter { background: var(--surface); border: 1px solid var(--border2); color: var(--text2); padding: 9px 14px; border-radius: 8px; }
.chat-window { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; max-height: 500px; overflow-y: auto; }
.chat-day-label { text-align: center; font-size: 12px; color: var(--text3); padding: 8px 0; }
.chat-msg { display: flex; flex-direction: column; }
.chat-msg-in  .chat-bubble { align-self: flex-start; background: var(--bg2); border-radius: 0 12px 12px 12px; }
.chat-msg-out .chat-bubble { align-self: flex-end; background: var(--surface3); border: 1px solid var(--border2); border-radius: 12px 0 12px 12px; }
.chat-bubble { max-width: 70%; padding: 12px 16px; font-size: 14px; line-height: 1.6; }
.chat-meta { font-size: 11px; color: var(--text3); margin-top: 4px; padding: 0 4px; }
.chat-msg-out .chat-meta { text-align: right; }
.chat-summary-pill { background: rgba(0, 209, 178, 0.07); border: 1px solid rgba(0, 209, 178, 0.16); color: var(--accent); padding: 10px 14px; border-radius: 8px; font-size: 13px; align-self: center; font-weight: 600; }

.report-card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 32px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.report-icon { font-size: 48px; flex-shrink: 0; }
.report-text { flex: 1; }
.report-text h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.report-text p  { color: var(--text2); font-size: 14px; margin-bottom: 12px; }
.report-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.report-meta span { font-size: 13px; color: var(--text3); }
.report-preview { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.report-preview-header { font-weight: 700; margin-bottom: 16px; color: var(--text2); font-size: 11px; text-transform: uppercase; letter-spacing: 0.10em; }
.report-row { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text2); }
.report-row strong { color: var(--text); margin-right: 8px; }

.alert-list { display: flex; flex-direction: column; gap: 12px; }
.alert-item { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 20px; display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.alert-warn     { border-left: 3px solid var(--orange); }
.alert-resolved { border-left: 3px solid var(--text3); opacity: 0.6; }
.alert-icon  { font-size: 24px; flex-shrink: 0; }
.alert-body  { flex: 1; }
.alert-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.alert-desc  { color: var(--text2); font-size: 14px; margin-bottom: 6px; }
.alert-time  { font-size: 12px; color: var(--text3); }
.alert-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.resolved-tag  { background: var(--surface2); color: var(--text3); padding: 4px 12px; border-radius: 12px; font-size: 12px; }

.settings-section    { margin-bottom: 36px; }
.settings-section h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.member-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.member-row { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 16px 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.member-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(0, 209, 178, 0.10); border: 1px solid rgba(0, 209, 178, 0.20); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: var(--accent); flex-shrink: 0; }
.member-info { flex: 1; font-size: 14px; color: var(--text2); }
.member-info strong { display: block; color: var(--text); font-size: 15px; }
.role-tag { background: var(--surface2); color: var(--text3); padding: 2px 8px; border-radius: 6px; font-size: 11px; margin-left: 6px; }

.profile-card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 32px; display: flex; gap: 32px; flex-wrap: wrap; }
.profile-avatar-lg { font-size: 64px; flex-shrink: 0; }
.profile-details { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.profile-row { display: flex; flex-direction: column; gap: 6px; }
.profile-row label { font-size: 13px; color: var(--text3); font-weight: 600; letter-spacing: 0.02em; }
.profile-input { background: var(--bg2); border: 1px solid var(--border2); color: var(--text); padding: 10px 14px; border-radius: 8px; font-size: 14px; transition: border-color 0.2s; }
.profile-input:focus { border-color: var(--accent); }

.memory-timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 24px; }
.memory-timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--accent), var(--surface2)); border-radius: 2px; }
.memory-item { position: relative; padding-bottom: 32px; }
.memory-item::before { content: ''; position: absolute; left: -21px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--bg2); box-shadow: 0 0 10px rgba(0,209,178,0.5); }
.memory-date { font-size: 12px; color: var(--text3); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.memory-card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; }
.memory-icon { font-size: 24px; flex-shrink: 0; }
.memory-content p { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.memory-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.memory-tags span { background: var(--surface2); color: var(--text3); padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }

/* ============================================================
   ADMIN
============================================================ */
.admin-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.admin-metric { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 20px; text-align: center; }
.admin-metric span { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--accent); display: block; margin-bottom: 6px; }
.admin-metric p { font-size: 12px; color: var(--text3); font-weight: 600; }
.admin-table-wrap { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); overflow: hidden; }
.table-toolbar { padding: 16px 20px; display: flex; gap: 10px; border-bottom: 1px solid var(--border); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 12px 20px; text-align: left; font-size: 11px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--border); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(0,209,178,0.02); }
.plan-tag     { padding: 3px 10px; border-radius: 8px; font-size: 12px; font-weight: 600; }
.plan-family  { background: rgba(0,209,178,0.10); color: var(--accent); }
.plan-premium { background: rgba(240,192,96,0.10); color: var(--gold); }
.plan-trial   { background: rgba(255,255,255,0.05); color: var(--text2); }
.status-dot   { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.status-dot.green  { background: var(--accent); box-shadow: 0 0 6px rgba(0,209,178,0.6); }
.status-dot.yellow { background: var(--gold); }
.template-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.template-card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 24px; }
.template-lang    { font-size: 12px; color: var(--text3); margin-bottom: 4px; font-weight: 600; }
.template-type    { font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.template-preview { background: var(--bg2); border-radius: 8px; padding: 14px; font-size: 13px; color: var(--text2); line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.analytics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lang-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.lang-bar span { font-size: 13px; color: var(--text2); min-width: 60px; font-weight: 500; }
.lang-fill { height: 28px; background: linear-gradient(to right, #00D1B2, #14F1D9); border-radius: 4px; font-size: 12px; color: #050E0E; display: flex; align-items: center; justify-content: flex-end; padding-right: 10px; font-weight: 700; }

.admin-access { position: fixed; bottom: 20px; right: 20px; z-index: 999; background: var(--surface); border: 1px solid var(--border2); padding: 8px 14px; border-radius: 8px; font-size: 12px; color: var(--text3); cursor: pointer; transition: all 0.2s; font-weight: 600; }
.admin-access:hover { color: var(--accent); border-color: var(--accent); }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--surface); border: 1px solid var(--border3); color: var(--text); padding: 14px 24px; border-radius: 10px; font-size: 14px; font-weight: 600; z-index: 9999; box-shadow: var(--shadow-lg), 0 0 24px rgba(0,209,178,0.10); transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s; opacity: 0; white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .features-grid   { grid-template-columns: 1fr 1fr; }
  .feature-card-lg { grid-column: span 1; }
  .trust-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-grid      { grid-template-columns: 1fr; }
  .story-layout    { grid-template-columns: 1fr; }
  .analytics-grid  { grid-template-columns: 1fr; }
  .template-grid   { grid-template-columns: 1fr; }
  .admin-metrics   { grid-template-columns: repeat(2, 1fr); }
  .charts-grid     { grid-template-columns: 1fr; }
  .chart-card.chart-full { grid-column: span 1; }
  .hero-glass-card { padding: 36px 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(9,14,19,0.98); border-bottom: 1px solid var(--border); padding: 16px; gap: 8px; backdrop-filter: blur(24px); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-glass-card { padding: 28px 20px; }
  .hero-title { font-size: clamp(26px, 8vw, 40px); }
  .hero-waitlist-bar { flex-direction: column; }
  .hero-email-input { width: 100%; }
  .float-pill-1, .float-pill-3 { display: none; }
  .float-pill-2 { right: -5px; font-size: 11px; padding: 6px 12px; }
  .steps-grid  { flex-direction: column; }
  .step-arrow  { transform: rotate(90deg); }
  .features-grid { grid-template-columns: 1fr; }
  .auth-page   { grid-template-columns: 1fr; }
  .auth-left   { display: none; }
  .auth-right  { padding: 80px 24px 40px; }
  .parent-status-grid { grid-template-columns: 1fr; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .sidebar     { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .sidebar-close  { display: block; }
  .sidebar-toggle { display: block; }
  .dash-main   { margin-left: 0; }
  .trust-grid  { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 24px; }
}
@media (max-width: 480px) {
  .hero-glass-card { padding: 24px 16px; border-radius: 16px; }
  .hero-title    { font-size: clamp(24px, 8vw, 34px); }
  .hero-cta      { flex-direction: column; align-items: center; }
  .section       { padding: 64px 0; }
  .metrics-row   { grid-template-columns: 1fr 1fr; }
  .admin-metrics { grid-template-columns: 1fr 1fr; }
  .dash-content  { padding: 20px 16px; }
  .trust-grid    { grid-template-columns: 1fr; }
  .image-glow-ring { width: 280px; height: 280px; }
  .hero-img-placeholder { width: 180px; height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  .blob-1, .blob-2, .blob-3,
  .float-pill-1, .float-pill-2, .float-pill-3,
  .hero-img-placeholder, .image-glow-ring, .image-glow-core,
  .pulse-dot, .scroll-dot::after,
  .hero-top-badge, .hero-image-center, .hero-glass-card {
    animation: none !important; transition: none !important;
  }
  .step-card:hover, .feature-card:hover, .trust-card:hover,
  .metric-card:hover, .btn:hover { transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.consent-box { background: rgba(0, 209, 178, 0.05); border: 1px solid rgba(0, 209, 178, 0.20); border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; }
.consent-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 13px; color: var(--text2); line-height: 1.6; }
.consent-checkbox { width: 18px; height: 18px; min-width: 18px; accent-color: var(--accent); margin-top: 2px; cursor: pointer; border-radius: 4px; }
.consent-label strong { color: var(--text); }
.consent-error { border-color: rgba(255, 90, 126, 0.50) !important; background: rgba(255, 90, 126, 0.05) !important; }

.disclaimer-text { font-size: 11px; color: var(--text3); margin-top: 10px; line-height: 1.7; max-width: 760px; margin-left: auto; margin-right: auto; padding-top: 10px; border-top: 1px solid var(--border); }

.dash-disclaimer { font-size: 11px; color: var(--text3); padding: 12px 28px; border-top: 1px solid var(--border); background: var(--bg2); margin-top: auto; font-weight: 500; }


/* DASHBOARD */

.dash-summary {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.dash-status.good {
  color: var(--accent);
  font-weight: 600;
  margin: 10px 0;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.dash-card {
  background: var(--surface);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.dash-card h4 {
  font-size: 14px;
  color: var(--text2);
}

.dash-value {
  font-size: 24px;
  font-weight: 700;
  margin: 8px 0;
}

.dash-sub {
  font-size: 12px;
  color: var(--text3);
}

.dash-trend {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
}

.trend-box {
  height: 120px;
  border: 1px dashed var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  margin-top: 12px;
}