/* ============================================================
   Blood Bank – Kukatpally Nagaram
   Premium medical UI · Red/white · Mobile-first
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #e11d48;
  --red-700: #be123c;
  --red-800: #9f1239;
  --red-900: #881337;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --ink-900: #0f1220;
  --ink-700: #2b3245;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --bg: #fbfbfe;
  --white: #ffffff;
  --line: rgba(15, 23, 42, 0.08);
  --line-soft: rgba(15, 23, 42, 0.055);

  /* Gradient */
  --grad-primary: linear-gradient(135deg, #e11d48 0%, #be123c 55%, #9f1239 100%);
  --grad-soft: linear-gradient(180deg, #fff1f2 0%, #fbfbfe 100%);

  /* Typography */
  --font-head: "Sora", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shape */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05), 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 18px -4px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 45px -12px rgba(159, 18, 57, 0.22), 0 8px 20px -8px rgba(15, 23, 42, 0.10);
  --shadow-glow: 0 0 0 1px rgba(225, 29, 72, 0.12), 0 12px 40px -10px rgba(225, 29, 72, 0.35);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --speed: 0.28s;

  /* Layout */
  --header-h: 72px;
  --maxw: 1200px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

@media (max-width: 767px) { body { padding-bottom: 78px; } }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
a, button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

ul[role="list"] { list-style: none; }

::selection { background: var(--red-600); color: #fff; }

:focus-visible {
  outline: 3px solid rgba(225, 29, 72, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--red-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-weight: 700;
  transition: top var(--speed) var(--ease);
}
.skip-link:focus { top: 12px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.18; letter-spacing: -0.02em; font-weight: 700; }

.container {
  width: min(var(--maxw), 92vw);
  margin-inline: auto;
}

.section { position: relative; padding-block: clamp(64px, 8vw, 100px); }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-700);
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  padding: 7px 14px;
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5);
}
.eyebrow.is-pulse::before { animation: ping-dot 2.2s var(--ease) infinite; }

@keyframes ping-dot {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4.5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { margin-inline: auto; }

.section-title { font-size: clamp(1.85rem, 3.6vw, 2.65rem); margin: 16px 0 14px; }
.section-sub { color: var(--ink-500); font-size: clamp(1rem, 1.4vw, 1.12rem); }

.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease),
              background var(--speed) var(--ease), color var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
  will-change: transform;
  position: relative;
}
.btn svg { width: 19px; height: 19px; }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(225, 29, 72, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -10px rgba(190, 18, 60, 0.6); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--red-700);
  border-color: var(--rose-200);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--red-600); color: var(--red-800); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-dark {
  background: var(--ink-900);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-sm { padding: 11px 18px; font-size: 0.9rem; }

.btn-emergency { position: relative; }
.btn-emergency::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid rgba(225, 29, 72, 0.5);
  animation: ring-pulse 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* ---------- Top emergency strip ---------- */
.top-strip {
  background: var(--ink-900);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
}
.top-strip .container { display: flex; align-items: center; gap: 12px; justify-content: space-between; padding-block: 8px; }
.top-strip a { color: var(--rose-100); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.top-strip a:hover { color: #fff; }
.top-strip .pulse { color: var(--red-400); }
.strip-note { color: var(--ink-400); }
@media (max-width: 760px) { .strip-note { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background var(--speed) var(--ease), border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease), backdrop-filter var(--speed) var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-color: var(--line);
  box-shadow: 0 8px 30px -12px rgba(15, 23, 42, 0.12);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}
.brand-logo svg { width: 24px; height: 24px; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; color: var(--ink-900); line-height: 1.15; display: block; }
.brand-sub { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-700); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-600);
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 999px;
  transition: color var(--speed) var(--ease), background var(--speed) var(--ease);
}
.nav a:hover { color: var(--red-700); background: var(--rose-50); }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  place-items: center;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  position: relative;
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0; width: 20px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform var(--speed) var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(251, 251, 254, 0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.36s var(--ease);
    padding: 24px;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1.3rem; padding: 12px 20px; width: 100%; text-align: center; color: var(--ink-900); }
  .nav-cta { margin: 12px 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 0 clamp(64px, 8vw, 110px);
  background: var(--grad-soft);
  overflow: clip;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(52rem 30rem at 110% -10%, rgba(225, 29, 72, 0.10), transparent 60%),
    radial-gradient(44rem 28rem at -10% 110%, rgba(244, 63, 94, 0.08), transparent 60%);
}

.blob { position: absolute; z-index: -1; border-radius: 50%; filter: blur(46px); opacity: 0.5; pointer-events: none; }
.blob-1 { width: 340px; height: 340px; background: rgba(244, 63, 94, 0.35); top: -90px; right: -60px; animation: float 9s ease-in-out infinite; }
.blob-2 { width: 300px; height: 300px; background: rgba(225, 29, 72, 0.22); bottom: -110px; left: -80px; animation: float 12s ease-in-out infinite reverse; }
.blob-3 { width: 180px; height: 180px; background: rgba(59, 130, 246, 0.12); top: 40%; left: 46%; animation: float 11s ease-in-out infinite 1s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -26px); }
}

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(32px, 5vw, 64px); }

