/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  color: #16A1FF;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: #16A1FF;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #16A1FF;
  border-radius: 1px;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f0f9ff 0%, #e8f4fd 50%, #dbeafe 100%);
  padding: 140px 0 120px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 161, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 161, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #1a1a2e;
}

.highlight {
  color: #16A1FF;
}

.hero-subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.btn-primary {
  background: #16A1FF;
  color: #fff;
  box-shadow: 0 4px 16px rgba(22, 161, 255, 0.35);
}

.btn-primary:hover {
  background: #0d8ee0;
  box-shadow: 0 6px 24px rgba(22, 161, 255, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1a1a2e;
  border-color: #d0d5dd;
}

.btn-outline:hover {
  border-color: #16A1FF;
  color: #16A1FF;
  transform: translateY(-2px);
}

/* Hero badges */
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.badge svg {
  color: #16A1FF;
  flex-shrink: 0;
}

/* Hero phone mockup */
.hero-image {
  flex: 0 0 auto;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 12px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #e8f4fd 0%, #f0f9ff 100%);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #999;
  font-size: 14px;
  font-weight: 500;
}

.phone-mockup-small {
  width: 240px;
  height: 480px;
}

/* Screenshot images in phone mockups */
.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  display: block;
}

.screenshot-phone .screen-img {
  border-radius: 20px;
}

.phone-mockup-small .screen-img {
  border-radius: 24px;
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: #777;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fafbfc;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e8f4fd, #dbeafe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16A1FF;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.screenshots-carousel {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.screenshot-item {
  text-align: center;
}

.screenshot-phone {
  width: 200px;
  height: 400px;
  background: #1a1a2e;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}

.screenshot-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: #111;
  border-radius: 10px;
  z-index: 2;
}

.screenshot-item:hover .screenshot-phone {
  transform: translateY(-8px);
}

.screenshot-phone > div {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #e8f4fd 0%, #f0f9ff 100%);
  border-radius: 20px;
  overflow: hidden;
}

.screenshot-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #aaa;
  font-size: 13px;
  font-weight: 500;
}

.screenshot-label {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: #fff;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  max-width: 260px;
  padding: 0 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: #16A1FF;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(22, 161, 255, 0.3);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
}

.step-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #16A1FF, #93d1ff);
  margin-top: 28px;
  border-radius: 1px;
  flex-shrink: 0;
}

/* ===== DOWNLOAD / CTA ===== */
.download {
  padding: 100px 0;
  background: linear-gradient(135deg, #0c7cd5 0%, #16A1FF 50%, #47b8ff 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.download::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.download-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.download-text {
  flex: 1;
}

.download-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.download-text .highlight {
  color: #ffe082;
}

.download-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.store-btn small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  font-weight: 400;
}

