/* ===== PASCHA READINGS — LANDING PAGE ===== */
/* Sacred modernism: refined serif typography, gold accents, Coptic-inspired geometry */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Variables --- */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --burgundy: #8b1a1a;
  --burgundy-deep: #5c1111;
  --gold: #c9a84c;
  --gold-soft: #dbb96e;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --cream: #f5f0eb;
  --cream-light: #faf7f3;
  --ink: #2c1810;
  --muted: #7a6b60;
  --card: #ffffff;
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 8px 30px rgba(44, 24, 16, 0.1);
  --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

/* --- Login-screen as landing page --- */
#login-screen {
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.landing-nav.login-header {
  background: transparent;
  color: white;
  padding: 0;
  box-shadow: none;
  text-align: left;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, color 0.4s;
}

.landing-nav.login-header h1 {
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

.landing-nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(44, 24, 16, 0.06);
  color: var(--ink);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-cross {
  width: 28px;
  height: 28px;
  opacity: 0.9;
}

.landing-nav .btn-lang {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: inherit;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.landing-nav.scrolled .btn-lang {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--burgundy);
}

/* ===== HERO ===== */
.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(92, 17, 17, 0.4) 0%, transparent 50%),
    linear-gradient(160deg, #8b1a1a 0%, #6a1515 40%, #4a0f0f 100%);
  padding: 100px 32px 60px;
  overflow: hidden;
}

/* Subtle cross pattern overlay */
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 20h4v8h8v4h-8v8h-4v-8h-8v-4h8v-8z' fill='%23c9a84c' fill-opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Gold bottom border */
.landing-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* --- Hero text --- */
.hero-text {
  color: white;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.35s forwards;
}

.hero-text h2 em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s;
  opacity: 0;
  animation: fadeInUp 0.8s 0.65s forwards;
}

.hero-scroll:hover {
  color: var(--gold);
}

.hero-scroll svg {
  animation: bobDown 2s infinite;
}

/* --- Hero form card --- */
.hero-form-wrap {
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s forwards;
}

.hero-form-wrap .login-container {
  max-width: 100%;
  margin: 0;
  padding: 28px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 168, 76, 0.08);
  position: relative;
  overflow: hidden;
}

/* Gold accent strip on card top */
.hero-form-wrap .login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}

.hero-form-wrap .login-tabs {
  border-color: var(--burgundy);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.hero-form-wrap .login-tab {
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0;
}

.hero-form-wrap .login-tab:first-child {
  border-radius: 8px 0 0 8px;
}

.hero-form-wrap .login-tab:last-child {
  border-radius: 0 8px 8px 0;
}

.hero-form-wrap .login-form-content {
  gap: 10px;
}

.hero-form-wrap .login-form-content input,
.hero-form-wrap .login-form-content select {
  padding: 12px 14px;
  font-size: 0.95rem;
  border: 1.5px solid #e0d8d0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--cream-light);
  color: var(--ink);
}

.hero-form-wrap .login-form-content input:focus,
.hero-form-wrap .login-form-content select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
  outline: none;
}

.hero-form-wrap .btn-confirm {
  background: var(--burgundy);
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  letter-spacing: 0.3px;
}

.hero-form-wrap .btn-confirm:hover {
  background: var(--burgundy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.3);
}

.hero-form-wrap .source-compare-link {
  color: var(--gold);
  font-size: 0.8rem;
}

.hero-form-wrap .source-selector label {
  color: var(--muted);
}

/* Forgot password link */
.forgot-password-link {
  text-align: right;
  margin-top: -4px;
}

.forgot-password-link a {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s;
}

.forgot-password-link a:hover {
  color: var(--burgundy);
}

/* ===== SECTION SHARED STYLES ===== */
.landing-section {
  padding: 100px 32px;
  position: relative;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

/* Cross divider between sections */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 32px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4c8bc, transparent);
  max-width: 200px;
}

.divider-cross {
  width: 20px;
  height: 20px;
  color: var(--gold);
  opacity: 0.6;
}

/* ===== FEATURES ===== */
.landing-features {
  background: var(--cream-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  border: 1px solid rgba(212, 200, 188, 0.5);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.2);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--burgundy);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== APP PREVIEW / SCREENSHOTS ===== */
.landing-preview {
  background: var(--cream);
}

.preview-screenshots {
  max-width: 800px;
  margin: 0 auto;
}

.screenshot-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--card);
  border: 1px solid rgba(212, 200, 188, 0.5);
  direction: ltr; /* Force LTR so translateX works correctly in both languages */
}

.screenshot-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.screenshot-slide {
  min-width: 100%;
  position: relative;
}

.screenshot-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.screenshot-caption {
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  background: var(--card);
  border-top: 1px solid rgba(212, 200, 188, 0.3);
}

.screenshot-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 0 16px;
  background: var(--card);
}

.screenshot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.screenshot-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.screenshot-dot:hover {
  background: var(--gold-dim);
}

/* Screenshot placeholder when images don't exist */
.screenshot-slide img[src=""] {
  min-height: 400px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%);
}

/* ===== HOW IT WORKS ===== */
.landing-steps {
  background: var(--cream);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
  position: relative;
}

