:root {
  --bg-1: #0c1220;
  --bg-2: #0d1f38;
  --card: rgba(15, 29, 52, 0.8);
  --card-strong: rgba(15, 38, 64, 0.9);
  --stroke: rgba(255, 255, 255, 0.07);
  --text: #eaf0ff;
  --muted: #9fb3d1;
  --accent: #4ef0c3;
  --accent-2: #7cc8ff;
  --accent-amber: #f6d88f;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --radius-sm: 12px;
  --pad: 24px;
  --page-pad: clamp(14px, 4vw, 22px);
  --transition: 220ms ease;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', sans-serif;
  --size-body: clamp(0.97rem, 2.6vw, 1.05rem);
  --size-small: clamp(0.9rem, 2.2vw, 0.98rem);
  --size-h2: clamp(1.25rem, 3.1vw, 1.6rem);
  --size-h3: clamp(1.1rem, 2.8vw, 1.35rem);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: var(--page-pad);
  padding-left: calc(var(--page-pad) + env(safe-area-inset-left, 0px));
  padding-right: calc(var(--page-pad) + env(safe-area-inset-right, 0px));
  padding-bottom: calc(var(--page-pad) + env(safe-area-inset-bottom, 0px));
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
  background: linear-gradient(140deg, #0a1020 0%, #0c1c32 60%, #061227 100%);
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 24%, rgba(78, 240, 195, 0.08), transparent 30%),
              radial-gradient(circle at 82% 12%, rgba(124, 200, 255, 0.07), transparent 33%),
              radial-gradient(circle at 50% 88%, rgba(246, 216, 143, 0.05), transparent 26%);
  filter: blur(0.5px);
  z-index: 0;
}

body::after {
  background: radial-gradient(circle at 70% 70%, rgba(78, 240, 195, 0.08), transparent 30%),
              radial-gradient(circle at 30% 80%, rgba(124, 200, 255, 0.05), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  width: min(1180px, 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  padding-bottom: clamp(80px, 22vw, 120px); /* keep space above sticky helpline on mobile */
}

.surface {
  background: linear-gradient(150deg, var(--card), var(--card-strong));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 10%, rgba(78, 240, 195, 0.12), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(124, 200, 255, 0.12), transparent 35%);
  opacity: 0.7;
  z-index: 0;
}

.surface::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
}

.shell {
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  z-index: 2;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, #6df7d1, #54c0ff);
  color: #0c1220;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.pill-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: #dfe8ff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 24px rgba(0, 0, 0, 0.24);
}

.pill-strong {
  background: linear-gradient(120deg, rgba(78, 240, 195, 0.9), rgba(124, 200, 255, 0.85));
  color: #0c1220;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 10px 28px rgba(78, 240, 195, 0.22);
}

.pill-ghost {
  background: rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: start;
  min-width: 0;
}

.hero {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.1rem);
  text-align: left;
  align-items: start;
  position: relative;
  padding-bottom: clamp(2.25rem, 6vw, 3.5rem);
  max-width: 48rem;
  width: 100%;
  min-width: 0;
}

.app-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  width: fit-content;
  max-width: 100%;
  flex-wrap: nowrap;
  min-width: 0;
}

.app-logo-img {
  width: 64px;
  max-width: 18vw;
  height: auto;
  max-height: 64px;
  aspect-ratio: 1 / 1;
  display: block;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
}

@supports (width: clamp(44px, 8vw, 64px)) {
  .app-logo-img {
    width: clamp(44px, 8vw, 64px);
    height: clamp(44px, 8vw, 64px);
  }
}

.app-logo-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.app-logo-text strong {
  letter-spacing: -0.01em;
}

.app-logo-text .muted {
  font-size: 0.88rem;
  word-break: break-word;
}

.fomo-surface {
  border-color: rgba(246, 216, 143, 0.24);
}

.fomo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: center;
  min-width: 0;
}

.fomo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  text-align: center;
  background: linear-gradient(120deg, #f6d88f, #7cc8ff);
  color: #0c1220;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 26px rgba(246, 216, 143, 0.22);
}