.hero-title { font-size: clamp(2.3rem, 5.4vw, 3.9rem); font-weight: 800; letter-spacing: -0.03em; }
.hero-title .grad-text { display: inline-block; }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.17rem); color: var(--ink-500); margin: 20px 0 30px; max-width: 34rem; }
.hero-sub strong { color: var(--ink-700); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 38px; }

.hero-meta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 700; color: var(--ink-500); text-decoration: none; }
.hero-meta .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red-600); animation: ping-dot 2s var(--ease) infinite; }
.hero-meta:hover { color: var(--red-700); }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.hero-stat {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.hero-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hero-stat b { display: block; font-family: var(--font-head); font-size: clamp(1.35rem, 2.4vw, 1.8rem); color: var(--red-700); letter-spacing: -0.02em; }
.hero-stat span { font-size: 0.8rem; font-weight: 700; color: var(--ink-500); line-height: 1.3; display: block; margin-top: 2px; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Hero visual */
.hero-visual { position: relative; min-height: 380px; display: grid; place-items: center; }

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.viz-main {
  width: min(340px, 88%);
  padding: 34px 30px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}
.viz-drop {
  width: 86px; height: 86px;
  margin: 0 auto 18px;
  border-radius: 50% 50% 50% 50% / 56% 56% 44% 44%;
  background: var(--grad-primary);
  display: grid; place-items: center;
  box-shadow: 0 16px 32px -10px rgba(225, 29, 72, 0.55);
  position: relative;
}
.viz-drop::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad-primary);
  animation: drop-pulse 2.6s var(--ease) infinite;
  z-index: -1;
}
@keyframes drop-pulse {
  0% { transform: scale(1); opacity: 0.65; }
  70% { transform: scale(1.14); opacity: 0; }
  100% { transform: scale(1.14); opacity: 0; }
}
.viz-drop svg { width: 34px; height: 34px; transform: translateY(-7px); }
.viz-drop .cap {
  position: absolute;
  inset: 0;
  display: grid; place-items: end center;
  padding-bottom: 11px;
  font-family: var(--font-head); font-weight: 800; font-size: 0.72rem;
  color: #fff; line-height: 1; letter-spacing: 0.18em; text-transform: uppercase;
}

.viz-main h3 { font-size: 1.15rem; margin-bottom: 6px; }
.viz-main p { font-size: 0.9rem; color: var(--ink-500); margin-bottom: 18px; }
.viz-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 800; color: var(--ink-900);
  background: var(--rose-50); border: 1px solid var(--rose-200);
  padding: 8px 16px; border-radius: 999px;
}
.viz-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }

.viz-float {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 15px 18px;
  z-index: 3;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}
.viz-float svg { width: 26px; height: 26px; color: var(--red-600); }
.viz-float b { display: block; font-family: var(--font-head); color: var(--ink-900); font-size: 0.95rem; line-height: 1.2; }
.viz-float span { font-size: 0.78rem; color: var(--ink-500); font-weight: 600; }

.viz-a { top: 3%; left: 2%; animation: float 8s ease-in-out infinite 0.4s; }
.viz-b { bottom: 6%; right: 0; animation: float 9s ease-in-out infinite 1.2s; }
.viz-c { bottom: -2%; left: 6%; animation: float 10s ease-in-out infinite 0.8s; }

