/* ── Design tokens ── */
:root,
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070b14;
  --bg-elevated: #0d1322;
  --surface: rgba(17, 24, 42, 0.72);
  --surface-solid: #11182a;
  --border: rgba(148, 163, 184, 0.12);
  --border-hover: rgba(148, 163, 184, 0.22);
  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --primary: #3b82f6;
  --primary-light: #60a5fa;
  --cyan: #22d3ee;
  --violet: #a78bfa;
  --success: #34d399;
  --error: #f87171;
  --telegram: #2aabee;
  --whatsapp: #25d366;
  --email-channel: #f59e0b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  --header-h: 96px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --glow-primary: rgba(59, 130, 246, 0.35);
  --header-bg: rgba(7, 11, 20, 0.75);
  --footer-bg: rgba(7, 11, 20, 0.6);
  --nav-hover-bg: rgba(255, 255, 255, 0.05);
  --nav-mobile-bg: rgba(7, 11, 20, 0.97);
  --sticky-bg: rgba(7, 11, 20, 0.9);
  --ghost-bg: rgba(255, 255, 255, 0.04);
  --ghost-hover-bg: rgba(255, 255, 255, 0.08);
  --orb-opacity: 0.45;
  --grid-line: rgba(148, 163, 184, 0.04);
  --code-bg: rgba(59, 130, 246, 0.12);
  --code-border: rgba(34, 211, 238, 0.15);
  --theme-switch-track: rgba(255, 255, 255, 0.1);
  --theme-switch-thumb: #f1f5f9;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f8fafc;
  --bg-elevated: #ffffff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --border-hover: rgba(15, 23, 42, 0.18);
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --cyan: #0891b2;
  --violet: #7c3aed;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  --header-bg: rgba(248, 250, 252, 0.88);
  --footer-bg: rgba(241, 245, 249, 0.95);
  --nav-hover-bg: rgba(15, 23, 42, 0.05);
  --nav-mobile-bg: rgba(248, 250, 252, 0.98);
  --sticky-bg: rgba(255, 255, 255, 0.95);
  --ghost-bg: rgba(15, 23, 42, 0.04);
  --ghost-hover-bg: rgba(15, 23, 42, 0.08);
  --orb-opacity: 0.18;
  --grid-line: rgba(15, 23, 42, 0.06);
  --code-bg: rgba(37, 99, 235, 0.08);
  --code-border: rgba(37, 99, 235, 0.15);
  --theme-switch-track: rgba(15, 23, 42, 0.1);
  --theme-switch-thumb: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--transition), color var(--transition);
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--cyan); }

code {
  font-family: "Cascadia Code", "Fira Code", monospace;
  font-size: 0.88em;
  background: var(--code-bg);
  color: var(--cyan);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--code-border);
}

/* ── Background effects ── */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: var(--orb-opacity);
  animation: float 18s ease-in-out infinite;
  transition: opacity var(--transition);
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #1d4ed8 0%, transparent 70%);
  top: -180px; left: -120px;
}
.orb-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, #0891b2 0%, transparent 70%);
  top: 30%; right: -160px;
  animation-delay: -6s;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  bottom: -100px; left: 25%;
  animation-delay: -12s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ── Layout ── */
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.main-content {
  flex: 1;
  padding: calc(var(--header-h) + 32px) 0 64px;
  animation: pageEnter 0.5s var(--ease-out) both;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--header-bg);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition),
    box-shadow var(--transition), transform 0.35s var(--ease-out);
  animation: slideDown 0.55s var(--ease-out) both;
}

.header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  max-width: min(320px, 60vw);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.25));
  transition: transform 0.35s var(--ease-out), filter 0.35s var(--ease-out);
}

.logo-img-light { display: none; }

[data-theme="light"] .logo-img-dark { display: none; }
[data-theme="light"] .logo-img-light { display: block; }

.logo:hover .logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 14px rgba(59, 130, 246, 0.4));
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: min(220px, 55vw);
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 6px rgba(59, 130, 246, 0.2));
}

.footer-logo-light { display: none; }

[data-theme="light"] .footer-logo-dark { display: none; }
[data-theme="light"] .footer-logo-light { display: block; }