.fomo-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.fomo-sms {
  margin-top: 6px;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 6px;
}

.fomo-sms-title {
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.01em;
}

.fomo-cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.fomo-btn {
  background: linear-gradient(120deg, #f6d88f, #7cc8ff);
  color: #0c1220;
  border-color: rgba(255, 255, 255, 0.26);
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(246, 216, 143, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.fomo-login {
  font-size: 0.92rem;
}

.fomo-return {
  display: none;
  color: #f6d88f;
  font-weight: 700;
  margin: 0;
}

#fomoCard.is-returning {
  border: 1px solid rgba(246, 216, 143, 0.42);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(246, 216, 143, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(246, 216, 143, 0.06));
}

#fomoCard.is-returning .fomo-pill {
  background: linear-gradient(120deg, #f6d88f, #ffb276);
  box-shadow: 0 14px 36px rgba(246, 216, 143, 0.28);
}

#fomoCard.is-returning .fomo-return {
  display: block;
}

#fomoCard.is-dismissed {
  display: none;
}

.fomo-timer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  display: grid;
  gap: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 32px rgba(0, 0, 0, 0.26);
  min-width: 0;
}

.timer-label {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #caddff;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.timer-hours {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.timer-digits {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.timer-block {
  min-width: clamp(70px, 24vw, 86px);
  padding: 12px 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(124, 200, 255, 0.1), rgba(78, 240, 195, 0.08));
  display: grid;
  gap: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.timer-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #7cc8ff;
}

.timer-unit {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.timer-sep {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  color: #caddff;
  padding: 0 4px;
}

.timer-note {
  margin: 0;
  color: #f6d88f;
  font-size: 0.95rem;
  font-weight: 700;
}

#fomoCountdown.is-critical .timer-block {
  border-color: rgba(246, 216, 143, 0.82);
  box-shadow: 0 12px 30px rgba(246, 216, 143, 0.24);
}

#fomoCountdown.is-critical .timer-value {
  color: #f6d88f;
  animation: urgency-pulse 1s ease-in-out infinite;
}

.corner-arrow {
  position: fixed;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(78, 240, 195, 0.14);
  border: 1px solid rgba(78, 240, 195, 0.4);
  color: #b6f9e5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 5;
  pointer-events: none;
  animation: hint-bounce 1.6s ease-in-out infinite;
}

.corner-arrow-left {
  left: 14px;
}

.corner-arrow-right {
  right: 14px;
  flex-direction: row-reverse;
}

.corner-arrow .arrow-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(78, 240, 195, 0.2);
  color: #0c1220;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.corner-arrow .arrow-label {
  font-size: 0.78rem;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(78, 240, 195, 0.9), rgba(124, 200, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #0c1220;
  font-weight: 800;
  position: static;
  margin: 16px auto 0;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: hint-bounce 1.4s ease-in-out infinite, subtle-glow 1.8s ease-in-out infinite;
  z-index: 1;
}

.tag {
  justify-self: start;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(78, 240, 195, 0.12);
  color: #b6f9e5;
  font-weight: 600;
  border: 1px solid rgba(78, 240, 195, 0.3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.tag-emphasis {
  background: linear-gradient(115deg, rgba(78, 240, 195, 0.9), rgba(124, 200, 255, 0.9));
  color: #0c1220;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 10px 28px rgba(78, 240, 195, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.12);
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.6rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 999px;
}

.tag-emphasis::before {
  content: "★";
  margin-right: 8px;
  font-size: 0.9em;
}

.tag-compact {
  font-size: 0.6rem;
}

.cta-compact {
  font-size: 0.7rem;
}

.tag-desktop {
  display: inline-flex;
}

h1 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: clamp(26px, 5vw, 42px);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}

.hero-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: flex-start;
}