.store-btn strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.download-image {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.download-image .phone-mockup {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-inner {
  display: flex;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-brand {
  flex: 1;
}

.footer-brand .nav-logo-text {
  color: #fff;
}

.footer-desc {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #16A1FF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-line {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .download-inner {
    flex-direction: column;
    text-align: center;
  }

  .download-text p {
    max-width: 100%;
  }

  .store-buttons {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .section-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 100px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-carousel {
    gap: 20px;
  }

  .screenshot-phone {
    width: 160px;
    height: 320px;
  }

  .phone-mockup {
    width: 220px;
    height: 440px;
  }

  .phone-mockup-small {
    width: 200px;
    height: 400px;
  }

  .download-text h2 {
    font-size: 28px;
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.feature-card.reveal:nth-child(4) { transition-delay: 0.1s; }
.feature-card.reveal:nth-child(5) { transition-delay: 0.2s; }
.feature-card.reveal:nth-child(6) { transition-delay: 0.3s; }

.screenshot-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.screenshot-item.reveal:nth-child(3) { transition-delay: 0.2s; }
.screenshot-item.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   THEME TOGGLE BUTTON
   ======================================== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-theme {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #EBF6FF;
  border: 1px solid rgba(22, 161, 255, 0.3);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  color: #16A1FF;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-theme:hover {
  background: #D3ECFF;
}

.btn-theme .btn-theme-label {
  font-size: 12px;
  font-weight: 500;
}

/* ========================================
   HORSE THEME — body.theme-horse
   ======================================== */

/* --- Global overlay for horse background --- */
body.theme-horse {
  background-image: url('/kun.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
}

body.theme-horse::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 25, 0.55);
  z-index: 0;
  pointer-events: none;
}

/* Ensure all positioned content sits above the overlay */
body.theme-horse .navbar,
body.theme-horse .hero,
body.theme-horse .features,
body.theme-horse .screenshots,
body.theme-horse .how-it-works,
body.theme-horse .download,
body.theme-horse .footer {
  position: relative;
  z-index: 1;
}

/* --- Navbar --- */
body.theme-horse .navbar {
  background: rgba(10, 10, 30, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.theme-horse .navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

body.theme-horse .nav-logo-text {
  color: #fff;
}

body.theme-horse .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-horse .nav-links a:hover {
  color: #fff;
}

body.theme-horse .nav-links a::after {
  background: #16A1FF;
}

body.theme-horse .nav-toggle span {
  background: #fff;
}

body.theme-horse .btn-theme {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(6px);
}

body.theme-horse .btn-theme:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* --- Hero --- */
body.theme-horse .hero {
  background: transparent;
}

body.theme-horse .hero::before,
body.theme-horse .hero::after {
  display: none;
}

body.theme-horse .hero-text h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

body.theme-horse .highlight {
  color: #7dd3fc;
}

body.theme-horse .hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

body.theme-horse .btn-primary {
  background: #16A1FF;
  box-shadow: 0 4px 20px rgba(22, 161, 255, 0.4);
}

body.theme-horse .btn-primary:hover {
  background: #0d8ee0;
  box-shadow: 0 6px 28px rgba(22, 161, 255, 0.5);
}

body.theme-horse .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

body.theme-horse .btn-outline:hover {
  border-color: #16A1FF;
  color: #16A1FF;
}

body.theme-horse .badge {
  color: rgba(255, 255, 255, 0.75);
}

body.theme-horse .badge svg {
  color: #7dd3fc;
}

body.theme-horse .hero-wave-path {
  fill: transparent;
}

/* --- Phone mockups --- */
body.theme-horse .phone-mockup {
  background: rgba(10, 10, 30, 0.8);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

body.theme-horse .phone-screen {
  background: linear-gradient(180deg, rgba(22, 161, 255, 0.1) 0%, rgba(10, 10, 30, 0.3) 100%);
}

body.theme-horse .phone-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

body.theme-horse .screenshot-phone {
  background: rgba(10, 10, 30, 0.8);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

body.theme-horse .screenshot-phone > div {
  background: linear-gradient(180deg, rgba(22, 161, 255, 0.08) 0%, rgba(10, 10, 30, 0.2) 100%);
}

body.theme-horse .screenshot-placeholder {
  color: rgba(255, 255, 255, 0.35);
}

body.theme-horse .screenshot-label {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Features --- */
body.theme-horse .features {
  background: transparent;
}

body.theme-horse .section-header h2 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

body.theme-horse .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

body.theme-horse .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.theme-horse .feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

body.theme-horse .feature-icon {
  background: linear-gradient(135deg, rgba(22, 161, 255, 0.2), rgba(22, 161, 255, 0.1));
}

body.theme-horse .feature-card h3 {
  color: #fff;
}

body.theme-horse .feature-card p {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Screenshots --- */
body.theme-horse .screenshots {
  background: transparent;
}

/* --- How it works --- */
body.theme-horse .how-it-works {
  background: transparent;
}

body.theme-horse .step h3 {
  color: #fff;
}

body.theme-horse .step p {
  color: rgba(255, 255, 255, 0.6);
}

body.theme-horse .step-number {
  box-shadow: 0 4px 20px rgba(22, 161, 255, 0.4);
}

body.theme-horse .step-line {
  background: linear-gradient(90deg, rgba(22, 161, 255, 0.6), rgba(125, 211, 252, 0.4));
}

/* --- Download CTA --- */
body.theme-horse .download {
  background: linear-gradient(135deg, rgba(12, 124, 213, 0.85) 0%, rgba(22, 161, 255, 0.8) 50%, rgba(71, 184, 255, 0.75) 100%);
  backdrop-filter: blur(8px);
}

/* --- Footer --- */
body.theme-horse .footer {
  background: rgba(10, 10, 30, 0.8);
  backdrop-filter: blur(12px);
}

/* --- Mobile nav (horse theme) --- */
@media (max-width: 640px) {
  body.theme-horse .nav-links {
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  body.theme-horse .nav-links a {
    color: rgba(255, 255, 255, 0.8);
  }
}

/* --- Theme transition smoothing --- */
body,
.navbar,
.hero,
.features,
.screenshots,
.how-it-works,
.feature-card,
.section-header h2,
.section-header p,
.hero-text h1,
.hero-subtitle,
.badge,
.btn-outline,
.nav-logo-text,
.nav-links a,
.step h3,
.step p,
.screenshot-label,
.phone-mockup,
.phone-screen,
.screenshot-phone,
.screenshot-phone > div,
.btn-theme,
.footer {
  transition-property: background, background-color, color, border-color, box-shadow, backdrop-filter;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}