.nav {
  display: flex;
  align-items: center;
  gap: 6px 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--text);
  background: var(--nav-hover-bg);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 12px;
}

.header-theme {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.theme-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.theme-option {
  display: block;
  margin: 0;
  cursor: pointer;
}

.theme-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.theme-option-card {
  display: block;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: all var(--transition);
}

.theme-option-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.theme-option-card small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.theme-option input:checked + .theme-option-card {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.08);
}

.theme-option:hover .theme-option-card {
  border-color: var(--border-hover);
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.theme-switch-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 62px;
  height: 32px;
  padding: 0 8px;
  border-radius: 100px;
  background: var(--theme-switch-track);
  border: 1px solid var(--border-hover);
  transition: background var(--transition), border-color var(--transition);
}

.theme-switch-icon {
  font-size: 0.9rem;
  line-height: 1;
  z-index: 1;
  opacity: 0.55;
  transition: opacity var(--transition);
}

.theme-switch-sun { color: #f59e0b; }
.theme-switch-moon { color: #60a5fa; }

[data-theme="light"] .theme-switch-sun { opacity: 1; }
[data-theme="dark"] .theme-switch-moon { opacity: 1; }

.theme-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--theme-switch-thumb);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition), background var(--transition);
}

[data-theme="dark"] .theme-switch-thumb {
  transform: translateX(28px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 10px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-primary);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-position 0.4s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease-out);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px rgba(59, 130, 246, 0.5);
  background-position: right center;
  color: #fff;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-ghost {
  background: var(--ghost-bg);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--ghost-hover-bg);
  border-color: var(--border-hover);
  color: var(--text);
}

.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-nav { margin-left: 8px; }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 48px 0 56px;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.pulse-dot, .status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.status-dot { display: inline-block; vertical-align: middle; margin-right: 6px; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--primary-light) 50%, var(--violet) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease-in-out infinite;
}

.lead, .hero-lead, .page-lead {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 600px;
}
.page-lead { text-align: left; margin-left: 0; }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-actions .btn { min-width: 160px; }

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 16px 28px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat { padding: 0 24px; text-align: center; }
.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── Channels strip ── */
.channels-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0 56px;
}
.channels-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.channel-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.pill:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.pill-sm { padding: 4px 10px; font-size: 0.78rem; }
.pill-telegram { background: rgba(42, 171, 238, 0.12); color: #7dd3fc; border-color: rgba(42, 171, 238, 0.25); }
.pill-whatsapp { background: rgba(37, 211, 102, 0.12); color: #86efac; border-color: rgba(37, 211, 102, 0.25); }
.pill-email { background: rgba(245, 158, 11, 0.12); color: #fcd34d; border-color: rgba(245, 158, 11, 0.25); }

/* ── Sections ── */
.section { padding: 24px 0 48px; }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}
.section-header p { color: var(--text-secondary); margin: 0; }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 8px;
}

.page-header {
  margin-bottom: 36px;
  max-width: 640px;
}
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.card-feature:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
}

.card-feature h3 {
  margin: 16px 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
}
.card-feature p { color: var(--text-secondary); margin: 0; font-size: 0.95rem; }

.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease-out);
}
.card-icon-blue { background: rgba(59, 130, 246, 0.15); color: var(--primary-light); }
.card-icon-violet { background: rgba(167, 139, 250, 0.15); color: var(--violet); }
.card-icon-cyan { background: rgba(34, 211, 238, 0.15); color: var(--cyan); }

/* CTA panel */
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 44px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(34, 211, 238, 0.08) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: calc(var(--radius) + 4px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 55%);
  animation: ctaGlow 6s ease-in-out infinite;
  pointer-events: none;
}

.cta-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
}
.cta-content h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-content p { margin: 0; color: var(--text-secondary); max-width: 480px; }

