@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Dark Mode Palette (Dashboards & Login) */
  --bg-primary: #0a0c10;
  --bg-secondary: #11141b;
  --bg-card: rgba(18, 22, 32, 0.7);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(239, 68, 68, 0.4);
  
  --color-primary: #ef4444; /* Neon Crimson */
  --color-primary-glow: rgba(239, 68, 68, 0.15);
  --color-secondary: #7c3aed; /* Deep Violet */
  --color-secondary-glow: rgba(124, 58, 237, 0.15);
  --color-success: #10b981;
  --color-danger: #f43f5e;
  --color-warning: #f59e0b;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #4b5563;
  
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

a:hover {
  color: var(--color-secondary);
}

/* Background Glow Gradients */
.glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: radial-gradient(circle at 10% 5%, var(--color-primary-glow) 0%, transparent 40%),
              radial-gradient(circle at 90% 30%, var(--color-secondary-glow) 0%, transparent 45%);
  z-index: -1;
  pointer-events: none;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-bolt {
  color: var(--color-primary);
  font-size: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
}

/* Custom Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

/* Glassmorphism Cards */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.hero {
  padding: 120px 8% 80px 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-badge {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 800;
}

.hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

/* Section Layout */
.section {
  padding: 80px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.section-title p {
  color: var(--text-muted);
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 18px;
}

/* Sandbox Playground */
.playground-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 100px 8%;
}

.playground-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.playground-console {
  background: #07090e;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 4px 12px rgba(0,0,0,0.5);
}

.console-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.console-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: var(--color-danger); }
.dot-yellow { background: var(--color-warning); }
.dot-green { background: var(--color-success); }

.console-body {
  padding: 20px;
  min-height: 280px;
  color: #a7f3d0;
  overflow-y: auto;
  line-height: 1.6;
}

/* Authentication Page Container */
.auth-container {
  max-width: 440px;
  margin: 100px auto;
  padding: 0 20px;
}

.auth-container .card {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

/* Developer Console Dashboard */
.dashboard-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 40px 8%;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 550;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.sidebar-item:hover, .sidebar-item.active {
  background: rgba(239, 68, 68, 0.08);
  color: var(--color-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-display);
  color: #fff;
}

.stat-label {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logs-table-container {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.15);
}

.logs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.logs-table th {
  background: rgba(255, 255, 255, 0.01);
  padding: 14px 18px;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}

.logs-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
}

.logs-table tr:hover {
  background: rgba(255, 255, 255, 0.015);
}