@media (max-width: 960px) {
  .hero-visual { min-height: 340px; margin-top: 10px; }
  .viz-a { left: 0; } .viz-b { right: 0; } .viz-c { left: 4%; bottom: -2%; }
}
@media (max-width: 520px) {
  .hero-visual { min-height: 300px; }
  .viz-float { padding: 12px 14px; }
  .viz-c { display: none; }
}

/* ---------- Marquee ticker ---------- */
.ticker {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  overflow: clip;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding-block: 15px;
  animation: ticker 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 0.95rem; color: var(--ink-700); white-space: nowrap; }
.ticker-item svg { width: 20px; height: 20px; color: var(--red-600); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Availability ---------- */
.avail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 34px; flex-wrap: wrap; }
.avail-legend { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.86rem; font-weight: 700; color: var(--ink-500); }
.avail-legend span { display: inline-flex; align-items: center; gap: 7px; }
.avail-legend i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.l-dot-good { background: #22c55e; }
.l-dot-mid { background: #f59e0b; }
.l-dot-low { background: var(--red-600); }

.blood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .blood-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .blood-grid { grid-template-columns: 1fr; } }

.blood-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px 20px;
  overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.blood-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--card-color, var(--red-600));
  opacity: 0;
  transition: opacity var(--speed) var(--ease);
}
.blood-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--rose-200); }
.blood-card:hover::before { opacity: 1; }
.blood-card[data-level="low"], .blood-card[data-level="critical"] {
  border-color: rgba(225, 29, 72, 0.35);
  background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
}

.blood-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.blood-badge {
  width: 58px; height: 66px;
  display: grid; place-items: center;
  border-radius: 16px 16px 16px 4px;
  background: var(--grad-soft);
  border: 1px solid var(--rose-200);
  color: var(--red-800);
  position: relative;
}
.blood-badge svg { width: 30px; height: 30px; }
.blood-badge .grp {
  font-family: var(--font-head); font-weight: 800; font-size: 0.92rem;
  position: absolute;
  inset: auto 0 7px 0;
  text-align: center;
  color: var(--red-900);
  letter-spacing: 0.02em;
  margin-top: 0;
}

.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem; font-weight: 800;
  padding: 6px 12px; border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.status-pill i { width: 7px; height: 7px; border-radius: 50%; }