/* ── Guide ── */
.guide-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.guide-nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.guide-nav-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
  margin: 0 0 12px;
}
.guide-nav a {
  display: block;
  padding: 8px 12px;
  margin: 2px 0;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.guide-nav a:hover {
  background: var(--nav-hover-bg);
  color: var(--text);
}

.guide-section {
  display: flex;
  gap: 24px;
  padding: 32px;
  margin-bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.guide-step-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.guide-step-body h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.styled-list { padding-left: 20px; color: var(--text-secondary); }
.styled-list li { margin-bottom: 10px; }
.styled-list li::marker { color: var(--primary-light); }

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-free { background: rgba(52, 211, 153, 0.15); color: var(--success); }
.badge-optional { background: rgba(148, 163, 184, 0.15); color: var(--text-secondary); }

.tip {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.code-block, pre {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  overflow-x: auto;
  font-size: 0.9rem;
  color: var(--cyan);
  margin: 16px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.info-item {
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.info-item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* ── Setup form ── */
.setup-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.progress-step span {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.8rem;
}
.progress-step.active { color: var(--text); }
.progress-step.active span {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border-color: transparent;
  color: #fff;
}
.progress-line {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 8px;
}

.setup-form { max-width: 720px; margin: 0 auto; }

.form-section {
  border: none;
  margin: 0 0 20px;
  padding: 28px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-section-head {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-section-icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border-radius: 12px;
  flex-shrink: 0;
}
.form-section legend {
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0;
  margin-bottom: 4px;
}
.form-section-desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

label { display: block; margin-bottom: 18px; }
.label-text {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

label.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  width: fit-content;
  max-width: 100%;
}

label.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

input, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all var(--transition);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
.field-error input, .field-error textarea { border-color: var(--error); }

.channel-card {
  margin-bottom: 16px;
  padding: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.channel-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  margin: 0;
}
.channel-toggle input { display: none; }
.channel-toggle-ui {
  width: 44px; height: 24px;
  background: var(--surface-solid);
  border-radius: 100px;
  border: 1px solid var(--border);
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}
.channel-toggle-ui::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}
.channel-toggle input:checked + .channel-toggle-ui {
  background: rgba(59, 130, 246, 0.3);
  border-color: var(--primary);
}
.channel-toggle input:checked + .channel-toggle-ui::after {
  transform: translateX(20px);
  background: var(--primary-light);
}
.channel-toggle-label { flex: 1; }
.channel-toggle-label strong { display: block; font-size: 0.95rem; }
.channel-toggle-label small { color: var(--text-muted); font-size: 0.82rem; }

.channel-fields {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0;
}
.channel-fields.hidden { display: none; }

.form-actions { margin-top: 28px; }
.form-actions.center { text-align: center; }
.sticky-actions {
  position: sticky;
  bottom: 16px;
  padding: 20px;
  background: var(--sticky-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.hint { color: var(--text-muted); font-size: 0.88rem; margin: 12px 0 0; }
.hint.center { text-align: center; }

/* ── Alerts ── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.alert-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--error);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.alert-error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #fecaca;
}

/* ── Success ── */
.success-panel {
  text-align: center;
  max-width: 560px;
  margin: 24px auto;
}

.success-ring {
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.1);
  border: 2px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-icon { color: var(--success); }

@keyframes success-pop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.summary { text-align: left; margin: 32px 0; }
.summary h3 { margin: 0 0 20px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }

.summary-dl { margin: 0; }
.summary-dl > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.summary-dl > div:last-child { border-bottom: none; }
.summary-dl dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-weight: 600; }
.summary-dl dd { margin: 0; }

.tag {
  display: inline-block;
  padding: 3px 10px;
  margin: 2px 4px 2px 0;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--primary-light);
}
.tag-list { display: flex; flex-wrap: wrap; gap: 4px; }

.success-note { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 28px; }
.text-muted { color: var(--text-muted); }

/* ── Status dashboard ── */
.cards-status { grid-template-columns: 1fr; }

.card-status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 8px 20px;
  align-items: start;
  padding: 28px 32px;
}

.user-avatar {
  grid-row: span 2;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}
.user-info h3 { margin: 0; font-size: 1.15rem; font-weight: 700; }
.user-email { margin: 4px 0 0; color: var(--text-muted); font-size: 0.9rem; }

.user-meta {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.meta-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.status-badge-live {
  grid-row: span 2;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--success);
}

.empty-state {
  text-align: center;
  padding: 64px 32px;
  max-width: 440px;
  margin: 0 auto;
}
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h2 { margin: 0 0 10px; font-size: 1.4rem; }
.empty-state p { color: var(--text-secondary); margin-bottom: 24px; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--footer-bg);
  transition: background var(--transition), border-color var(--transition);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.footer-meta { margin: 0; color: var(--text-muted); font-size: 0.88rem; }
.footer-links {
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }
.footer-links a:hover { color: var(--text); }

#submit-btn:disabled { opacity: 0.65; cursor: wait; transform: none; }

.alert-success { background: rgba(52, 211, 153, 0.1); border: 1px solid rgba(52, 211, 153, 0.3); color: #a7f3d0; }
.alert-success .alert-icon { background: var(--success); }

.auth-card { max-width: 440px; margin: 40px auto; padding: 36px; }
.auth-card h1 { margin: 0 0 8px; font-size: 1.6rem; }
.auth-lead { margin: 0 0 8px; font-size: 0.95rem; }
.auth-form { margin-top: 24px; }
.auth-forgot-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--primary-light);
  text-decoration: none;
}
.auth-forgot-link:hover { text-decoration: underline; }
.auth-switch { text-align: center; margin-top: 20px; color: var(--text-muted); font-size: 0.9rem; }

.row-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.dash-stat { padding: 20px; }
.dash-stat .stat-value.sm { font-size: 1.25rem; display: block; margin-top: 4px; }
.ref-code { font-family: monospace; letter-spacing: 0.05em; }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th, .data-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.data-table th { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }

.pill-discord { background: rgba(88, 101, 242, 0.15); color: #a5b4fc; border-color: rgba(88, 101, 242, 0.3); }
.pill-slack { background: rgba(224, 30, 90, 0.12); color: #f9a8d4; border-color: rgba(224, 30, 90, 0.25); }
.pill-sms { background: rgba(244, 63, 94, 0.12); color: #fda4af; border-color: rgba(244, 63, 94, 0.25); }

.wizard-steps {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.wizard-step {
  flex: 1;
  min-width: 130px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
}
.wizard-step.active { border-color: var(--primary); color: var(--primary-light); background: rgba(59, 130, 246, 0.1); }
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
.wizard-nav {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.wizard-nav .btn { min-width: 120px; }
.hidden { display: none !important; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.faq-item { margin-bottom: 12px; padding: 0; overflow: hidden; }
.faq-item summary { padding: 18px 22px; cursor: pointer; font-weight: 600; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 22px 18px; margin: 0; color: var(--text-secondary); }

.contact-grid {
  display: grid;
  gap: 20px;
  max-width: 920px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid .contact-card:last-child { grid-column: 1 / -1; }
}
.contact-card h2 { margin: 0 0 12px; font-size: 1.15rem; }
.contact-email-row { margin: 20px 0 12px; }
.contact-note { font-size: 0.9rem; }
.contact-links { margin: 0; padding-left: 1.2rem; }
.contact-links li { margin-bottom: 8px; }

.admin-support-card .row-header { margin-bottom: 12px; }
.admin-support-form { margin-top: 8px; }
.admin-support-fieldset {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0 0 16px;
}
.admin-support-fieldset:last-of-type { margin-bottom: 0; }
.admin-support-toggle { margin-bottom: 12px; font-weight: 600; }
.admin-support-input { display: block; margin-bottom: 8px; }
.admin-support-input .label-text { display: block; margin-bottom: 6px; font-size: 0.9rem; color: var(--text-secondary); }
.admin-support-input input { width: 100%; max-width: 420px; }
.admin-support-hint { font-size: 0.85rem; margin: 0; }
.admin-support-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.admin-instructions-card h4 { margin: 0 0 8px; font-size: 1rem; }
.admin-instruction-block { margin-top: 18px; }
.admin-instruction-block:first-of-type { margin-top: 8px; }
.admin-code-block { margin: 10px 0 0; font-size: 0.82rem; line-height: 1.55; white-space: pre-wrap; word-break: break-word; }

.copy-btn {
  margin-left: 8px; padding: 4px 10px; font-size: 0.75rem; border-radius: 6px;
  background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-secondary);
  cursor: pointer; font-family: var(--font);
}

/* Admin dashboard */
.nav-admin { color: var(--cyan) !important; font-weight: 600; }

.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  padding: 20px;
}

.admin-sidebar-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
  margin: 0 0 14px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1.4;
  white-space: nowrap;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary-light);
}

.admin-main { min-width: 0; }

.admin-stats {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.admin-stat .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  margin-top: 6px;
}

.table-card { padding: 0; overflow-x: auto; }
.table-card .data-table { margin: 0; }
.data-table.compact th,
.data-table.compact td { padding: 10px 14px; font-size: 0.85rem; }

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.inline-form { display: inline; margin: 0; }

.btn-xs {
  padding: 6px 12px;
  font-size: 0.78rem;
}

.btn-danger {
  background: rgba(248, 113, 113, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.btn-danger:hover {
  background: rgba(248, 113, 113, 0.25);
  color: #fecaca;
}

.text-error { color: #fca5a5; }

.admin-back-link { margin-top: 20px; }

@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; padding: 20px 24px; }
  .admin-nav {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .admin-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .admin-nav-link {
    text-align: center;
    padding: 12px 10px;
    font-size: 0.85rem;
  }
}

.btn-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .guide-layout { grid-template-columns: 1fr; }
  .guide-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 20px;
  }
  .guide-nav-title { width: 100%; margin-bottom: 4px; }
  .guide-nav a {
    padding: 10px 14px;
    background: var(--bg-elevated);
    border-radius: 8px;
    white-space: nowrap;
  }
  .guide-section { flex-direction: column; gap: 12px; }
}

@media (max-width: 768px) {
  :root { --header-h: 76px; }

  .logo-img {
    height: 48px;
    max-width: min(220px, 62vw);
  }

  .header-end {
    margin-left: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--nav-mobile-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav {
    gap: 8px;
  }

  .nav-link, .btn-nav {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 14px 16px;
  }

  .hero { padding: 32px 0 40px; }
  .hero-stats {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }
  .stat { padding: 12px 0; }
  .stat-divider { width: 60px; height: 1px; }

  .cta-panel {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .cta-panel .btn { width: 100%; }

  .card-status {
    grid-template-columns: auto 1fr;
  }
  .status-badge-live {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
  }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-logo {
    height: 44px;
    max-width: min(200px, 80vw);
    object-position: center;
    margin: 0 auto;
  }
  .footer-links {
    justify-content: center;
    gap: 16px 24px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .logo-img { height: 42px; max-width: 200px; }
  .setup-progress { gap: 8px; }
  .progress-line { width: 20px; }
  .progress-step { font-size: 0.75rem; }
  .form-section { padding: 20px; }
}

/* ── Animations ── */
@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(8%, -6%) scale(1.08); opacity: 1; }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, 48px 48px; }
}

@media (prefers-reduced-motion: no-preference) {
  .grid-overlay {
    animation: gridDrift 24s linear infinite;
  }

  .hero > * {
    animation: fadeInUp 0.75s var(--ease-out) both;
  }
  .hero > *:nth-child(1) { animation-delay: 0.05s; }
  .hero > *:nth-child(2) { animation-delay: 0.14s; }
  .hero > *:nth-child(3) { animation-delay: 0.23s; }
  .hero > *:nth-child(4) { animation-delay: 0.32s; }
  .hero > *:nth-child(5) { animation-delay: 0.41s; }

  .channel-pills .pill:nth-child(1) { animation: fadeInUp 0.6s var(--ease-out) 0.5s both; }
  .channel-pills .pill:nth-child(2) { animation: fadeInUp 0.6s var(--ease-out) 0.62s both; }
  .channel-pills .pill:nth-child(3) { animation: fadeInUp 0.6s var(--ease-out) 0.74s both; }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .nav.open .nav-link,
  .nav.open .btn-nav {
    animation: fadeInUp 0.4s var(--ease-out) both;
  }
  .nav.open .nav-link:nth-child(1) { animation-delay: 0.04s; }
  .nav.open .nav-link:nth-child(2) { animation-delay: 0.08s; }
  .nav.open .nav-link:nth-child(3) { animation-delay: 0.12s; }
  .nav.open .nav-link:nth-child(4) { animation-delay: 0.16s; }
  .nav.open .nav-link:nth-child(5) { animation-delay: 0.2s; }
  .nav.open .nav-link:nth-child(6) { animation-delay: 0.24s; }
  .nav.open .btn-nav { animation-delay: 0.28s; }

  .alert {
    animation: fadeInUp 0.5s var(--ease-out) both;
  }

  .dash-stat.is-visible .stat-value {
    animation: fadeInUp 0.5s var(--ease-out) both;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Pricing & plans */
.pricing-trial-banner {
  margin-bottom: 28px;
  padding: 16px 20px;
  border-left: 3px solid var(--accent-cyan);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card-featured {
  border-color: var(--accent-violet);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.25);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-violet);
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

.pricing-currency {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.8;
}

.pricing-period {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-equiv {
  margin: 0;
  font-size: 0.85rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  flex: 1;
}

.pricing-features li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.pricing-note {
  margin: 8px 0 0;
  font-size: 0.8rem;
  text-align: center;
}

.pricing-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.plan-banner {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.plan-banner-trial {
  color: var(--accent-cyan);
}

.card-inbox {
  margin-top: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
}

.inbox-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.inbox-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-secondary);
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* ── Landing page ── */
.landing-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0 24px;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: visible;
}

.landing-hero-copy {
  text-align: left;
}

.landing-title {
  text-align: left;
  margin-bottom: 16px;
}

.landing-lead {
  text-align: left;
  margin-left: 0;
  margin-bottom: 24px;
  max-width: none;
}

.landing-actions {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.landing-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.landing-trust-line span::before {
  color: var(--success);
  margin-right: 4px;
}

.landing-stats {
  display: flex;
  margin-top: 40px;
  width: 100%;
  justify-content: center;
}

.landing-channels {
  padding-bottom: 32px;
}

/* Hero device mockup */
.landing-hero-visual {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  overflow: visible;
}

.demo-device {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    0 24px 48px rgba(59, 130, 246, 0.12),
    0 0 0 1px rgba(59, 130, 246, 0.08);
  transform: none;
}

.demo-device.is-playing {
  animation: deviceFloat 6s ease-in-out infinite;
}

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

.demo-device-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border);
}

.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.demo-dot:first-child { background: #f87171; }
.demo-dot:nth-child(2) { background: #fbbf24; }
.demo-dot:nth-child(3) { background: #34d399; }

.demo-device-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.demo-device-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  min-height: 280px;
}

.demo-inbox-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--success);
  font-weight: 700;
}

.demo-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.demo-inbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.demo-email {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  opacity: 1;
  transform: none;
}

.demo-device.is-playing .demo-email-1 {
  animation: emailHighlight 0.4s var(--ease-out) 0.5s;
}

.demo-device.is-playing .demo-email-2 {
  animation: emailHighlight 0.4s var(--ease-out) 1.5s;
}

@keyframes emailHighlight {
  0%, 100% { border-color: var(--border); background: rgba(255, 255, 255, 0.04); }
  50% { border-color: rgba(59, 130, 246, 0.5); background: rgba(59, 130, 246, 0.08); }
}

.demo-email-from {
  display: block;
  font-size: 0.78rem;
  color: var(--cyan);
  font-weight: 600;
  word-break: break-all;
}

.demo-email-subject {
  display: block;
  font-size: 0.84rem;
  color: var(--text);
  margin-top: 4px;
  line-height: 1.45;
}

.demo-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  margin-top: auto;
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.18), rgba(59, 130, 246, 0.12));
  border: 1px solid rgba(42, 171, 238, 0.35);
  border-radius: 12px;
  opacity: 1;
  transform: none;
  flex-shrink: 0;
}

.demo-device.is-playing .demo-alert-pop {
  animation: alertGlow 3s ease-in-out 2s infinite;
}

@keyframes alertGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42, 171, 238, 0); }
  50% { box-shadow: 0 0 20px 2px rgba(42, 171, 238, 0.25); }
}