.status-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-active {
  background: rgba(16, 185, 129, 0.08);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-expired {
  background: rgba(244, 63, 94, 0.08);
  color: var(--color-danger);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.badge-verified {
  background: rgba(124, 58, 237, 0.08);
  color: #a78bfa;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Documentation Guides */
.docs-tabs-container {
  margin-top: 30px;
}

.docs-tabs {
  display: flex;
  gap: 10px;
  list-style: none;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.docs-tab {
  padding: 12px 20px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.docs-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

pre {
  background: #090c12 !important;
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  overflow-x: auto;
}

code {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: #38bdf8;
}

.docs-code-container {
  display: none;
}

.docs-code-container.active {
  display: block;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.toast {
  background: rgba(17, 20, 28, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--color-primary);
  color: var(--text-main);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  font-weight: 550;
  font-size: 14px;
  animation: slideIn 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.toast-success { border-left-color: var(--color-success); }
.toast-error { border-left-color: var(--color-danger); }

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  font-size: 13.5px;
  background: var(--bg-secondary);
}

/* ==========================================================================
   LANDING PAGE — JustAuth editorial (professional)
   ========================================================================== */
body.landing-page {
  --landing-bg: #E4E6DF;
  --landing-bg-dark: #0A0A0A;
  --landing-surface: #FFFFFF;
  --landing-accent-block: #B8B5A8;
  --landing-bar: #3D3D3D;
  --landing-text: #0F0F0F;
  --landing-text-inverse: #FAFAFA;
  --landing-muted: #4A4D52;
  --landing-border: rgba(15, 15, 15, 0.14);
  --landing-cta-accent: #DC2626;
  --landing-cta-hover: #B91C1C;
  --landing-section-gap: clamp(80px, 12vw, 140px);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-landing-display: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  --font-landing-body: 'DM Sans', 'Inter', sans-serif;

  background-color: var(--landing-bg);
  color: var(--landing-text);
  font-family: var(--font-landing-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body.landing-page h1,
body.landing-page h2,
body.landing-page h3 {
  font-family: var(--font-landing-display);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
}

/* —— Nav —— */
.landing-navbar {
  background: rgba(228, 230, 223, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid var(--landing-border) !important;
  padding: 18px clamp(20px, 4vw, 48px) !important;
  position: sticky;
  top: 0;
  z-index: 300;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: box-shadow 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
}

.landing-navbar.is-scrolled {
  box-shadow: 0 8px 32px rgba(15, 15, 15, 0.06);
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.landing-logo {
  color: var(--landing-text) !important;
  font-family: var(--font-landing-display) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  letter-spacing: -0.04em;
}

.logo-reg {
  font-size: 0.65em;
  vertical-align: super;
}

.landing-nav-drawer {
  display: contents;
}

.landing-nav-center,
.landing-nav-right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  list-style: none;
}

.landing-nav-links li {
  display: flex;
  align-items: center;
}

.landing-nav-links a {
  color: var(--landing-text) !important;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-underline {
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
  text-decoration: none !important;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.35s var(--ease-out-expo), opacity 0.35s;
}

.nav-underline:hover,
.nav-underline.active {
  border-bottom-color: var(--landing-text) !important;
  color: var(--landing-text) !important;
}

body.landing-page .landing-nav-links a.active,
body.landing-page .landing-nav-links a.nav-underline.active {
  color: var(--landing-text) !important;
  border-bottom-color: var(--landing-text) !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--landing-text);
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-nav-signin {
  padding: 10px 20px !important;
  font-size: 0.8125rem !important;
  border-radius: 6px !important;
}

/* —— Buttons —— */
body.landing-page .btn-dark {
  background: var(--landing-text) !important;
  color: var(--landing-text-inverse) !important;
  border: 1.5px solid var(--landing-text) !important;
  font-weight: 600;
  border-radius: 6px !important;
  transition: transform 0.35s var(--ease-out-expo), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

body.landing-page .btn-dark:hover {
  background: var(--landing-cta-accent) !important;
  border-color: var(--landing-cta-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.25);
}

body.landing-page .btn-dark-large {
  padding: 15px 30px !important;
  background: var(--landing-text) !important;
  color: var(--landing-text-inverse) !important;
  border: 1.5px solid var(--landing-text) !important;
  font-size: 0.9375rem !important;
  font-weight: 600;
  border-radius: 6px !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.35s var(--ease-out-expo), background 0.35s, box-shadow 0.35s;
}

body.landing-page .btn-dark-large:hover {
  background: var(--landing-cta-accent) !important;
  border-color: var(--landing-cta-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(220, 38, 38, 0.22);
}

body.landing-page .btn-outline,
body.landing-page .btn-outline-large {
  background: transparent !important;
  color: var(--landing-text) !important;
  border: 1.5px solid rgba(15, 15, 15, 0.32) !important;
  font-weight: 600;
  border-radius: 6px !important;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.35s, background 0.35s;
}

body.landing-page .btn-outline-large {
  padding: 15px 30px !important;
  font-size: 0.9375rem !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

body.landing-page .btn-outline:hover,
body.landing-page .btn-outline-large:hover {
  border-color: var(--landing-text) !important;
  background: rgba(15, 15, 15, 0.04) !important;
  transform: translateY(-2px);
}

.btn-full { width: 100%; min-height: 48px; }

/* Buttons on dark backgrounds (CTA band, enterprise panel, etc.) */
body.landing-page .btn-light-on-dark {
  background: #ffffff !important;
  color: var(--landing-text) !important;
  border: 1.5px solid #ffffff !important;
  padding: 15px 30px !important;
  font-size: 0.9375rem !important;
  font-weight: 600;
  border-radius: 6px !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  transition: transform 0.35s var(--ease-out-expo), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

body.landing-page .btn-light-on-dark:hover {
  background: var(--landing-cta-accent) !important;
  border-color: var(--landing-cta-accent) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
}

body.landing-page .btn-outline-on-dark {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  padding: 15px 30px !important;
  font-size: 0.9375rem !important;
  font-weight: 600;
  border-radius: 6px !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  transition: transform 0.35s var(--ease-out-expo), background 0.35s, border-color 0.35s;
}

body.landing-page .btn-outline-on-dark:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.link-underline {
  color: var(--landing-text);
  text-decoration: none;
  border-bottom: 1.5px solid var(--landing-text);
  padding-bottom: 2px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 0.3s, border-color 0.3s;
}

.link-underline:hover { opacity: 0.7; color: var(--landing-text); }

.link-underline-light {
  color: #ffffff !important;
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

.link-underline-light:hover {
  opacity: 1;
  color: #ffffff !important;
  border-bottom-color: #ffffff;
}

.section-dark .link-underline-light {
  font-weight: 600;
}

/* —— Hero —— */
.landing-hero {
  position: relative;
  padding: clamp(48px, 8vw, 100px) 0 clamp(64px, 10vw, 120px) !important;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--landing-muted);
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: pulseDot 2s infinite;
}

.pulse-dot-sm { width: 6px; height: 6px; }

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
}

.hero-display {
  font-family: var(--font-landing-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-line { display: block; overflow: hidden; }

.hero-line-inner {
  display: block;
  transform: translateY(110%);
  animation: heroLineUp 1s var(--ease-out-expo) forwards;
  animation-delay: var(--line-delay, 0s);
}

@keyframes heroLineUp {
  to { transform: translateY(0); }
}

.hero-line-accent {
  color: var(--landing-text);
  font-weight: 700;
}

.hero-line-accent .hero-line-inner {
  background: linear-gradient(120deg, var(--landing-text) 0%, var(--landing-cta-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
  color: var(--landing-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--landing-border);
}

.hero-stat {
  min-width: 0;
}

.hero-stat-value {
  display: block;
  font-family: var(--font-landing-display);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-text);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--landing-muted);
  line-height: 1.35;
}

/* Product visual */
.hero-visual { perspective: 1200px; }

.product-card {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 32px 64px rgba(15, 15, 15, 0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s var(--ease-out-expo);
  animation: cardFloat 6s ease-in-out infinite;
}

.product-card:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-4px);
}

@keyframes cardFloat {
  0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-2deg) rotateX(1deg) translateY(-10px); }
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card-title { color: var(--landing-muted); }

.product-card-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #16A34A;
}

.phone-mock {
  background: #111;
  border-radius: 28px;
  padding: 12px;
  border: 3px solid #2a2a2a;
}

.phone-notch {
  width: 80px;
  height: 6px;
  background: #2a2a2a;
  border-radius: 99px;
  margin: 0 auto 10px;
}

.phone-screen {
  background: #ECE5DD;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #075E54;
  color: #fff;
}

.wa-header strong { display: block; font-size: 0.9375rem; }
.wa-header small { font-size: 0.6875rem; opacity: 0.85; }

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.wa-chat {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 8px 8px 8px 2px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #111;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.wa-bubble strong { font-weight: 700; letter-spacing: 0.08em; }

.wa-bubble-system {
  align-self: center;
  max-width: 100%;
  background: rgba(255,255,255,0.65);
  font-size: 0.6875rem;
  color: var(--landing-muted);
  text-align: center;
  border-radius: 8px;
}

.product-metrics {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.metric-pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 6px 10px;
  background: #F4F4F5;
  border-radius: 6px;
  color: var(--landing-text);
}

.metric-pill span { color: var(--landing-cta-accent); font-weight: 600; }

.metric-pill-success { color: #16A34A; background: #F0FDF4; }

.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  color: var(--landing-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.hero-scroll-cue:hover { color: var(--landing-text); }

.scroll-arrow { font-size: 1.25rem; }

.anim-bounce { animation: scrollBounce 2.5s ease-in-out infinite; }

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

/* Load animations */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUpIn 0.9s var(--ease-out-expo) forwards;
  animation-delay: var(--delay, 0s);
}

.anim-chat-in {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: chatIn 0.6s var(--ease-out-expo) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUpIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes chatIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* —— Marquee band —— */
.marquee-band {
  border-top: 1px solid var(--landing-border);
  overflow: hidden;
}

.marquee-viewport {
  overflow: hidden;
  padding: 28px 0;
  background: var(--landing-text);
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex-shrink: 0;
}

.marquee-track span {
  font-family: var(--font-landing-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--landing-text-inverse);
  white-space: nowrap;
}

.marquee-track span:nth-child(even) {
  opacity: 0.35;
  font-weight: 400;
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

.statement-wrap {
  padding: clamp(56px, 9vw, 96px) 0;
}

.statement-editorial {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.statement-tag {
  display: block;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.statement-headline {
  font-family: var(--font-landing-display);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 auto clamp(20px, 3vw, 28px);
  color: var(--landing-text);
}

.statement-headline-accent {
  display: inline-block;
  margin-top: 0.12em;
  color: var(--landing-cta-accent);
}

.statement-body {
  font-size: clamp(1rem, 1.9vw, 1.125rem);
  line-height: 1.75;
  color: var(--landing-muted);
  margin: 0 auto clamp(24px, 4vw, 32px);
}

.statement-meta {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--landing-muted);
  margin: 0 0 clamp(28px, 4vw, 36px);
}

.statement-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 3vw, 24px);
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
}

.statement-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  min-width: 0;
}

.statement-stat-value {
  font-family: var(--font-landing-display);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--landing-text);
  line-height: 1;
}

.statement-stat-label {
  font-size: clamp(0.625rem, 2.5vw, 0.75rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--landing-muted);
}

/* —— Sections —— */
.landing-section {
  padding: var(--landing-section-gap) 0;
  border-top: 1px solid var(--landing-border);
}

.section-header { margin-bottom: clamp(40px, 6vw, 56px); }

.section-tag {
  color: var(--landing-muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.section-tag-light { color: rgba(255, 255, 255, 0.55); }

.section-title {
  font-family: var(--font-landing-display);
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 14px;
  color: var(--landing-text);
}

.section-subtitle {
  color: var(--landing-muted);
  font-size: 1.0625rem;
  max-width: 560px;
  line-height: 1.6;
}

/* —— Verification Gateway — large numbers list —— */
.gateway-list {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  overflow: hidden;
}

.gateway-row {
  display: grid;
  grid-template-columns: clamp(56px, 12vw, 96px) 1px 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(22px, 4vw, 36px) clamp(18px, 4vw, 32px);
  border-bottom: 1px solid var(--landing-border);
  transition: background 0.4s var(--ease-out-expo);
}

.gateway-row:last-child {
  border-bottom: none;
}

.gateway-row:hover {
  background: rgba(228, 230, 223, 0.35);
}

.gateway-row-num {
  font-family: var(--font-landing-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--landing-accent-block);
  text-align: center;
  user-select: none;
}

.gateway-row-rule {
  width: 1px;
  align-self: stretch;
  min-height: 52px;
  background: var(--landing-border);
}

.gateway-row-content {
  min-width: 0;
  text-align: left;
}

.gateway-row-content h3 {
  font-family: var(--font-landing-display);
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--landing-text);
}

.gateway-row-content p {
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  line-height: 1.65;
  color: var(--landing-muted);
  margin: 0;
}

.gateway-row-icon {
  width: clamp(44px, 8vw, 52px);
  height: clamp(44px, 8vw, 52px);
  border-radius: 50%;
  background: var(--landing-surface);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 6px 20px rgba(15, 15, 15, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--landing-text);
  flex-shrink: 0;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s;
}

.gateway-row:hover .gateway-row-icon {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(15, 15, 15, 0.12);
}

/* —— Industry showcase —— */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out-expo), border-color 0.45s, box-shadow 0.45s;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--landing-cta-accent);
  transition: width 0.45s var(--ease-out-expo);
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--landing-text);
  box-shadow: 0 20px 48px rgba(15, 15, 15, 0.08);
}

.industry-card:hover::after { width: 100%; }

.industry-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.industry-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--landing-muted);
  letter-spacing: 0.06em;
}

.industry-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--landing-border);
  color: var(--landing-text);
}

.industry-name {
  font-family: var(--font-landing-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.25;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.industry-tags li {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--landing-border);
  color: var(--landing-muted);
  background: var(--landing-bg);
}

.industry-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--landing-muted);
  margin: 0;
  margin-top: auto;
}

/* —— Dark section —— */
.section-dark {
  background: var(--landing-bg-dark);
  color: var(--landing-text-inverse);
  border-top: none;
}

.dark-section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.dark-intro {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.72);
}

.mega-heading-wrap {
  overflow: hidden;
  margin-bottom: 40px;
}

.mega-heading {
  font-family: var(--font-landing-display);
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--landing-text-inverse);
  margin: 0;
}

/* —— Accordion —— */
.accordion-item { border-top: 1px solid var(--landing-border); }
.section-dark .accordion-item { border-top-color: rgba(255,255,255,0.12); }
.accordion-item:last-child { border-bottom: 1px solid var(--landing-border); }
.section-dark .accordion-item:last-child { border-bottom-color: rgba(255,255,255,0.12); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-landing-body);
  color: inherit;
  transition: opacity 0.3s;
}

.accordion-trigger:hover { opacity: 0.85; }

.accordion-dark .accordion-trigger { color: var(--landing-text-inverse); }
.accordion-light .accordion-trigger { color: var(--landing-text); }

.accordion-num { font-size: 0.875rem; font-weight: 600; opacity: 0.45; min-width: 28px; }

.accordion-label {
  flex: 1;
  font-family: var(--font-landing-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.4s var(--ease-out-expo);
}

.accordion-item.is-open .accordion-icon { transform: rotate(45deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out-expo), opacity 0.4s;
  opacity: 0;
}

.accordion-item.is-open .accordion-panel { opacity: 1; }

.accordion-panel ul { list-style: none; padding: 0 0 12px 44px; margin: 0; }

.accordion-panel li {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  padding: 5px 0;
}

.accordion-panel li::before { content: '→ '; opacity: 0.45; }

.accordion-light .accordion-panel p {
  padding: 0 0 22px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--landing-muted);
}

.accordion-dark .accordion-panel a {
  display: inline-block;
  margin: 4px 0 22px 44px;
}

/* —— How it works —— */
.landing-how-it-works { overflow: visible; }

.demo-block-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.how-intro {
  margin-top: 8px;
  margin-bottom: clamp(40px, 6vw, 56px);
  max-width: 640px;
}

.how-title {
  font-family: var(--font-landing-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--landing-text);
}

.how-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.6;
  color: var(--landing-muted);
  margin: 0;
}

.how-flow {
  position: relative;
  padding: clamp(16px, 3vw, 32px) 0 clamp(8px, 2vw, 16px);
}

.how-flow-track {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.how-flow.is-animating .how-flow-track {
  opacity: 1;
}

.how-flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.how-flow-segment {
  fill: none;
  stroke: rgba(15, 15, 15, 0.32);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.how-flow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 4vw, 32px);
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s var(--ease-out-expo),
    transform 0.55s var(--ease-out-expo);
}

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

.how-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--landing-surface);
  border: 1px solid rgba(15, 15, 15, 0.06);
  box-shadow: 0 8px 28px rgba(15, 15, 15, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--landing-text);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transform: scale(0.85);
  transition: transform 0.5s var(--ease-spring);
}