.status-good { background: #ecfdf5; color: #047857; } .status-good i { background: #22c55e; }
.status-mid { background: #fffbeb; color: #b45309; } .status-mid i { background: #f59e0b; }
.status-low { background: var(--rose-50); color: var(--red-800); } .status-low i { background: var(--red-600); }

.blood-name { font-size: 1.02rem; margin-bottom: 4px; }
.blood-desc { font-size: 0.82rem; color: var(--ink-400); font-weight: 600; margin-bottom: 18px; }

.blood-meter { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 10px; }
.blood-meter i { height: 6px; border-radius: 999px; background: rgba(15, 23, 42, 0.07); overflow: hidden; }
.blood-meter i.filled { background: var(--card-color, var(--red-600)); }

.blood-units { font-size: 0.84rem; font-weight: 700; color: var(--ink-500); margin-bottom: 18px; }
.blood-units b { color: var(--ink-900); }

.blood-foot { display: flex; gap: 10px; align-items: center; }
.btn-call, .btn-group-select {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.86rem; font-weight: 800;
  padding: 11px 12px; border-radius: 999px;
  text-decoration: none;
  transition: transform var(--speed) var(--ease), background var(--speed) var(--ease), color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.btn-call { background: var(--ink-900); color: #fff; }
.btn-call:hover { transform: translateY(-2px); background: var(--red-900); box-shadow: var(--shadow-md); }
.btn-group-select { border: 1.5px solid var(--rose-200); color: var(--red-700); }
.btn-group-select:hover { background: var(--rose-50); transform: translateY(-2px); }

.avail-foot { margin-top: 34px; text-align: center; }
.avail-note {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 700; color: var(--ink-500);
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed var(--rose-200);
  padding: 14px 22px; border-radius: 999px;
}
.avail-note svg { color: var(--red-600); flex-shrink: 0; }

/* ---------- Trust pillars ---------- */
.trust { background: #fff; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 960px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .trust-grid { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.09), transparent 70%);
  pointer-events: none;
}
.pillar-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  display: grid; place-items: center;
  color: var(--red-700);
  margin-bottom: 18px;
  transition: transform var(--speed) var(--ease);
}
.pillar:hover .pillar-icon { transform: scale(1.08) rotate(-4deg); }
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.12rem; margin-bottom: 8px; }
.pillar p { font-size: 0.93rem; color: var(--ink-500); }

/* Eligibility */
.elig-wrap { margin-top: clamp(44px, 6vw, 72px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (max-width: 900px) { .elig-wrap { grid-template-columns: 1fr; } }

.elig-panel {
  background: linear-gradient(150deg, var(--red-900), #6d0a26);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 46px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.elig-panel::before {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 30px solid rgba(255, 255, 255, 0.07);
}
.elig-panel .cap { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-200); margin-bottom: 10px; }
.elig-panel h3 { color: #fff; font-size: 1.6rem; margin-bottom: 12px; }
.elig-panel p { color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; }
.quiz-cta { margin-top: 24px; }

.elig-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.elig-item {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 13px 15px;
  font-weight: 700; font-size: 0.9rem; color: var(--ink-700);
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.elig-item:hover { transform: translateY(-3px); border-color: var(--rose-200); box-shadow: var(--shadow-sm); }
.elig-item svg { width: 20px; height: 20px; color: var(--red-600); flex-shrink: 0; }
@media (max-width: 480px) { .elig-list { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--rose-100);
  line-height: 1;
}
.step-time {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 800; color: var(--red-700);
  background: var(--rose-50); border: 1px solid var(--rose-200);
  padding: 5px 10px; border-radius: 999px;
  margin-bottom: 14px;
}
.step-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--rose-50); display: grid; place-items: center; color: var(--red-700); margin-bottom: 14px; }
.step-icon svg { width: 22px; height: 22px; }
.step h3 { font-size: 1.06rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--ink-500); }

/* ---------- Forms ---------- */
.form-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3.4vw, 40px);
  box-shadow: var(--shadow-md);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 800; color: var(--ink-600); letter-spacing: 0.02em; }
.field label b { color: var(--red-600); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  background-color: #fff;
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  appearance: none;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red-600);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.12);
}
.field .hint { font-size: 0.78rem; color: var(--ink-400); font-weight: 600; }

.radio-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-pills input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pills label {
  cursor: pointer;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--ink-600);
  transition: all var(--speed) var(--ease);
  user-select: none;
}
.radio-pills input:checked + label {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px -8px rgba(225, 29, 72, 0.55);
}
.radio-pills input:focus-visible + label { outline: 3px solid rgba(225, 29, 72, 0.4); outline-offset: 2px; }

.checkbox { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 0.87rem; color: var(--ink-500); font-weight: 600; }
.checkbox input { accent-color: var(--red-600); width: 17px; height: 17px; margin-top: 3px; flex-shrink: 0; }

.form-submit { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.form-submit .btn svg { transition: transform var(--speed) var(--ease); }
.form-submit .btn:hover svg { transform: translateX(4px); }
.form-note { font-size: 0.82rem; color: var(--ink-400); font-weight: 600; }

/* Success toast */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translate(-50%, 140%);
  z-index: 300;
  display: flex; align-items: center; gap: 12px;
  background: var(--ink-900);
  color: #fff;
  font-weight: 700; font-size: 0.92rem;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease);
  max-width: min(92vw, 480px);
  text-align: left;
}
.toast .t-ico { width: 26px; height: 26px; border-radius: 50%; background: #22c55e; display: grid; place-items: center; flex-shrink: 0; }
.toast .t-ico svg { width: 14px; height: 14px; }
.toast.is-visible { transform: translate(-50%, 0); }
.toast a { color: var(--rose-200); text-decoration: underline; }

/* ---------- Register split ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 960px) { .split { grid-template-columns: 1fr; } }

.perk { display: flex; gap: 14px; padding: 18px; border-radius: var(--r-md); transition: background var(--speed) var(--ease); }
.perk:hover { background: rgba(255, 255, 255, 0.8); }
.perk-ico { width: 44px; height: 44px; border-radius: 13px; background: var(--rose-50); border: 1px solid var(--rose-200); display: grid; place-items: center; color: var(--red-700); flex-shrink: 0; }
.perk-ico svg { width: 21px; height: 21px; }
.perk h3 { font-size: 1rem; margin-bottom: 3px; }
.perk p { font-size: 0.88rem; color: var(--ink-500); }

/* ---------- Camps ---------- */
.camps { background: var(--grad-soft); border-block: 1px solid var(--line); }
.camp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .camp-grid { grid-template-columns: 1fr; } }