.demo-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(42, 171, 238, 0.25);
  color: #7dd3fc;
  flex-shrink: 0;
}

.demo-alert-text { min-width: 0; }
.demo-alert strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
}
.demo-alert p {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  word-break: break-word;
}

/* Video-style demo player */
.landing-video-section {
  padding-top: 16px;
}

.video-demo-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.video-demo-player {
  position: relative;
  background: #0a0f1a;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-demo-screen {
  position: relative;
  min-height: 340px;
  padding: 32px 28px 48px;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
}

.vd-scene {
  position: absolute;
  inset: 32px 28px 48px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.vd-scene.active {
  opacity: 1;
  transform: translateY(0);
}

.vd-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 16px;
}

.vd-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 420px;
  margin: 0 auto;
}

.vd-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.vd-row:last-child { border-bottom: none; }
.vd-key { color: var(--text-muted); }
.vd-val { font-weight: 600; }
.vd-success { color: var(--success); }

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

.vd-tags span {
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 600;
}

.vd-hint {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vd-email-card {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.vd-telegram-card {
  background: rgba(42, 171, 238, 0.08);
  border-color: rgba(42, 171, 238, 0.25);
}

.vd-telegram-header {
  font-size: 0.78rem;
  font-weight: 700;
  color: #7dd3fc;
  margin-bottom: 10px;
}

.vd-telegram-card p {
  margin: 0 0 6px;
  font-size: 0.88rem;
}

.vd-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--cyan);
  font-weight: 600;
}