.how-step.is-visible .how-step-icon {
  transform: scale(1);
}

.how-step-num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--landing-muted);
  margin-bottom: 8px;
}

.how-step-label {
  font-family: var(--font-landing-display);
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 6px;
  color: var(--landing-text);
}

.how-step-detail {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--landing-muted);
  margin: 0;
}

.how-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(32px, 5vw, 48px);
  padding-top: 24px;
  border-top: 1px solid var(--landing-border);
  font-size: 0.8125rem;
  color: var(--landing-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.how-footer-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

/* —— Why JustAuth comparison —— */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-col {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--landing-border);
}

.compare-col--legacy {
  background: rgba(255, 255, 255, 0.35);
}

.compare-col--justauth {
  background: var(--landing-surface);
  border-color: var(--landing-text);
  border-width: 1.5px;
  position: relative;
}

.compare-col--justauth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--landing-cta-accent);
}

.compare-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--landing-muted);
  margin-bottom: 24px;
}

.compare-col--justauth .compare-label {
  color: var(--landing-cta-accent);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-item {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--landing-muted);
  padding-left: 22px;
  position: relative;
}

.compare-col--legacy .compare-item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(15, 15, 15, 0.35);
  font-weight: 600;
}

.compare-col--justauth .compare-item {
  color: var(--landing-text);
  font-weight: 500;
}

.compare-col--justauth .compare-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--landing-cta-accent);
  font-weight: 700;
}

.compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(32px, 5vw, 48px);
}

/* —— Benefits —— */
.benefit-rows { border-top: 1px solid var(--landing-border); }

.benefit-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--landing-border);
  transition: padding-left 0.4s var(--ease-out-expo);
}

.benefit-row:hover { padding-left: 8px; }

.benefit-row-num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--landing-muted);
}

.benefit-row-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-row-content p {
  font-size: 0.9375rem;
  color: var(--landing-muted);
  line-height: 1.6;
}

/* —— Wallet pricing —— */
.wallet-pricing-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.wallet-pricing-main {
  background: var(--landing-surface);
  border: 1.5px solid var(--landing-text);
  padding: clamp(28px, 4vw, 44px);
}

.wallet-pricing-label,
.wallet-enterprise-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--landing-cta-accent);
  margin-bottom: 16px;
}

.wallet-pricing-title,
.wallet-enterprise-title {
  font-family: var(--font-landing-display);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.wallet-pricing-lead,
.wallet-enterprise-lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--landing-muted);
  margin-bottom: 28px;
  max-width: 640px;
}

.wallet-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--landing-border);
  border-bottom: 1px solid var(--landing-border);
  margin-bottom: 28px;
}

.wallet-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--landing-border);
  align-items: start;
}

.wallet-step:last-child { border-bottom: none; }

.wallet-step-num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--landing-muted);
  padding-top: 2px;
}

.wallet-step strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--landing-text);
}

.wallet-step p {
  font-size: 0.8125rem;
  color: var(--landing-muted);
  line-height: 1.5;
  margin: 0;
}

.wallet-included { margin-bottom: 28px; }

.wallet-included-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--landing-text);
  margin-bottom: 16px;
}

.wallet-included-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  padding: 0;
  margin: 0;
}

.wallet-included-list li {
  font-size: 0.875rem;
  color: var(--landing-muted);
  padding-left: 0;
}

.wallet-included-list li::before {
  content: '✓ ';
  color: var(--landing-cta-accent);
  font-weight: 700;
}

.wallet-cta { width: 100%; max-width: 360px; }

.wallet-pricing-enterprise {
  background: var(--landing-bg-dark);
  color: var(--landing-text-inverse);
  padding: clamp(28px, 4vw, 36px);
  border: 1px solid var(--landing-bg-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wallet-enterprise-label { color: rgba(255, 255, 255, 0.5); }

.wallet-enterprise-lead { color: rgba(255, 255, 255, 0.65); }

.wallet-enterprise-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.wallet-enterprise-list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-enterprise-list li::before {
  content: '→ ';
  opacity: 0.5;
}

.wallet-pricing-enterprise .btn-light-on-dark {
  margin-top: auto;
}

/* —— Pricing cards (legacy — unused) —— */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(15, 15, 15, 0.1);
}

.pricing-card-featured {
  border: 2px solid var(--landing-text);
  background: var(--landing-text);
  color: var(--landing-text-inverse);
}

.pricing-card-featured .pricing-desc,
.pricing-card-featured .pricing-period,
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.65); }

.pricing-card-featured .pricing-features li { border-bottom-color: rgba(255,255,255,0.12); }

