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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  padding-bottom: 3rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo svg {
  height: 1.5rem;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav > a,
.nav-dropdown-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #1e293b;
  transition: color 0.2s;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.nav > a:hover {
  color: #000;
}

/* ── Nav Dropdowns ─────────────────────────────── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-label {
  cursor: pointer;
  user-select: none;
  padding: 0.25rem 0;
}

.nav-dropdown-label::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-label::after {
  transform: rotate(180deg);
}

.nav-dropdown:hover .nav-dropdown-label,
.nav-dropdown-label:hover {
  color: #000;
}

/* invisible bridge so mouse can travel from label to menu */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 10px);
  left: -0.75rem;
  min-width: 280px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226,232,240,0.6);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(15,23,42,0.08), 0 2px 8px rgba(15,23,42,0.04);
  padding: 0.5rem;
  z-index: 1000;
  flex-direction: column;
  gap: 2px;
  transform: translateY(6px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

/* top pointer arrow */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 1.25rem;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(226,232,240,0.6);
  border-left: 1px solid rgba(226,232,240,0.6);
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.625rem;
  transition: background 0.18s ease, transform 0.18s ease;
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e8edf4 100%);
  transform: translateX(2px);
}

.nav-dropdown-icon {
  font-size: 1.125rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.nav-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-dropdown-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1e293b;
  white-space: nowrap;
}

.nav-dropdown-item:hover .nav-dropdown-name {
  color: #0f172a;
}

.nav-dropdown-desc {
  font-size: 0.6875rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* simple link fallback (kept for single-item dropdowns) */
.nav-dropdown-menu > a:not(.nav-dropdown-item) {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.8125rem;
  color: #334155;
  white-space: nowrap;
  border-radius: 0.625rem;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-dropdown-menu > a:not(.nav-dropdown-item):hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e8edf4 100%);
  color: #0f172a;
}

/* ── Mobile Nav Dropdowns ──────────────────────── */
.mobile-nav-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-nav-dropdown-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #1e293b;
  cursor: pointer;
  padding: 0.5rem 0;
}

.mobile-nav-dropdown-label::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.mobile-nav-dropdown-label::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.mobile-nav-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-menu {
  display: flex;
}