.video-demo-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(7, 11, 20, 0.55);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  color: var(--text);
}

.video-demo-player.is-playing .video-demo-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-play-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.9);
  font-size: 1.4rem;
  padding-left: 4px;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.video-play-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.video-demo-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.video-demo-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transition: width 0.1s linear;
}

.video-demo-controls {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.3);
}

.video-demo-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
}

.landing-benefits {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.landing-use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.landing-use-copy {
  text-align: left;
}

.landing-use-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 8px 0 16px;
  letter-spacing: -0.02em;
}

.landing-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.landing-checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.landing-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.landing-quote-card blockquote {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
}

.landing-quote-card cite {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
}

.landing-pricing-panel {
  flex-direction: column;
  align-items: stretch;
}

.landing-pricing-points {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.landing-pricing-points li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.landing-pricing-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.landing-pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

.landing-faq {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.landing-faq h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.landing-faq p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.landing-faq-more {
  text-align: center;
  margin-top: 20px;
}

.landing-final-cta {
  text-align: center;
  justify-content: center;
}

.landing-final-cta .cta-content {
  max-width: 520px;
}

.pricing-early-banner {
  border-left: 3px solid var(--success);
  margin-bottom: 16px;
}

.pricing-grid-single {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-future-card h3 {
  margin: 0 0 12px;
}

.pricing-coming-soon-note {
  margin-top: 32px;
}

/* Trust logos */
.trust-logos-section {
  margin-top: 48px;
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.trust-logos-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.trust-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.trust-logo-item:hover {
  opacity: 1;
}

.trust-logo-item svg {
  color: var(--text-secondary);
}

.trust-logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
}

.trust-logo-item-gmail .trust-logo-icon {
  width: 52px;
  height: 52px;
}

/* Trustpilot */
.trustpilot-section {
  margin-top: 40px;
}

.trustpilot-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 28px;
}

.trustpilot-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

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

.trustpilot-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #00b67a;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 4px;
}

.trustpilot-wordmark {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.trustpilot-logo {
  display: block;
}

.trustpilot-stars {
  display: flex;
  gap: 4px;
}

.trustpilot-star {
  font-size: 1.35rem;
  line-height: 1;
}

.trustpilot-star-filled {
  color: #00b67a;
}

.trustpilot-lead {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.trustpilot-btn {
  margin-bottom: 12px;
}

.trustpilot-note {
  margin: 0;
  font-size: 0.82rem;
}

/* Download page */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-card-featured {
  border-color: rgba(99, 102, 241, 0.35);
}

.download-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.download-icon img {
  border-radius: 12px;
}

.download-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.download-steps li {
  padding: 6px 0 6px 20px;
  position: relative;
}

.download-steps li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.download-note {
  margin: 8px 0 0;
  font-size: 0.8rem;
}

.download-qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 16px 0;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
}

.download-qr-img {
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.download-qr-caption {
  margin: 12px 0 4px;
  font-size: 0.85rem;
}

.download-qr-url {
  margin: 0;
  font-size: 0.72rem;
  word-break: break-all;
  max-width: 100%;
}

.download-qr-url code {
  font-size: 0.72rem;
}

.download-card-ios {
  border-color: rgba(148, 163, 184, 0.35);
}

.download-icon-ios {
  color: var(--text-primary);
}

.download-steps-numbered {
  list-style: none;
  counter-reset: ios-step;
}

.download-steps-numbered li {
  counter-increment: ios-step;
  padding-left: 28px;
}

.download-steps-numbered li::before {
  content: counter(ios-step);
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.25);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 6px;
}

.ios-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 4px;
  background: rgba(99, 102, 241, 0.2);
  font-size: 0.85rem;
  vertical-align: middle;
}

.download-qr-block-ios {
  margin-top: 8px;
}

.download-faq .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.landing-download-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.landing-download-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

@media (max-width: 720px) {
  .landing-download-panel {
    grid-template-columns: 1fr;
  }
}

/* Admin todos */
.admin-todo-intro {
  margin: 0 0 16px;
  font-size: 0.9rem;
}

.admin-todo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-todo-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
}