.pricing-card-featured h3,
.pricing-card-featured .pricing-amount { color: #fff; }

.pricing-card-featured .btn-dark-large {
  background: #fff !important;
  color: var(--landing-text) !important;
  border-color: #fff !important;
}

.pricing-card-featured .btn-dark-large:hover {
  background: var(--landing-cta-accent) !important;
  border-color: var(--landing-cta-accent) !important;
  color: #fff !important;
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 28px;
  background: var(--landing-cta-accent);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.pricing-badge-value { background: var(--landing-muted); }

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: var(--font-landing-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.pricing-currency { font-size: 1.5rem; }
.pricing-period { font-size: 0.875rem; font-weight: 500; color: var(--landing-muted); }
.pricing-desc { font-size: 0.875rem; color: var(--landing-muted); margin-bottom: 24px; }

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

.pricing-features li {
  font-size: 0.8125rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--landing-border);
  color: var(--landing-muted);
}

.pricing-features li::before { content: '✓ '; color: var(--landing-cta-accent); font-weight: 700; }

/* —— CTA band —— */
.landing-cta-band {
  border-top: none;
  background: var(--landing-text);
  color: var(--landing-text-inverse);
}

.cta-band-inner { text-align: center; max-width: 640px; margin: 0 auto; }

.cta-band-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #fff;
}

.cta-band-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.landing-cta-band .btn-light-on-dark,
.landing-cta-band .btn-outline-on-dark {
  min-width: 200px;
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity 1s var(--ease-out-expo),
    transform 1s var(--ease-out-expo),
    filter 1s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* —— Footer —— */
.landing-footer {
  background: var(--landing-bg) !important;
  border-top: 1px solid var(--landing-border) !important;
  padding: 36px 0 !important;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--landing-muted) !important;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   AUTH PAGE — login & register (landing theme)
   ========================================================================== */
body.auth-page {
  background-color: var(--landing-bg);
  --auth-muted: #3A3D42;
  --auth-muted-soft: #5C6068;
}

body.auth-page .section-tag {
  color: var(--auth-muted-soft);
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
  min-height: calc(100vh - 72px);
  align-items: stretch;
}

.auth-brand {
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
  border-right: 1px solid var(--landing-border);
  display: flex;
  align-items: center;
}

.auth-brand-inner {
  max-width: 520px;
  width: 100%;
}

.auth-brand-title {
  font-family: var(--font-landing-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--landing-text);
  margin-bottom: 16px;
}

.auth-brand-accent {
  color: var(--landing-cta-accent);
}

.auth-brand-lead {
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--auth-muted);
  margin-bottom: clamp(28px, 4vw, 40px);
  max-width: 460px;
}

.auth-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(32px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-benefits li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.auth-benefit-icon {
  font-family: var(--font-landing-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: rgba(15, 15, 15, 0.28);
  padding-top: 2px;
}

.auth-benefits strong {
  display: block;
  font-family: var(--font-landing-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--landing-text);
  margin-bottom: 4px;
}

.auth-benefits span {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--auth-muted);
}

.auth-brand-visual {
  max-width: 320px;
}

.auth-product-card {
  animation: cardFloat 6s ease-in-out infinite;
}

.auth-product-card .phone-screen {
  min-height: 240px;
}

.wa-bubble-out {
  align-self: flex-end;
  border-radius: 8px 8px 2px 8px;
  background: #DCF8C6;
}

.auth-forms {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 48px);
  background: var(--landing-surface);
}

.auth-forms-inner {
  width: 100%;
  max-width: 420px;
  position: relative;
  display: grid;
}

.auth-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  grid-area: 1 / 1;
}

.auth-panel {
  visibility: hidden;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease-out-expo),
    transform 0.35s var(--ease-out-expo),
    visibility 0.35s;
}

.auth-panel.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.auth-panel.is-leaving {
  visibility: visible;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.auth-panel.is-entering {
  visibility: visible;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.auth-card-head {
  margin-bottom: 28px;
}

.auth-card-head h2 {
  font-family: var(--font-landing-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--landing-text);
  margin-bottom: 8px;
}

.auth-card-head p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--auth-muted);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  margin-bottom: 24px;
}

.auth-tab {
  appearance: none;
  border: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: var(--font-landing-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--auth-muted-soft);
  cursor: pointer;
  transition: background 0.3s var(--ease-out-expo), color 0.3s, box-shadow 0.3s;
}

.auth-tab:hover {
  color: var(--landing-text);
}

.auth-tab.active {
  background: var(--landing-surface);
  color: var(--landing-text);
  box-shadow: 0 2px 8px rgba(15, 15, 15, 0.06);
}

.auth-social-btn {
  width: 100%;
  padding: 12px 16px;
  background: var(--landing-surface);
  border: 1px solid rgba(15, 15, 15, 0.16);
  border-radius: 8px;
  color: var(--landing-text);
  font-family: var(--font-landing-body);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.35s, box-shadow 0.35s;
  margin-bottom: 4px;
}

.auth-social-btn:hover {
  border-color: var(--landing-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 15, 15, 0.08);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
  color: var(--auth-muted-soft);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--landing-border);
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.auth-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--auth-muted);
}

.auth-input {
  width: 100%;
  background: var(--landing-bg);
  border: 1px solid rgba(15, 15, 15, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-landing-body);
  font-size: 0.9375rem;
  color: var(--landing-text);
  transition: border-color 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.auth-input::placeholder {
  color: #8A8F96;
  opacity: 1;
}

.auth-input:focus {
  outline: none;
  border-color: var(--landing-text);
  box-shadow: 0 0 0 3px rgba(15, 15, 15, 0.06);
  background: #ffffff;
}

.auth-field-hint {
  font-size: 0.75rem;
  color: var(--auth-muted-soft);
  line-height: 1.4;
}

.auth-submit {
  margin-top: 6px;
  min-height: 48px;
}

.auth-switch {
  text-align: center;
  font-size: 0.875rem;
  color: var(--auth-muted);
  margin-top: 24px;
}

.auth-switch-link {
  color: var(--landing-text) !important;
  font-weight: 700;
  border-bottom: 1.5px solid var(--landing-text);
  padding-bottom: 1px;
  text-decoration: none !important;
  transition: opacity 0.3s;
}

.auth-switch-link:hover {
  opacity: 0.65;
  color: var(--landing-text) !important;
}

body.auth-page .toast {
  background: rgba(255, 255, 255, 0.96);
  color: var(--landing-text);
  border: 1px solid var(--landing-border);
  border-left: 4px solid var(--landing-cta-accent);
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.12);
}

body.auth-page #dashboard-logout {
  color: var(--landing-cta-accent) !important;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .auth-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auth-brand {
    border-right: none;
    border-bottom: 1px solid var(--landing-border);
    padding-bottom: clamp(32px, 6vw, 48px);
  }

  .auth-brand-visual {
    max-width: 280px;
  }

  .auth-forms {
    padding-top: clamp(28px, 5vw, 40px);
    padding-bottom: clamp(48px, 8vw, 72px);
  }
}

@media (max-width: 640px) {
  .auth-benefits li {
    grid-template-columns: 36px 1fr;
  }

  .auth-brand-visual {
    display: none;
  }
}

/* ==========================================================================
   DASHBOARD & ADMIN — landing theme
   ========================================================================== */
body.dash-page,
body.admin-page {
  background-color: var(--landing-bg);
  --dash-muted: #3A3D42;
  --dash-muted-soft: #5C6068;
}

body.dash-page .section-tag,
body.admin-page .section-tag {
  color: var(--dash-muted-soft);
}

.dash-signout {
  color: var(--landing-cta-accent) !important;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none !important;
}

.dash-shell {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 48px) clamp(48px, 6vw, 72px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.dash-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-sidebar-card {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 22px 20px;
}

.dash-sidebar-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dash-muted-soft);
  margin-bottom: 8px;
}

.dash-sidebar-name {
  font-family: var(--font-landing-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-text);
  margin-bottom: 4px;
  line-height: 1.3;
  word-break: break-word;
}

.dash-sidebar-email {
  font-size: 0.8125rem;
  color: var(--dash-muted);
  word-break: break-all;
}

.dash-sidebar-nav {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 8px;
}

body.dash-page .sidebar-menu,
body.admin-page .sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}

body.dash-page .sidebar-item,
body.admin-page .sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--dash-muted);
  font-weight: 550;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.35s var(--ease-out-expo), color 0.35s;
}