/* Connecting line between step circles */
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== SOCIAL PROOF ===== */
.landing-proof {
  background: var(--cream-light);
  text-align: center;
  padding: 80px 32px;
}

.proof-counter {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-counter span {
  color: var(--gold);
}

.proof-label {
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ===== BOTTOM CTA ===== */
.landing-cta {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    linear-gradient(160deg, #8b1a1a 0%, #5c1111 100%);
  color: white;
  text-align: center;
  padding: 80px 32px;
  position: relative;
}

.landing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--burgundy-deep);
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.cta-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

/* ===== FOOTER ===== */
.landing-footer {
  background: #1a0a06;
  color: rgba(255, 255, 255, 0.5);
  padding: 48px 32px;
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-heart {
  font-size: 0.85rem;
}

.footer-heart .heart {
  color: var(--burgundy);
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes goldGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Hero text stagger animations */
.hero-text h2 {
  animation: fadeInUp 0.8s 0.35s forwards, floatSlow 6s 1.5s ease-in-out infinite;
}

/* Hero form card entrance */
.hero-form-wrap {
  animation: fadeInScale 0.9s 0.4s forwards;
}

/* Gold border shimmer on hero card */
.hero-form-wrap .login-container::before {
  animation: shimmer 4s ease-in-out infinite;
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy), var(--gold), var(--burgundy));
}

/* Hero bottom gold line pulse */
.landing-hero::after {
  animation: goldGlow 4s ease-in-out infinite;
}

/* Feature card hover icon animation */
.feature-card:hover .feature-icon {
  animation: pulse 0.6s ease-out;
}

/* Step number hover */
.step-number {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}

/* CTA button arrow animation */
.cta-btn svg {
  transition: transform 0.3s;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

/* Screenshot carousel slide transition */
.screenshot-slide {
  transition: opacity 0.6s ease;
}

/* Proof counter scale-in */
.proof-counter.revealed {
  animation: fadeInScale 0.8s ease-out;
}

/* Nav logo subtle hover */
.nav-logo:hover .nav-cross {
  animation: pulse 0.8s ease-out;
}

/* Gold divider cross spin on scroll reveal */
.section-divider .divider-cross {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-divider:hover .divider-cross {
  transform: rotate(90deg);
}

/* Login tab active state transition */
.hero-form-wrap .login-tab {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Smooth form field focus glow */
.hero-form-wrap .login-form-content input:focus {
  animation: none;
  transition: border-color 0.3s, box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Footer heart */
.footer-heart .heart {
  display: inline-block;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

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

  .hero-subtitle {
    margin: 0 auto;
  }

  .hero-form-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

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

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 768px) {
  .landing-section {
    padding: 64px 20px;
  }

  .landing-hero {
    padding: 100px 20px 48px;
    min-height: auto;
  }

  .nav-inner {
    padding: 14px 20px;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps-row::before {
    display: none;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .landing-proof {
    padding: 64px 20px;
  }

  .landing-cta {
    padding: 64px 20px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-wrap .login-container {
    padding: 20px 16px;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .section-divider {
    padding: 0 20px;
  }
}

/* ===== DARK MODE ===== */
body.dark .landing-features,
body.dark .landing-proof {
  background: #1a1412;
}

body.dark .landing-steps {
  background: #201a16;
}

body.dark .feature-card {
  background: #2a2220;
  border-color: rgba(201, 168, 76, 0.1);
}

body.dark .section-title {
  color: #e8ddd4;
}

body.dark .section-subtitle,
body.dark .feature-desc,
body.dark .step-desc,
body.dark .proof-label {
  color: #9a8b80;
}

body.dark .feature-title,
body.dark .step-title {
  color: #e8ddd4;
}

body.dark .step-number {
  background: #2a2220;
}

body.dark .section-divider::before,
body.dark .section-divider::after {
  background: linear-gradient(90deg, transparent, #4a3d35, transparent);
}

body.dark .hero-form-wrap .login-container {
  background: #2a2220;
}

body.dark .hero-form-wrap .login-form-content input,
body.dark .hero-form-wrap .login-form-content select {
  background: #1a1412;
  border-color: #3d332c;
  color: #e8ddd4;
}

body.dark .hero-form-wrap .login-tab {
  background: #2a2220;
  color: var(--gold);
}

body.dark .hero-form-wrap .login-tab.active {
  background: var(--burgundy);
  color: white;
}

body.dark .landing-preview {
  background: #201a16;
}

body.dark .screenshot-carousel {
  border-color: rgba(201, 168, 76, 0.1);
  background: #2a2220;
}

body.dark .screenshot-caption {
  background: #2a2220;
  color: #9a8b80;
  border-color: rgba(201, 168, 76, 0.1);
}

body.dark .screenshot-nav {
  background: #2a2220;
}

body.dark .landing-footer {
  background: #0d0705;
}

body.dark .landing-cta {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    linear-gradient(160deg, #6a1515 0%, #3d0d0d 100%);
}

body.dark .forgot-password-link a {
  color: #9a8b80;
}

body.dark .forgot-password-link a:hover {
  color: var(--gold);
}