.hero-title::after {
  content: "↓";
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-left: 6px;
  border-radius: 14px;
  background: rgba(78, 240, 195, 0.16);
  border: 1px solid rgba(78, 240, 195, 0.4);
  color: #4ef0c3;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  animation: hint-bounce 1.2s ease-in-out infinite, subtle-glow 2s ease-in-out infinite;
  line-height: 1;
  transform: translateY(4px);
}

.tag-desktop {
  display: inline-flex;
}

.card h2,
.section-head h2,
h2 {
  font-family: var(--font-display);
  margin: 0;
  font-size: var(--size-h2);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: var(--size-h3);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.cta {
  display: grid;
  gap: clamp(0.6rem, 2vw, 0.85rem);
  justify-items: center;
  margin-top: 0.5rem;
}

.cta-note {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.cta-note-meta {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 4px;
}

.cta-warning {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.4;
}

.cta-warning strong {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.65rem, 2vw, 0.9rem);
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: clamp(0.8rem, 2vw, 0.95rem) clamp(1rem, 2.5vw, 1.2rem);
  border-radius: 0.9rem;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #0c1220;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  will-change: transform, box-shadow;
  transform: translateZ(0);
  touch-action: manipulation;
  animation: cta-pop 2.6s ease-in-out infinite;
}

.btn span {
  font-size: 0.95rem;
}

.btn .label {
  display: grid;
  line-height: 1.35;
}

.btn .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.8;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #4ef0c3, #7cc8ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  pointer-events: none;
}