body.dash-page .sidebar-item:hover,
body.admin-page .sidebar-item:hover {
  background: rgba(228, 230, 223, 0.65);
  color: var(--landing-text);
}

body.dash-page .sidebar-item.active,
body.admin-page .sidebar-item.active {
  background: var(--landing-text);
  color: #ffffff;
}

.dash-nav-num {
  font-family: var(--font-landing-display);
  font-size: 0.6875rem;
  font-weight: 800;
  opacity: 0.45;
  min-width: 18px;
}

body.dash-page .sidebar-item.active .dash-nav-num,
body.admin-page .sidebar-item.active .dash-nav-num {
  opacity: 0.7;
  color: #ffffff;
}

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

.dash-panel-head {
  margin-bottom: clamp(24px, 4vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.dash-panel-title {
  font-family: var(--font-landing-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--landing-text);
  margin-top: 8px;
}

body.dash-page .stats-grid,
body.admin-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.dash-stat-card {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.dash-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 15, 15, 0.06);
}

body.dash-page .stat-label,
body.admin-page .stat-label {
  color: var(--dash-muted-soft);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.dash-page .stat-value,
body.admin-page .stat-value {
  font-family: var(--font-landing-display);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-text);
}

.dash-stat-success { color: #16A34A !important; }
.dash-stat-danger { color: var(--landing-cta-accent) !important; }
.dash-stat-accent { color: var(--dash-muted) !important; }

.dash-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.dash-banner strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.dash-banner p {
  margin: 0;
  opacity: 0.9;
}

.dash-banner-warn {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #92400E;
}

.dash-banner-danger {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #991B1B;
}

.dash-banner-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.6);
}

.dash-card {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: clamp(22px, 3vw, 28px);
  margin-bottom: 24px;
}

.dash-card h3 {
  font-family: var(--font-landing-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--landing-text);
  margin-bottom: 8px;
}

.dash-card-desc {
  font-size: 0.875rem;
  color: var(--dash-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}

.dash-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dash-card-head h3 {
  margin-bottom: 0;
}

.dash-btn-sm {
  padding: 8px 14px !important;
  font-size: 0.8125rem !important;
  min-height: auto !important;
}

body.dash-page .logs-table-container,
body.admin-page .logs-table-container {
  overflow-x: auto;
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  background: #ffffff;
  margin-top: 0;
}

body.dash-page .logs-table,
body.admin-page .logs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

body.dash-page .logs-table th,
body.admin-page .logs-table th {
  background: rgba(228, 230, 223, 0.55);
  padding: 12px 16px;
  color: var(--dash-muted);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--landing-border);
}

body.dash-page .logs-table td,
body.admin-page .logs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--landing-border);
  color: var(--landing-text);
}

body.dash-page .logs-table tr:hover,
body.admin-page .logs-table tr:hover {
  background: rgba(228, 230, 223, 0.35);
}

body.dash-page .logs-table td code,
body.admin-page .logs-table td code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(228, 230, 223, 0.65);
  border: 1px solid rgba(15, 15, 15, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--landing-text);
}

.dash-table-empty {
  text-align: center;
  color: var(--dash-muted-soft) !important;
  padding: 40px 16px !important;
}

.dash-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.dash-pagination span {
  font-size: 0.8125rem;
  color: var(--dash-muted);
}

.dash-pagination-actions {
  display: flex;
  gap: 8px;
}

body.dash-page .status-badge,
body.admin-page .status-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.dash-page .badge-active,
body.admin-page .badge-active {
  background: rgba(22, 163, 74, 0.1);
  color: #15803D;
  border: 1px solid rgba(22, 163, 74, 0.22);
}