.camp-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.camp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.camp-date {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 800; font-size: 0.82rem;
  color: var(--red-700); background: var(--rose-50); border: 1px solid var(--rose-200);
  padding: 7px 13px; border-radius: 999px; width: max-content;
}
.camp-card h3 { font-size: 1.14rem; }
.camp-meta { display: grid; gap: 8px; font-size: 0.9rem; color: var(--ink-500); font-weight: 600; }
.camp-meta li { display: flex; gap: 10px; align-items: flex-start; }
.camp-meta svg { width: 18px; height: 18px; color: var(--red-600); flex-shrink: 0; margin-top: 2px; }
.camp-card .btn { margin-top: auto; }

/* ---------- Emergency ---------- */
.emergency {
  background: linear-gradient(150deg, var(--red-900) 0%, var(--red-800) 45%, #7f0d2b 100%);
  color: #fff;
  overflow: clip;
  position: relative;
}
.emergency::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(40rem 26rem at 100% 0%, rgba(255, 255, 255, 0.10), transparent 60%),
                    radial-gradient(30rem 22rem at 0% 100%, rgba(255, 255, 255, 0.07), transparent 60%);
}
.emergency .container { position: relative; z-index: 1; }
.emergency-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.emergency-head .q-mark {
  font-family: var(--font-head); font-weight: 800; font-size: 1.8rem;
  width: 72px; height: 72px; border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  animation: float 6s ease-in-out infinite;
}
.emergency-head h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.emergency-head h2 .grad-text { background: linear-gradient(135deg, #fff, var(--rose-200)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.emergency-head p { color: rgba(255, 255, 255, 0.85); margin-top: 14px; font-size: 1.02rem; }

.emergency-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.em-action { flex: 1; min-width: 250px; max-width: 340px; }
.em-link {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  text-decoration: none;
  color: #fff;
  backdrop-filter: blur(10px);
  transition: transform var(--speed) var(--ease), background var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.em-link:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.35); }
.em-link .em-ico { width: 48px; height: 48px; border-radius: 15px; background: var(--red-500); display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 10px 20px -8px rgba(0,0,0,0.35); }
.em-link .em-ico svg { width: 22px; height: 22px; }
.em-link small { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.em-link b { font-family: var(--font-head); font-size: 1.04rem; }

.emergency-note { text-align: center; margin-top: 34px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); font-weight: 600; }
.emergency-note b { color: #fff; }

/* ---------- Impact ---------- */
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 960px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }

.impact-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  text-align: center;
  overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.impact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.impact-card::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 46px; height: 4px; border-radius: 4px 4px 0 0; background: var(--grad-primary); }
.impact-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  letter-spacing: -0.03em;
  color: var(--red-700);
  line-height: 1;
}
.impact-num .plus { color: var(--red-400); }
.impact-label { margin-top: 10px; font-weight: 800; font-size: 0.98rem; color: var(--ink-900); }
.impact-sub { font-size: 0.82rem; color: var(--ink-400); font-weight: 600; }

/* Testimonials */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(40px, 5vw, 64px); }
@media (max-width: 960px) { .tst-grid { grid-template-columns: 1fr; } }

.tst-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  position: relative;
}
.tst-card::before {
  content: "“";
  position: absolute;
  top: 4px; right: 20px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 4.6rem; line-height: 1;
  color: var(--rose-100);
}
.tst-card p { font-size: 0.94rem; color: var(--ink-600); font-style: normal; position: relative; z-index: 1; }
.tst-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tst-ava {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.95rem;
}
.tst-who b { display: block; font-size: 0.9rem; color: var(--ink-900); line-height: 1.2; }
.tst-who span { font-size: 0.78rem; color: var(--ink-400); font-weight: 700; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 68px); align-items: center; }
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; } }