.btn.android {
  background: linear-gradient(120deg, #4ef0c3, #7cffcf);
}

.btn.ios {
  background: linear-gradient(120deg, #7cc8ff, #9de0ff);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn:focus-visible,
.cta-toggle:focus-visible,
.call-btn:focus-visible,
.qr-close:focus-visible,
.sticky-help:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.btn.active {
  box-shadow: 0 16px 45px rgba(78, 240, 195, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2);
  outline: 2px solid rgba(78, 240, 195, 0.45);
  outline-offset: 2px;
  animation: cta-glow 2.4s ease-in-out infinite;
}

.btn.collapsed {
  display: none;
}

.cta-toggle {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  will-change: transform;
  touch-action: manipulation;
}

.cta-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: rgba(0, 0, 0, 0.12);
  color: #0c1220;
  font-weight: 800;
  font-size: 0.95rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.desktop-alert {
  display: none;
  margin-top: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  gap: 6px;
}

.desktop-alert strong {
  font-size: 1rem;
}

.desktop-alert.is-visible {
  display: grid;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 4px;
}

.meta-item {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #d3def5;
  border: 1px solid var(--stroke);
  font-size: 0.95rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.mini-stat {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 4px;
}

.mini-stat strong {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.mini-stat small {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: var(--pad);
  display: grid;
  gap: 12px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 36px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(78, 240, 195, 0.12), rgba(124, 200, 255, 0.1));
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.32);
}

.card:hover::before {
  opacity: 1;
}

.card h2 {
  font-family: var(--font-display);
  margin: 0;
  font-size: var(--size-h2);
  letter-spacing: -0.01em;
}

.muted {
  color: var(--muted);
  font-size: var(--size-small);
  line-height: 1.6;
  margin: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce7ff;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--stroke);
}

.steps {
  display: grid;
  gap: 10px;
}

.step-card {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 4px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.step-badge {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 700;
  color: #0c1220;
  background: linear-gradient(120deg, #4ef0c3, #7cc8ff);
}

ol, ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(78, 240, 195, 0.12), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(124, 200, 255, 0.12), transparent 35%);
  opacity: 0.8;
  pointer-events: none;
}

.panel-header {
  display: grid;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.panel-header h3 {
  margin: 0;
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: -0.01em;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.panel-list li {
  color: var(--muted);
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 8px;
  line-height: 1.5;
}

.panel-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(78, 240, 195, 0.12);
}

.panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.muted-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #dce7ff;
}

.support {
  display: grid;
  gap: 10px;
}

.support a {
  color: #b6f9e5;
  font-weight: 600;
  text-decoration: none;
}

.support a:hover {
  text-decoration: underline;
}

.qr-surface {
  display: none;
}

.qr-surface.is-visible {
  display: block;
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 320px;
  max-width: 90vw;
  z-index: 60;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.qr-block {
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  margin-top: 16px;
}

.qr-img {
  width: 220px;
  height: 220px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.qr-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--transition), transform var(--transition);
}

.qr-close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.qr-close:active {
  transform: scale(0.98);
}

.qr-link {
  color: #b6f9e5;
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
}

.qr-link:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
}

.faq-item {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 6px;
}

.faq-list .lang {
  display: none;
  animation: fade-in 200ms ease;
}

.faq-list.show-en .lang-en,
.faq-list.show-hi .lang-hi {
  display: block;
}

.faq-item dt {
  font-weight: 700;
  color: var(--text);
}

.faq-item dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-head {
  display: grid;
  gap: 6px;
}

.section-head h2 {
  margin: 0;
}

.section-head p {
  max-width: 720px;
}

.faq-head {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  gap: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 26px rgba(0, 0, 0, 0.28);
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: #dfe8ff;
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  will-change: transform, box-shadow;
  transform: translateZ(0);
  touch-action: manipulation;
}

.lang-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.lang-btn.is-active {
  background: linear-gradient(120deg, rgba(78, 240, 195, 0.85), rgba(124, 200, 255, 0.85));
  color: #0c1220;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 28px rgba(78, 240, 195, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.chat-surface .shell {
  display: grid;
  gap: 12px;
}

.chat-surface.is-collapsed .chat-body {
  display: none;
}

.chat-toggle {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: #dfe8ff;
  border-radius: 12px;
  padding: 8px 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.chat-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.chat-toggle:active {
  transform: translateY(0);
}

.chat-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.chat-body {
  display: grid;
  gap: 12px;
}

.chat-feed {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  max-height: 380px;
  overflow-y: auto;
}

.chat-msg {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  max-width: 88%;
}

.chat-msg.bot {
  justify-self: start;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.chat-msg.user {
  justify-self: end;
  background: linear-gradient(130deg, rgba(78, 240, 195, 0.15), rgba(124, 200, 255, 0.12));
  border-color: rgba(78, 240, 195, 0.35);
  color: #e9f7ff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.chat-label {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: var(--muted);
  text-transform: uppercase;
}

.chat-form {
  display: grid;
  gap: 10px;
}

.chat-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 12px;
  font: inherit;
  resize: vertical;
  min-height: 80px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.chat-form textarea:focus {
  outline: 2px solid rgba(78, 240, 195, 0.5);
  border-color: rgba(78, 240, 195, 0.5);
}

.chat-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.chat-status {
  color: var(--muted);
  font-size: 0.9rem;
}

.chat-send {
  border: none;
  border-radius: 12px;
  background: linear-gradient(140deg, #4ef0c3, #7cc8ff);
  color: #0c1220;
  padding: 10px 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(78, 240, 195, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.chat-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(78, 240, 195, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.chat-send:active {
  transform: translateY(0);
}

.chat-error {
  margin: 0;
  color: #ffb3b3;
  font-weight: 700;
  min-height: 18px;
}

.chat-footnote {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.helpline-grid {
  margin-top: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.helpline-card {
  gap: 10px;
}

.helpline-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.phone-chip {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(120deg, #4ef0c3, #7cc8ff);
  color: #0c1220;
  font-weight: 800;
}

.helpline-number {
  display: grid;
  gap: 4px;
}

.helpline-number a {
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.helpline-number a:hover {
  color: var(--accent);
}

.region-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.distance-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(78, 240, 195, 0.12);
  color: #b6f9e5;
  border: 1px solid rgba(78, 240, 195, 0.4);
  font-weight: 700;
  font-size: 0.85rem;
  display: none;
  margin-left: auto;
  min-width: 88px;
  text-align: center;
}

.helpline-card.has-distance .distance-badge {
  display: inline-flex;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: linear-gradient(120deg, #4ef0c3, #7cc8ff);
  color: #0c1220;
  font-weight: 800;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
  will-change: transform, box-shadow;
  transform: translateZ(0);
  touch-action: manipulation;
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.call-btn:active {
  transform: translateY(-1px);
}

.metrics-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.metrics-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}

.metrics-table th,
.metrics-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--stroke);
}

.metrics-table th {
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.01em;
}

.metrics-table td {
  color: var(--muted);
  font-size: 0.95rem;
  word-break: break-word;
}

.metrics-table .metric-inp {
  color: var(--text);
  font-weight: 700;
}

.footer {
  width: min(1180px, 100%);
  margin: 22px auto 28px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--stroke);
}

.footer .shell {
  padding: 18px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.footer .footer-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 700;
}

.footer .footer-links a {
  color: var(--text);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.footer .footer-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.footer .footer-links a:active {
  transform: translateY(0);
}

.sticky-help {
  position: fixed;
  right: clamp(12px, 4vw, 20px);
  left: auto;
  transform: translateZ(0);
  min-width: 240px;
  width: min(80vw, 360px);
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, #4ef0c3, #7cc8ff);
  color: #0c1220;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  touch-action: manipulation;
}

.sticky-help:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.sticky-help:active {
  transform: translateY(-1px);
}

@media (pointer: coarse) {
  .btn,
  .lang-btn,
  .call-btn,
  .sticky-help {
    transition-duration: 160ms;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
  }
}

@media (min-width: 1280px) {
  main {
    width: min(1400px, 92vw);
    padding-bottom: 200px;
  }
  .shell {
    padding: clamp(24px, 2vw, 36px);
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.2rem, 2vw, 1.8rem);
  }
  .grid,
  .helpline-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .qr-surface.is-visible {
    right: 28px;
    bottom: 28px;
  }
  .sticky-help {
    left: auto;
    right: 28px;
    transform: none;
    width: min(420px, 32vw);
  }
}

@media (min-width: 1600px) {
  main {
    width: min(1500px, 88vw);
  }
  body {
    font-size: 1.05rem;
  }
  h1.hero-title {
    font-size: clamp(32px, 4vw, 52px);
  }
  .shell {
    padding: clamp(28px, 2.4vw, 42px);
  }
}

@media (max-width: 360px) {
  body {
    padding: 12px;
    font-size: 0.95rem;
  }
  h1 {
    font-size: clamp(1.4rem, 8vw, 1.7rem);
    line-height: 1.15;
  }
  .hero {
    gap: 0.6rem;
    padding-bottom: 2.2rem;
  }
  .tag {
    font-size: 0.75rem;
    padding: 0.45rem 0.8rem;
  }
  .cta {
    gap: 0.5rem;
  }
  .cta-note,
  .cta-warning {
    font-size: 0.88rem;
  }
  .cta-warning {
    padding: 0.65rem 0.75rem;
  }
  .cta-buttons {
    gap: 0.5rem;
  }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
  }
  .btn span {
    font-size: 0.9rem;
  }
  .btn .eyebrow {
    font-size: 0.75rem;
  }
  .scroll-hint {
    margin-top: 10px;
  }
  .sticky-help {
    width: calc(100% - 14px);
    max-width: 360px;
    padding: 12px 14px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-height: 520px) {
  .hero {
    padding-bottom: 1.8rem;
  }
  .scroll-hint {
    display: none;
  }
  .sticky-help {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

@keyframes snake-spin {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 1100px) {
  main {
    width: 100%;
    padding-bottom: 180px;
  }
  .shell {
    padding: 20px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .hero {
    text-align: center;
    align-items: center;
    padding-bottom: 3rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .btn,
  .cta-toggle {
    width: 100%;
    justify-content: center;
  }
  .hero-panel {
    width: 100%;
  }
  .fomo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .fomo-timer {
    order: -1;
  }
  .grid,
  .helpline-grid {
    grid-template-columns: 1fr;
  }
  .chat-feed {
    max-height: 320px;
  }
  .chat-footnote {
    font-size: 0.85rem;
  }
  .chat-toggle {
    position: fixed;
    right: 14px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    z-index: 70;
    background: linear-gradient(140deg, #4ef0c3, #7cc8ff);
    color: #0c1220;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.4);
  }
  .faq-head {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .lang-toggle {
    width: 100%;
    justify-content: center;
  }
  .sticky-help {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    width: min(92vw, 480px);
  }
}

@media (max-width: 720px) {
  body {
    padding: 14px;
  }
  .app-logo {
    justify-self: center;
  }
  .tag {
    justify-self: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    text-align: center;
    align-items: center;
    padding-bottom: 60px;
  }
  .meta {
    justify-content: center;
  }
  .scroll-hint {
    justify-content: center;
    text-align: center;
    margin: 12px auto 0;
    position: static;
    width: fit-content;
  }
  .faq-head {
    grid-template-columns: 1fr;
  }
  .shell {
    padding: 18px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .chat-head {
    grid-template-columns: 1fr;
  }
  .chat-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .chat-send {
    width: 100%;
  }
  .sticky-help {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    width: calc(100% - 22px);
    max-width: 420px;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
  .corner-arrow {
    display: inline-flex;
    top: 10px;
    padding: 7px 10px;
    gap: 4px;
    font-size: 0.72rem;
  }
  .corner-arrow .arrow-icon {
    width: 18px;
    height: 18px;
  }
  .hero-title {
    justify-content: center;
    align-self: center;
  }
  .hero-title::after {
    margin-left: 0;
  }
  .scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--text);
    font-weight: 700;
    position: relative;
    margin: 18px auto 0;
    max-width: 90%;
    justify-content: center;
    text-align: center;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
    animation: hint-bounce 1.4s ease-in-out infinite, subtle-glow 1.8s ease-in-out infinite;
  }
  .fomo-grid {
    grid-template-columns: 1fr;
  }
  .fomo-timer {
    order: -1;
  }
  .fomo-cta-row {
    justify-content: center;
  }
  main {
    padding-bottom: 160px; /* extra scroll room for sticky helpline bar */
  }
  .footer .footer-links {
    width: 100%;
    flex-direction: column;
  }
  .footer .footer-links a {
    width: 100%;
    text-align: center;
  }
  .tag-desktop {
    display: none;
  }
}

@media (max-width: 540px) {
  .shell {
    padding: 14px;
  }
  .surface {
    border-radius: 16px;
  }
  .fomo-grid {
    gap: 12px;
  }
  .timer-digits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    justify-items: center;
  }
  .timer-sep {
    display: none;
  }
  .timer-block {
    min-width: 68px;
    padding: 10px 8px;
  }
  .timer-value {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .hero-title::after {
    display: none;
  }
  .hero {
    padding-bottom: 2.8rem;
  }
  .cta-buttons {
    width: 100%;
  }
  .btn,
  .cta-toggle {
    width: 100%;
  }
  .grid,
  .helpline-grid {
    grid-template-columns: 1fr;
  }
  .faq-head {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .lang-toggle {
    width: 100%;
    justify-content: center;
  }
  .corner-arrow {
    display: none;
  }
  .sticky-help {
    width: calc(100% - 26px);
    max-width: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes cta-glow {
  0%, 100% {
    box-shadow: 0 16px 45px rgba(78, 240, 195, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(78, 240, 195, 0.2);
  }
  50% {
    box-shadow: 0 18px 55px rgba(78, 240, 195, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.26), 0 0 0 14px rgba(78, 240, 195, 0.06);
  }
}

@keyframes subtle-glow {
  0%, 100% { box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(78, 240, 195, 0.2); }
  50% { box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(78, 240, 195, 0.04); }
}

@keyframes cta-pop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.015); }
}

@keyframes urgency-pulse {
  0%, 100% { transform: translateY(0); text-shadow: 0 0 16px rgba(246, 216, 143, 0.24); }
  50% { transform: translateY(-2px); text-shadow: 0 0 24px rgba(246, 216, 143, 0.36); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