.admin-todo-item.admin-todo-done {
  border-color: rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.05);
}

.admin-todo-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 6px;
}

.admin-todo-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.admin-todo-status {
  font-size: 0.7rem;
}

.admin-todo-action {
  flex-shrink: 0;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.82rem;
}

/* In-app messages */
.messages-inbox-lead {
  margin: 4px 0 0;
  font-size: 0.88rem;
}

.message-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.message-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.2s;
}

.message-card-unread {
  border-left: 3px solid var(--cyan);
  background: rgba(34, 211, 238, 0.04);
}

.message-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.message-card-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.message-card-from {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  word-break: break-all;
}

.message-card-subject {
  margin: 6px 0 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.message-card-snippet {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.message-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.message-inbox-tag {
  font-size: 0.75rem;
}

.message-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-xs {
  padding: 4px 10px;
  font-size: 0.75rem;
}

.messages-empty {
  text-align: center;
  padding: 24px 16px;
}

.messages-empty p {
  margin-bottom: 16px;
}

.message-card-demo {
  border-style: dashed;
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.03);
}

.messages-demo-note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  text-align: center;
}

/* API keys admin */
.api-key-reveal {
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.06);
}

.api-key-display {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.api-key-display code {
  flex: 1;
  min-width: 200px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.82rem;
  word-break: break-all;
}

.api-key-form label {
  display: block;
  margin-bottom: 12px;
}

.api-code-block {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.82rem;
  overflow-x: auto;
  margin: 8px 0;
}

.api-endpoint-list {
  margin-top: 12px;
}

.api-endpoint-list code {
  font-size: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
  .demo-device.is-playing {
    animation: none;
  }
  .demo-device.is-playing .demo-email-1,
  .demo-device.is-playing .demo-email-2,
  .demo-device.is-playing .demo-alert-pop {
    animation: none;
  }
}

@media (max-width: 900px) {
  .landing-hero-grid,
  .landing-use-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .landing-hero-copy,
  .landing-title,
  .landing-lead {
    text-align: center;
  }

  .landing-actions {
    justify-content: center;
  }

  .landing-trust-line {
    justify-content: center;
  }

  .demo-device {
    max-width: 400px;
    margin: 0 auto;
  }

  .landing-hero-visual {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-stats {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
  }

  .stat-divider { display: none; }
}

/* Admin push messages */
.admin-messages-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.admin-messages-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-compose-card h3,
.admin-messages-section h3,
.admin-draft-card h3 {
  margin: 0 0 12px;
}

.admin-compose-hint {
  margin: 0 0 16px;
  font-size: 0.88rem;
}

.admin-compose-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.admin-messages-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-draft-templates {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-draft-link {
  text-align: left;
  justify-content: flex-start;
}

.admin-holiday-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-holiday-item {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-holiday-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.admin-holiday-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.admin-holiday-note {
  margin: 6px 0 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.admin-broadcast-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-broadcast-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-broadcast-item:last-child {
  border-bottom: none;
}

.form-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.form-check-row input {
  margin-top: 3px;
}

/* User dashboard push announcements */
.push-messages-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.push-message-card {
  border-color: rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(34, 211, 238, 0.04));
}

.push-message-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.push-message-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet);
}

.push-dismiss-form {
  margin: 0;
}

.push-message-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.push-message-body {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .admin-messages-layout {
    grid-template-columns: 1fr;
  }
}