body.dash-page .badge-expired,
body.admin-page .badge-expired,
body.dash-page .badge-suspended,
body.admin-page .badge-suspended {
  background: rgba(220, 38, 38, 0.08);
  color: var(--landing-cta-accent);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

body.dash-page .badge-verified,
body.admin-page .badge-verified {
  background: rgba(15, 15, 15, 0.06);
  color: var(--landing-text);
  border: 1px solid rgba(15, 15, 15, 0.12);
}

body.dash-page .badge-inactive,
body.admin-page .badge-inactive {
  background: rgba(228, 230, 223, 0.8);
  color: var(--dash-muted);
  border: 1px solid var(--landing-border);
}

.dash-creds-card {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-left: 3px solid var(--landing-cta-accent);
  border-radius: 12px;
  padding: clamp(22px, 3vw, 28px);
  margin-bottom: 24px;
}

.dash-creds-card h3 {
  font-family: var(--font-landing-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--landing-text);
  margin-bottom: 8px;
}

.dash-creds-card > p {
  font-size: 0.875rem;
  color: var(--dash-muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

.dash-creds-locked {
  text-align: center;
  padding: 28px 20px;
  background: var(--landing-bg);
  border: 1px dashed var(--landing-border);
  border-radius: 10px;
}

.dash-creds-lock-icon {
  color: var(--dash-muted-soft);
  margin-bottom: 12px;
}

.dash-creds-locked strong {
  display: block;
  font-family: var(--font-landing-display);
  color: var(--landing-text);
  margin-bottom: 6px;
}

.dash-creds-locked span {
  display: block;
  font-size: 0.8125rem;
  color: var(--dash-muted);
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.55;
}

.dash-creds-unlock-btn {
  display: block;
  margin: 20px auto 0;
  width: fit-content;
  min-width: 160px;
}

body.dash-page .cred-row,
body.admin-page .cred-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  padding: 12px 14px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--landing-text);
  word-break: break-all;
}

body.dash-page .cred-copy-btn,
body.admin-page .cred-copy-btn {
  background: transparent;
  border: none;
  color: var(--landing-text);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.dash-page .cred-copy-btn:hover,
body.admin-page .cred-copy-btn:hover {
  color: var(--landing-cta-accent);
}

.dash-wallet-balance {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  background: var(--landing-text);
  color: #ffffff;
  border-radius: 12px;
  padding: clamp(24px, 4vw, 32px);
  margin-bottom: 24px;
}

.dash-wallet-balance-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.dash-wallet-balance-amount {
  font-family: var(--font-landing-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 10px;
  color: #ffffff;
}

.dash-wallet-balance-meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.dash-wallet-balance-aside {
  max-width: 260px;
}

.dash-wallet-balance-note {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.dash-rotate-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--landing-border);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dash-rotate-copy strong {
  display: block;
  font-family: var(--font-landing-display);
  font-size: 0.9375rem;
  color: var(--landing-text);
  margin-bottom: 6px;
}

.dash-rotate-copy p {
  font-size: 0.8125rem;
  color: var(--dash-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 420px;
}

.dash-rotate-hint {
  margin-top: 10px !important;
  font-size: 0.75rem !important;
  color: var(--dash-muted-soft) !important;
}

.dash-packages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.dash-package {
  position: relative;
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.35s, box-shadow 0.35s;
}

.dash-package:hover {
  transform: translateY(-4px);
  border-color: var(--landing-text);
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.08);
}

.dash-package-featured {
  border-color: var(--landing-text);
  background: var(--landing-surface);
}

.dash-package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--landing-text);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}

.dash-package h4 {
  font-family: var(--font-landing-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--landing-text);
  margin-bottom: 12px;
}

.dash-package-price {
  font-family: var(--font-landing-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--landing-text);
  margin-bottom: 8px;
}

.dash-package-credit {
  font-size: 0.8125rem;
  color: var(--dash-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.dash-package-credit em {
  font-style: normal;
  color: #16A34A;
  font-weight: 600;
}

.dash-textarea {
  resize: vertical;
  min-height: 100px;
}

body.dash-page .auth-field-hint code,
body.admin-page .auth-field-hint code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(228, 230, 223, 0.65);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--landing-text);
}

/* Modal */
body.dash-page .modal-overlay,
body.admin-page .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.dash-modal {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 32px 64px rgba(15, 15, 15, 0.18);
}

.dash-modal.modal-lg,
body.admin-page .modal.modal-lg {
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
}

body.admin-page .modal {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  padding: clamp(24px, 4vw, 32px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 64px rgba(15, 15, 15, 0.18);
}

.dash-modal-head {
  text-align: center;
  margin-bottom: 20px;
}

.dash-modal-head h3 {
  font-family: var(--font-landing-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--landing-text);
  margin: 8px 0 4px;
}

.dash-modal-head p {
  font-size: 0.8125rem;
  color: var(--dash-muted);
}

body.dash-page .upi-badge,
body.admin-page .upi-badge {
  display: inline-flex;
  background: #5f259f;
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

.dash-modal-amount {
  text-align: center;
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 20px;
}

.dash-modal-amount span {
  display: block;
  font-size: 0.75rem;
  color: var(--dash-muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 6px;
}

.dash-modal-amount strong {
  display: block;
  font-family: var(--font-landing-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #16A34A;
  margin-bottom: 4px;
}

.dash-modal-amount small {
  font-size: 0.75rem;
  color: var(--landing-cta-accent);
  font-weight: 600;
}

body.dash-page .qr-mock,
body.admin-page .qr-mock {
  width: 180px;
  height: 180px;
  background: white;
  margin: 0 auto 16px;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--landing-border);
}

.dash-modal-note {
  font-size: 0.8125rem;
  color: var(--dash-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

.dash-modal-actions {
  display: flex;
  gap: 10px;
}

.dash-modal-actions .btn {
  flex: 1;
  min-height: 46px;
}

.dash-modal-actions .btn-dark {
  flex: 1.5;
}

body.dash-page .toast,
body.admin-page .toast {
  background: rgba(255, 255, 255, 0.96);
  color: var(--landing-text);
  border: 1px solid var(--landing-border);
  border-left: 4px solid var(--landing-cta-accent);
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.12);
}

body.dash-page .btn-primary,
body.admin-page .btn-primary {
  background: var(--landing-text) !important;
  color: #ffffff !important;
  border: 1.5px solid var(--landing-text) !important;
  border-radius: 6px !important;
  font-weight: 600;
}

body.dash-page .btn-primary:hover,
body.admin-page .btn-primary:hover {
  background: var(--landing-cta-accent) !important;
  border-color: var(--landing-cta-accent) !important;
}

body.dash-page .btn-secondary,
body.admin-page .btn-secondary {
  background: transparent !important;
  color: var(--landing-text) !important;
  border: 1.5px solid rgba(15, 15, 15, 0.2) !important;
  border-radius: 6px !important;
  font-weight: 600;
}

body.dash-page .btn-secondary:hover,
body.admin-page .btn-secondary:hover {
  border-color: var(--landing-text) !important;
  background: rgba(15, 15, 15, 0.04) !important;
}

body.dash-page .form-input,
body.admin-page .form-input {
  background: var(--landing-bg);
  border: 1px solid rgba(15, 15, 15, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--landing-text);
  font-family: var(--font-landing-body);
  font-size: 0.9375rem;
}

body.dash-page .form-input:focus,
body.admin-page .form-input:focus {
  outline: none;
  border-color: var(--landing-text);
  box-shadow: 0 0 0 3px rgba(15, 15, 15, 0.06);
  background: #ffffff;
}

body.dash-page .form-group label,
body.admin-page .form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dash-muted);
}

body.admin-page .admin-tab-content {
  display: none;
}

body.admin-page .admin-tab-content.active {
  display: block;
}

body.admin-page .action-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.admin-page .dash-admin-head {
  margin-bottom: 8px;
}

body.admin-page .dash-admin-head h1 {
  font-family: var(--font-landing-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--landing-text);
  margin-top: 8px;
}

.dash-admin-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dash-muted-soft);
  vertical-align: middle;
  margin-left: 6px;
}

.dash-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.admin-page .stats-grid-secondary {
  margin-top: -8px;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

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

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

.admin-overview-item-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.admin-overview-item-main strong {
  font-family: var(--font-landing-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--landing-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-overview-item-main span {
  font-size: 0.75rem;
  color: var(--dash-muted-soft);
}

.admin-overview-item-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.admin-overview-item-meta time {
  font-size: 0.6875rem;
  color: var(--dash-muted-soft);
  white-space: nowrap;
}

.admin-overview-wallet {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16A34A;
}

.admin-overview-empty {
  font-size: 0.8125rem;
  color: var(--dash-muted-soft);
  padding: 8px 0;
}

.admin-overview-item-warn .admin-overview-item-main span {
  color: #92400E;
}

.admin-overview-alert-card {
  border-left: 3px solid rgba(245, 158, 11, 0.6);
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--landing-border);
}

.admin-toolbar-search {
  flex: 1 1 220px;
  min-width: 0;
}

.admin-toolbar-select {
  flex: 0 1 auto;
  min-width: 160px;
  padding: 10px 12px;
  font-size: 0.8125rem;
}

.admin-filter-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dash-muted-soft);
  margin-left: auto;
  white-space: nowrap;
}

.admin-companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.admin-companies-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--dash-muted-soft);
  padding: 48px 16px;
  font-size: 0.875rem;
}

.admin-companies-error {
  color: var(--landing-cta-accent) !important;
}

.admin-company-card {
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.admin-company-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 15, 15, 0.06);
}

.admin-company-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.admin-company-card-head h4 {
  font-family: var(--font-landing-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--landing-text);
  margin: 0 0 4px;
  line-height: 1.3;
}

.admin-company-email {
  font-size: 0.75rem;
  color: var(--dash-muted-soft);
  margin: 0;
  word-break: break-all;
}

.admin-company-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin: 0;
}

.admin-company-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-company-meta dt {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dash-muted-soft);
}

.admin-company-meta dd {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--landing-text);
}

.admin-company-meta dd code {
  font-size: 0.6875rem;
  word-break: break-all;
}

.admin-company-wallet {
  color: #16A34A !important;
}

.admin-company-otp-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dash-muted-soft);
  background: rgba(15, 15, 15, 0.05);
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 4px;
  vertical-align: middle;
}

.admin-company-actions {
  margin-top: auto;
  padding-top: 4px;
}

.admin-settings-card {
  max-width: 520px;
}

.admin-settings-form {
  margin-top: 8px;
}

.admin-settings-form .auth-field-hint {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--dash-muted-soft);
  line-height: 1.5;
}

.admin-settings-form .btn {
  margin-top: 8px;
}

.admin-wallet-packages-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-wallet-package-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 16px;
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 10px;
}

.admin-wallet-package-main {
  flex: 1 1 220px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-wallet-package-main strong {
  font-family: var(--font-landing-display);
  font-size: 0.9375rem;
  color: var(--landing-text);
}

.admin-wallet-package-main > span {
  font-size: 0.8125rem;
  color: var(--dash-muted);
}

.admin-wallet-package-badge-label {
  font-size: 0.75rem;
  color: var(--dash-muted-soft);
}

.admin-wallet-package-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.admin-wallet-package-sort {
  font-size: 0.6875rem;
  color: var(--dash-muted-soft);
}

.admin-settings-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--landing-text);
  cursor: pointer;
}

.admin-self-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dash-muted-soft);
}

.dash-packages-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--dash-muted-soft);
  padding: 32px 16px;
  font-size: 0.875rem;
  margin: 0;
}

/* User notifications */
.dash-nav-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dash-notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--landing-cta-accent);
  box-shadow: 0 0 0 2px var(--landing-surface);
  flex-shrink: 0;
}

.dash-notifications-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dash-notifications-empty {
  text-align: center;
  color: var(--dash-muted-soft);
  padding: 40px 16px;
  font-size: 0.875rem;
  margin: 0;
}

.dash-notification-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--landing-border);
  cursor: pointer;
  transition: background 0.2s;
}

.dash-notification-item:last-child {
  border-bottom: none;
}

.dash-notification-item.is-unread {
  background: rgba(220, 38, 38, 0.04);
  margin: 0 -16px;
  padding: 16px;
  border-radius: 8px;
  border-bottom: none;
}

.dash-notification-item.is-unread + .dash-notification-item {
  border-top: 1px solid var(--landing-border);
}

.dash-notification-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  position: relative;
}

.dash-notification-icon::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--dash-muted-soft);
}

.dash-notification-icon-welcome,
.dash-notification-icon-active,
.dash-notification-icon-deposit,
.dash-notification-icon-credentials {
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.2);
}

.dash-notification-icon-welcome::after,
.dash-notification-icon-active::after,
.dash-notification-icon-deposit::after,
.dash-notification-icon-credentials::after {
  background: #16A34A;
}