.mobile-nav-dropdown-menu a {
  font-size: 0.8125rem;
  color: #475569;
  padding: 0.35rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: inherit;
  color: #64748b;
  background: transparent;
  border: 1px solid #e2e8f0;
  padding: 0.3125rem 0.75rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.btn-lang:hover {
  color: #1e293b;
  border-color: #cbd5e1;
  background: #f8fafc;
}

.btn-login {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  color: #1e293b;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 0.4375rem 1.125rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-login:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.btn-signup {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  color: #fff;
  background: #0f172a;
  border: 1px solid #0f172a;
  padding: 0.4375rem 1.125rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-signup:hover {
  background: #1e293b;
}

.btn-primary {
  display: inline-block;
  background: #1e293b;
  color: #fff;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #334155;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: #f1f5f9;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #1e293b;
  padding: 0.25rem;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 49;
  padding: 1rem 2rem 1.5rem;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 0.9375rem;
  color: #1e293b;
  padding: 0.5rem 0;
}

.mobile-nav-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

/* ========== MAIN ========== */
.main {
  padding: 0 1rem;
  margin-top: 2.5rem;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
}

.section-subtitle {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #64748b;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========== HERO ========== */
.hero-wrapper {
  max-width: 72rem;
  margin: 0 auto;
}

.hero-card {
  background: #f8fafc;
  border-radius: 3rem;
  padding: 4rem 1.5rem;
  box-shadow: 12px 12px 24px #e2e8f0, -12px -12px 24px #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(241, 245, 249, 0.5);
  border: 1px solid #e2e8f0;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #34d399;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  color: #1e293b;
  max-width: 56rem;
  line-height: 1.1;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #64748b;
  max-width: 42rem;
  line-height: 1.75;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn-primary {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.hero-buttons .btn-outline {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.partners {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  width: 100%;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.partners-label {
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.partners-list span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #94a3b8;
  cursor: default;
  transition: color 0.2s;
}

.partners-list span:hover {
  color: #475569;
}

/* ========== FEATURES ========== */
.features-wrapper {
  max-width: 72rem;
  margin: 5rem auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 12px 12px 24px #e2e8f0, -12px -12px 24px #ffffff;
  transition: transform 0.2s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.feature-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  color: #94a3b8;
  flex-shrink: 0;
}

.feature-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.75;
}

/* ========== PRODUCTS ========== */
.products-wrapper {
  max-width: 72rem;
  margin: 5rem auto 0;
}

.products-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.products-grid::-webkit-scrollbar {
  height: 4px;
}

.products-grid::-webkit-scrollbar-track {
  background: transparent;
}

.products-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

.products-grid .product-card {
  min-width: 300px;
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.product-card {
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 12px 12px 24px #e2e8f0, -12px -12px 24px #ffffff;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-2px);
}

a.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #475569;
}

.product-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.7;
}

/* ========== CTA ========== */
.cta-wrapper {
  max-width: 72rem;
  margin: 5rem auto 0;
}

.cta-card {
  background: #0f172a;
  border-radius: 2rem;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.cta-card p {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #94a3b8;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: #fff;
  color: #0f172a;
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.cta-buttons .btn-primary:hover {
  background: #f1f5f9;
}

.cta-buttons .btn-outline {
  border-color: #475569;
  color: #e2e8f0;
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ========== PRODUCT PAGE ========== */
.pp-wrapper {
  max-width: 72rem;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}

.pp-tabs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.pp-tabs::-webkit-scrollbar {
  height: 3px;
}

.pp-tabs::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

.pp-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: all 0.2s ease;
}

.pp-tab:hover {
  border-color: #6366f1;
  color: #4338ca;
}

.pp-tab.active {
  border-color: #6366f1;
  background: #eef2ff;
  color: #4338ca;
  box-shadow: 0 0 0 1px #6366f1;
}

.pp-tab-icon {
  font-size: 1.125rem;
}

.pp-panels {
  position: relative;
}

.pp-panel {
  display: none;
}

.pp-panel.active {
  display: block;
}

.pp-panel-header {
  margin-bottom: 2rem;
}

.pp-panel-header h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.pp-panel-header p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 40rem;
}

.pp-panel-demo {
  margin-bottom: 2rem;
}

.pp-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 320px;
  border: 2px dashed #e2e8f0;
  border-radius: 1rem;
  background: #f8fafc;
  color: #94a3b8;
}

.pp-placeholder p {
  font-size: 0.9375rem;
  font-weight: 500;
}

.pp-panel-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* ========== FOOTER ========== */
.footer-wrapper {
  max-width: 72rem;
  margin: 3rem auto 0;
}

.footer-card {
  background: #f8fafc;
  border-radius: 3rem;
  padding: 2.5rem;
  box-shadow: 12px 12px 24px #e2e8f0, -12px -12px 24px #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.footer-brand .brand-name {
  margin-bottom: 1rem;
}

.footer-brand .brand-desc {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.75;
  padding-right: 1rem;
}

.footer-brand .brand-contact {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-column ul a {
  font-size: 0.875rem;
  color: #64748b;
  transition: color 0.2s;
}

.footer-column ul a:hover {
  color: #1e293b;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal .icp {
  font-size: 0.75rem;
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-legal .icp:hover {
  color: #475569;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #475569;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav { display: none; }
  .header-actions .btn-login { display: none; }
  .mobile-menu-btn { display: block; }

  .hero-card { padding: 3rem 1.25rem; border-radius: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { flex-direction: column; gap: 0.5rem; }
  .partners-list { gap: 1.5rem; }
  .footer-card { padding: 2rem 1.5rem; border-radius: 2rem; }
  .cta-card { padding: 3rem 1.5rem; border-radius: 1.5rem; }
  .section-title { font-size: 1.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-card { padding: 4rem 2rem; }
}

@media (min-width: 1024px) {
  .hero-card { padding: 6rem 1.5rem; }
  .partners-list { gap: 4rem; }
  .footer-card { padding: 4rem; }
}

/* ========== AUTH MODALS ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 1rem;
  width: 100%;
  max-width: 26rem;
  margin: 1rem;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.15s;
}

.modal-close:hover {
  color: #1e293b;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.auth-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  font-size: 0.8125rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.auth-field {
  margin-bottom: 1rem;
}

.auth-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.375rem;
}

.auth-field input {
  width: 100%;
  padding: 0.5625rem 0.875rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: #1e293b;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.auth-field input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.auth-field-row {
  display: flex;
  gap: 0.625rem;
}

.auth-field-row input {
  flex: 1;
  min-width: 0;
}

.send-code-btn {
  flex-shrink: 0;
  padding: 0.5625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}

.send-code-btn:hover:not(:disabled) {
  background: #e2e8f0;
}

.send-code-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth-submit-btn {
  width: 100%;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  color: #fff;
  background: #1e293b;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.25rem;
}

.auth-submit-btn:hover:not(:disabled) {
  background: #334155;
}

.auth-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth-footer {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.auth-footer a {
  color: #6366f1;
  cursor: pointer;
  font-weight: 500;
}

.auth-footer a:hover {
  color: #4f46e5;
}

/* Auth header state */
.auth-user {
  display: none;
  align-items: center;
  gap: 0.625rem;
}

.auth-user-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1e293b;
  max-width: 8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