.about-card {
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  border-radius: var(--r-xl);
  padding: clamp(26px, 3.6vw, 42px);
  position: relative;
  overflow: hidden;
}
.about-card::before { content: ""; position: absolute; right: -50px; bottom: -50px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(225, 29, 72, 0.12), transparent 70%); }
.founder { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.founder-ava { width: 62px; height: 62px; border-radius: 20px; background: var(--grad-primary); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; box-shadow: var(--shadow-glow); }
.founder b { font-family: var(--font-head); color: var(--ink-900); display: block; font-size: 1.05rem; }
.founder span { font-size: 0.84rem; color: var(--ink-500); font-weight: 700; }

.about-points { display: grid; gap: 14px; margin-top: 26px; }
.about-point { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 15px 16px; font-weight: 700; font-size: 0.9rem; color: var(--ink-700); }
.about-point svg { width: 20px; height: 20px; color: var(--red-600); flex-shrink: 0; margin-top: 1px; }

/* FAQ */
.faq { max-width: 780px; margin: clamp(44px, 6vw, 72px) auto 0; }
.faq-title { text-align: center; margin-bottom: 26px; font-size: 1.5rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink-900);
}
.faq-q .f-ico { width: 26px; height: 26px; border-radius: 50%; background: var(--rose-50); color: var(--red-700); display: grid; place-items: center; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-q .f-ico svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.faq-item.is-open .faq-q .f-ico svg { transform: rotate(45deg); }
.faq-item.is-open .faq-q .f-ico { background: var(--red-600); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.34s var(--ease); }
.faq-a p { padding: 0 20px 18px; font-size: 0.93rem; color: var(--ink-500); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 4vw, 52px); align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-ways { display: grid; gap: 16px; }
.contact-way {
  display: flex; gap: 16px; align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  text-decoration: none;
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.contact-way:hover { transform: translateY(-4px); border-color: var(--rose-200); box-shadow: var(--shadow-md); }
.contact-way .c-ico { width: 46px; height: 46px; border-radius: 14px; background: var(--rose-50); border: 1px solid var(--rose-200); display: grid; place-items: center; color: var(--red-700); flex-shrink: 0; }
.contact-way .c-ico svg { width: 21px; height: 21px; }
.contact-way small { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-400); }
.contact-way b { font-family: var(--font-head); color: var(--ink-900); font-size: 1rem; line-height: 1.3; }
.contact-way span { font-size: 0.84rem; color: var(--ink-400); font-weight: 600; }

.cmap {
  margin-top: 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 190px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, #fff, var(--rose-50));
  position: relative;
}
.cmap .cmap-inner { text-align: center; padding: 22px; }
.cmap .pin { width: 46px; height: 46px; border-radius: 50% 50% 50% 4px; background: var(--grad-primary); transform: rotate(0); display: grid; place-items: center; margin: 0 auto 12px; box-shadow: var(--shadow-glow); }
.cmap .pin svg { width: 22px; height: 22px; transform: rotate(0deg); }
.cmap p { font-weight: 800; color: var(--ink-900); }
.cmap span { font-size: 0.84rem; color: var(--ink-500); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: rgba(255, 255, 255, 0.72); padding: clamp(48px, 6vw, 72px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 34px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; line-height: 1.7; }
.footer-brand .brand-logo { background: var(--grad-primary); }

.footer-col h4 { color: #fff; font-size: 0.98rem; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; list-style: none; }
.footer-col a { text-decoration: none; color: rgba(255, 255, 255, 0.72); font-weight: 600; font-size: 0.9rem; transition: color var(--speed) var(--ease); }
.footer-col a:hover { color: var(--rose-200); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 0.84rem;
}
.footer-bottom a { color: var(--rose-200); text-decoration: none; }
.disclaimer { margin-top: 18px; font-size: 0.76rem; color: rgba(255, 255, 255, 0.42); line-height: 1.6; }

/* ---------- Floating buttons ---------- */
.float-call {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  animation: drop-pulse 2.6s var(--ease) infinite;
  transition: transform var(--speed) var(--ease);
}
.float-call:hover { transform: scale(1.08); }
.float-call svg { width: 26px; height: 26px; }
@media (max-width: 767px) { .float-call { display: none; } }

.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 95;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { padding: 13px 12px; font-size: 0.9rem; width: 100%; }
@media (max-width: 767px) { .mobile-bar { display: grid; } }

/* ---------- Scroll reveal ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.js [data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
.js [data-reveal-delay] { transition-delay: 0.12s; }