.dash-notification-icon-suspended,
.dash-notification-icon-low_balance {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
}

.dash-notification-icon-suspended::after,
.dash-notification-icon-low_balance::after {
  background: var(--landing-cta-accent);
}

.dash-notification-icon-admin {
  background: rgba(15, 15, 15, 0.06);
  border-color: rgba(15, 15, 15, 0.12);
}

.dash-notification-icon-security {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

.dash-notification-icon-security::after {
  background: #D97706;
}

.dash-notification-icon-otp_price_increase {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
}

.dash-notification-icon-otp_price_increase::after {
  background: var(--landing-cta-accent);
}

.dash-notification-icon-otp_price_decrease {
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.2);
}

.dash-notification-icon-otp_price_decrease::after {
  background: #16A34A;
}

.dash-notification-body {
  flex: 1;
  min-width: 0;
}

.dash-notification-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.dash-notification-head strong {
  font-family: var(--font-landing-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--landing-text);
}

.dash-notification-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dash-muted-soft);
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 4px;
  padding: 2px 6px;
}

.dash-notification-body p {
  font-size: 0.8125rem;
  color: var(--dash-muted);
  line-height: 1.55;
  margin: 0 0 6px;
}

.dash-notification-body time {
  font-size: 0.6875rem;
  color: var(--dash-muted-soft);
}

.dash-inspect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.dash-inspect-block {
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 10px;
  padding: 16px;
}

.dash-inspect-block h4 {
  font-family: var(--font-landing-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--landing-text);
  margin-bottom: 12px;
}

.dash-inspect-block p {
  font-size: 0.8125rem;
  color: var(--dash-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.dash-inspect-section-title {
  font-family: var(--font-landing-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--landing-text);
  margin-bottom: 12px;
}

.dash-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--dash-muted-soft);
  cursor: pointer;
  padding: 4px 8px;
}

.dash-modal-close:hover {
  color: var(--landing-text);
}

body.admin-page .dash-btn-danger:not(.btn-primary) {
  color: var(--landing-cta-accent) !important;
  border-color: rgba(220, 38, 38, 0.35) !important;
}

@media (max-width: 1100px) {
  body.dash-page .stats-grid,
  body.admin-page .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-overview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-overview-alert-card {
    grid-column: 1 / -1;
  }

  .dash-packages {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .dash-shell {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
  }

  .dash-sidebar {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  body.dash-page .sidebar-menu,
  body.admin-page .sidebar-menu {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 6px;
  }

  body.dash-page .sidebar-item,
  body.admin-page .sidebar-item {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
  }

  .dash-nav-num {
    display: inline-flex;
    min-width: 22px;
  }
}

@media (max-width: 640px) {
  .dash-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .dash-sidebar-card {
    padding: 16px 18px;
  }

  .dash-sidebar-name {
    font-size: 1rem;
  }

  .dash-sidebar-nav {
    padding: 6px;
  }

  body.dash-page .sidebar-item,
  body.admin-page .sidebar-item {
    font-size: 0.9375rem;
    padding: 13px 14px;
  }

  .dash-wallet-balance {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .dash-wallet-balance-aside {
    max-width: none;
  }

  body.dash-page .stats-grid,
  body.admin-page .stats-grid {
    grid-template-columns: 1fr;
  }

  .admin-overview-grid {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-filter-count {
    margin-left: 0;
  }

  .admin-companies-grid {
    grid-template-columns: 1fr;
  }

  .dash-inspect-grid {
    grid-template-columns: 1fr;
  }

  .dash-pagination {
    flex-direction: column;
    align-items: flex-start;
  }

  .dash-modal-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   DOCS PAGE — landing theme + sandbox
   ========================================================================== */
body.docs-page {
  background-color: var(--landing-bg);
  --docs-muted: #3A3D42;
  --docs-muted-soft: #5C6068;
}

body.docs-page .section-tag {
  color: var(--docs-muted-soft);
}

body.docs-page .section-subtitle {
  color: var(--docs-muted);
}

body.docs-page .section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

body.docs-page .section-dark .section-title {
  color: var(--landing-text-inverse);
}

body.docs-page .gateway-row-num {
  color: rgba(15, 15, 15, 0.22);
}

body.docs-page .gateway-row-content p {
  color: var(--docs-muted);
}

.docs-hero {
  padding: clamp(48px, 8vw, 88px) 0 clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--landing-border);
}

.docs-hero-inner {
  max-width: 720px;
}

.docs-hero-title {
  font-family: var(--font-landing-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--landing-text);
}

.docs-hero-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--docs-muted);
  margin-bottom: 28px;
  max-width: 560px;
}

.docs-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.docs-jump-link {
  color: var(--landing-text) !important;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--landing-text);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.docs-jump-link:hover {
  opacity: 0.65;
  color: var(--landing-text) !important;
}

.docs-sandbox-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(20px, 4vw, 32px);
  align-items: stretch;
}

.docs-sandbox-form {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 32px);
}

.docs-sandbox-form-head {
  margin-bottom: 24px;
}

.docs-sandbox-form-head h3 {
  font-family: var(--font-landing-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-text);
}

.docs-sandbox-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--docs-muted);
  background: #ffffff;
  border: 1px solid var(--landing-border);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.docs-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.docs-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--docs-muted);
}

.docs-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(15, 15, 15, 0.2);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--font-landing-body);
  font-size: 0.9375rem;
  color: var(--landing-text);
  transition: border-color 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.docs-input::placeholder {
  color: #8A8F96;
  opacity: 1;
}

.docs-input:focus {
  outline: none;
  border-color: var(--landing-text);
  box-shadow: 0 0 0 3px rgba(15, 15, 15, 0.06);
}

.docs-field-hint {
  font-size: 0.75rem;
  color: var(--docs-muted-soft);
}

.docs-action-btn {
  min-height: 46px;
}

.docs-sandbox-divider {
  height: 1px;
  background: var(--landing-border);
  margin: 24px 0;
}

.docs-console {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  font-family: var(--font-mono);
}

.docs-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.docs-console-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.docs-console-body {
  flex: 1;
  padding: 20px;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(167, 243, 208, 0.95);
  overflow: auto;
}

.docs-endpoint {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 32px);
  margin-bottom: 24px;
  min-width: 0;
}

.docs-endpoint:last-child {
  margin-bottom: 0;
}

.docs-endpoint-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.docs-method {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}

.docs-method-post {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.22);
  color: var(--landing-cta-accent);
}

.docs-endpoint-path {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--landing-text);
  background: none;
  padding: 0;
}

.docs-endpoint-desc {
  color: var(--docs-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.docs-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  border: 1px solid var(--landing-border);
  border-radius: 8px;
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.docs-table th,
.docs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--landing-border);
}

.docs-table tr:last-child td {
  border-bottom: none;
}

.docs-table th {
  background: rgba(228, 230, 223, 0.55);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--docs-muted);
}

.docs-table td {
  color: var(--landing-text);
}

.docs-table td code {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  background: rgba(228, 230, 223, 0.65);
  border: 1px solid rgba(15, 15, 15, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--landing-text);
}

.docs-response-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--docs-muted);
  margin-bottom: 12px;
}

body.docs-page .docs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.14);
  margin-bottom: 0;
}

body.docs-page .docs-tabs-dark {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

body.docs-page .docs-tab {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 14px;
  margin-bottom: -1px;
  font-family: var(--font-landing-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--docs-muted-soft);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

body.docs-page .docs-tab:hover {
  color: var(--landing-text);
}

body.docs-page .docs-tab.active {
  color: var(--landing-text);
  border-bottom-color: var(--landing-text);
}

body.docs-page .docs-tabs-dark .docs-tab {
  color: rgba(255, 255, 255, 0.55);
}

body.docs-page .docs-tabs-dark .docs-tab:hover,
body.docs-page .docs-tabs-dark .docs-tab.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

body.docs-page pre.docs-code-block {
  background: #ffffff !important;
  border: 1px solid rgba(15, 15, 15, 0.14);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 20px;
  margin: 0;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--landing-text);
}

body.docs-page pre.docs-code-block code {
  font-family: inherit;
  font-size: inherit;
  color: inherit !important;
  background: none;
  border: none;
  padding: 0;
  display: block;
  white-space: pre;
}

body.docs-page .docs-response-block {
  min-width: 0;
}

body.docs-page pre.docs-code-block-dark {
  background: rgba(0, 0, 0, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
}

body.docs-page pre.docs-code-block-dark code {
  color: inherit !important;
}

.docs-code-section .docs-tabs {
  margin-bottom: 0;
}

.docs-snippet {
  margin-top: 0;
}

.docs-snippet .docs-code-block-dark {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
}

.docs-cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(40px, 6vw, 56px);
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.docs-cta-inline p {
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

body.docs-page .toast {
  background: rgba(255, 255, 255, 0.96);
  color: var(--landing-text);
  border: 1px solid var(--landing-border);
  border-left: 4px solid var(--landing-cta-accent);
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.12);
}

@media (max-width: 900px) {
  .docs-sandbox-grid {
    grid-template-columns: 1fr;
  }

  .docs-console {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .docs-jump-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .docs-endpoint {
    padding: 20px 16px;
  }

  /* Response tabs — vertical pill selector on phone */
  body.docs-page .docs-tabs:not(.docs-tabs-dark) {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
    border-bottom: none;
    overflow: visible;
  }

  body.docs-page .docs-tabs:not(.docs-tabs-dark) .docs-tab {
    width: 100%;
    text-align: left;
    white-space: normal;
    border: 1px solid rgba(15, 15, 15, 0.14);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 0;
    font-size: 0.8125rem;
    line-height: 1.35;
  }

  body.docs-page .docs-tabs:not(.docs-tabs-dark) .docs-tab.active {
    background: var(--landing-text);
    color: #ffffff !important;
    border-color: var(--landing-text);
    border-bottom-color: var(--landing-text);
  }

  /* Code tabs — horizontal scroll on phone */
  body.docs-page .docs-tabs-dark {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  body.docs-page .docs-tabs-dark::-webkit-scrollbar {
    display: none;
  }

  body.docs-page .docs-tabs-dark .docs-tab {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 0.8125rem;
  }

  /* JSON / code blocks — wrap instead of clip */
  body.docs-page pre.docs-code-block,
  body.docs-page pre.docs-code-block-dark {
    padding: 16px;
    border-radius: 8px;
    border-top: 1px solid rgba(15, 15, 15, 0.14);
    margin-top: 4px;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.docs-page pre.docs-code-block-dark {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  body.docs-page pre.docs-code-block code,
  body.docs-page pre.docs-code-block-dark code {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .docs-snippet .docs-code-block-dark {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-top: 0;
  }

  .docs-cta-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .docs-cta-inline .btn {
    width: 100%;
  }
}

/* —— Reduced motion —— */
@media (prefers-reduced-motion: reduce) {
  .marquee-inner,
  .product-card,
  .anim-bounce,
  .anim-fade-up,
  .anim-chat-in { animation: none !important; }

  .how-step.is-visible,
  .how-step.is-visible .how-step-icon {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .how-flow.is-animating .how-flow-track {
    opacity: 1 !important;
  }

  .anim-fade-up,
  .anim-chat-in { opacity: 1; transform: none; }

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

/* —— Responsive —— */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy { order: 1; }

  .hero-visual {
    order: 2;
    max-width: min(100%, 360px);
    margin: 3rem auto 0;
  }

  .hero-lead { max-width: none; }

  .hero-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-eyebrow { justify-content: center; }

  .hero-display,
  .hero-lead { text-align: center; }

  .hero-actions {
    width: 100%;
    max-width: 360px;
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 2.5vw, 16px);
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-stat-value {
    font-size: clamp(1.0625rem, 4.2vw, 1.375rem);
    margin-bottom: 6px;
  }

  .hero-stat-label {
    font-size: clamp(0.5625rem, 2.8vw, 0.6875rem);
    line-height: 1.35;
  }

  .industry-grid,
  .compare-grid,
  .wallet-pricing-layout { grid-template-columns: 1fr; }

  .wallet-included-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-visual {
    max-width: 100%;
    margin-top: 2.5rem;
  }

  .product-card {
    animation: none;
    transform: none;
  }

  .product-card:hover { transform: none; }
  .nav-mobile-toggle { display: flex; }

  .landing-nav-drawer {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--landing-border);
  }

  .landing-nav-drawer.is-open { display: flex; }

  .landing-nav-center,
  .landing-nav-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .landing-nav-links { flex-direction: column; align-items: flex-start; gap: 14px; }

  .hero-actions .btn { width: 100%; }
  .landing-section { padding: 64px 0; }

  .landing-gateway .section-header {
    text-align: center;
  }

  .landing-gateway .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .gateway-list {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin-left: calc(-1 * clamp(20px, 4vw, 48px));
    margin-right: calc(-1 * clamp(20px, 4vw, 48px));
    width: calc(100% + 2 * clamp(20px, 4vw, 48px));
  }

  .gateway-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    padding: 24px clamp(20px, 4vw, 28px);
  }

  .gateway-row-rule {
    display: none;
  }

  .gateway-row-num {
    order: 1;
    flex: 0 0 auto;
    font-size: 2.75rem;
    line-height: 1;
  }

  .gateway-row-icon {
    order: 2;
    margin-left: auto;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .gateway-row-content {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
  }

  .gateway-row-content h3 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
  }

  .gateway-row-content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .gateway-row:hover {
    background: transparent;
  }

  .gateway-row:hover .gateway-row-icon {
    transform: none;
  }

  .how-flow-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 18px;
    align-items: center;
    text-align: left;
    padding: 26px 0;
  }

  .how-step-icon {
    grid-column: 1;
    align-self: center;
    margin-bottom: 0;
    width: 52px;
    height: 52px;
  }

  .how-step-copy {
    grid-column: 2;
  }

  .how-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .how-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .benefit-row { grid-template-columns: 1fr; gap: 6px; }

  .statement-wrap {
    padding-bottom: clamp(40px, 8vw, 56px);
  }

  .statement-stats {
    max-width: 100%;
    gap: clamp(6px, 2vw, 12px);
  }

  .statement-stat-value {
    font-size: clamp(1.0625rem, 5vw, 1.25rem);
  }

  .statement-stat-label {
    font-size: clamp(0.5625rem, 2.8vw, 0.6875rem);
    max-width: 10ch;
  }

  .footer-container { flex-direction: column; text-align: center; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; }
  .mega-heading { font-size: clamp(2.5rem, 18vw, 5rem); }
}


/* JustAuth Brand Accent Style */
.logo-auth {
  color: var(--color-primary) !important;
}

/* ==========================================
   SUPPORT PAGE STYLES
   ========================================== */
body.support-page {
  background-color: var(--landing-bg);
  --docs-muted: #3A3D42;
  --docs-muted-soft: #5C6068;
}

body.support-page .section-tag {
  color: var(--docs-muted-soft);
}

body.support-page .section-subtitle {
  color: var(--docs-muted);
}

.support-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  max-width: 1200px;
  margin: 40px auto;
}

@media (max-width: 992px) {
  .support-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.support-faq-column {
  display: flex;
  flex-direction: column;
}

.support-contact-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.support-contact-card {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.support-contact-card:hover {
  border-color: rgba(15, 15, 15, 0.25);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.05);
}

.support-contact-card h3 {
  font-size: 22px;
  margin-top: 12px;
  margin-bottom: 12px;
  color: var(--landing-text);
}

.support-contact-card p {
  color: var(--docs-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.support-card-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--color-primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.support-email-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--landing-border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
}

.support-email-link {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.support-email-link:hover {
  color: var(--color-secondary);
}

.btn-copy-email {
  padding: 6px 12px !important;
  font-size: 11px !important;
  height: auto !important;
  border-color: rgba(15, 15, 15, 0.2) !important;
  color: var(--landing-text) !important;
}

.support-ticket-form-card {
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}

.support-ticket-form-card:hover {
  border-color: rgba(15, 15, 15, 0.25);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.05);
}

.support-ticket-form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--landing-text);
}

.form-card-desc {
  color: var(--docs-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.support-textarea {
  resize: vertical;
  min-height: 100px;
}

