/* ============================================
   REGELZEIT — Landing Page Styles
   ============================================
   Color Palette:
   - Menstruation:  #8B2252 (dark red), #E8A0BF (soft pink)
   - Follicular:    #7DB88F (spring green), #B5E4C4 (light green)
   - Ovulation:     #F4A460 (sun gold)
   - Luteal:        #9B7DDB (lavender)
   - Background:    #FDFAF5 (off-white)
   - Text:          #2C2C2C (soft black)
   - Secondary:     #6B6B6B (warm gray)
   - Accent:        #FF6B6B (coral)
   ============================================ */

/* ---------- Reset & Base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji";
  background-color: #FDFAF5;
  color: #2C2C2C;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Links */
a {
  color: #8B2252;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: #FF6B6B;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid #8B2252;
  outline-offset: 2px;
}


/* ---------- Password Gate ---------- */

.pw-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg, #FDFAF5);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pw-gate[hidden] { display: none; }

.pw-card {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 380px;
  width: 90%;
}

.pw-logo {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.pw-title {
  font-size: 2rem;
  font-weight: 700;
  color: #8B2252;
  margin-bottom: 0.25rem;
}

.pw-subtitle {
  color: #6B6B6B;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pw-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pw-input {
  padding: 0.85rem 1rem;
  border: 2px solid #e0d6cc;
  border-radius: 12px;
  font-size: 1rem;
  text-align: center;
  background: rgba(255,255,255,0.8);
  color: #2C2C2C;
  outline: none;
  transition: border-color 0.2s;
}

.pw-input:focus {
  border-color: #8B2252;
}

.pw-btn {
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 12px;
  background: #8B2252;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.pw-btn:hover { background: #a02a63; }

.pw-error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Dark mode gate */
html.dark .pw-gate { background: #1a1a1a; }
html.dark .pw-input { background: rgba(40,40,40,0.8); border-color: #444; color: #f0f0f0; }
html.dark .pw-subtitle { color: #999; }

@media (prefers-color-scheme: dark) {
  .pw-gate:not(html.light .pw-gate) { background: #1a1a1a; }
  .pw-input:not(html.light .pw-input) { background: rgba(40,40,40,0.8); border-color: #444; color: #f0f0f0; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #8B2252;
  letter-spacing: -0.02em;
}

.nav-brand:hover {
  color: #8B2252;
}

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #2C2C2C;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(253, 250, 245, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 24px;
  gap: 4px;
}

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

.nav-links li a {
  display: block;
  padding: 10px 0;
  color: #2C2C2C;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #8B2252;
}

/* Theme toggle button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  color: #6B6B6B;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

.theme-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #8B2252;
  transform: scale(1.05);
}

/* Show sun in dark mode, moon in light mode */
.theme-icon-sun { display: none; }
.theme-icon-moon { display: block; }

html.dark .theme-icon-sun { display: block; }
html.dark .theme-icon-moon { display: none; }

html.dark .theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  color: #E8A0BF;
}

html.dark .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFD4A0;
}

/* Desktop nav */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    gap: 32px;
  }

  .nav-links li a {
    padding: 0;
  }
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

/* Floating background shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #E8A0BF, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #B5E4C4, transparent 70%);
  bottom: 10%;
  left: -8%;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #9B7DDB, transparent 70%);
  top: 30%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #F4A460, transparent 70%);
  bottom: 20%;
  right: 15%;
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-10px, 20px) scale(0.95);
  }
  75% {
    transform: translate(15px, 10px) scale(1.02);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: center;
  animation: heroFadeIn 0.8s ease-out;
}

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

.hero-title {
  margin-bottom: 12px;
}

.hero-title-name {
  display: block;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #8B2252 0%, #A83279 50%, #9B7DDB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: #6B6B6B;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #6B6B6B;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #8B2252, #A83279);
  box-shadow: 0 2px 8px rgba(139, 34, 82, 0.2);
}

.btn-primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 34, 82, 0.3);
}

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

/* Hero visual — cycle wheel */
.hero-visual {
  animation: heroFadeIn 1s ease-out 0.3s both;
}

.cycle-wheel {
  width: 260px;
  height: 260px;
  animation: wheelSpin 60s linear infinite;
}

@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Counter-rotate text so it stays readable */
.cycle-wheel text {
  animation: wheelSpinReverse 60s linear infinite;
  transform-origin: center;
}

@keyframes wheelSpinReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Phase arcs entrance animation */
.phase-arc {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawArc 1.5s ease-out forwards;
}

.arc-1 { animation-delay: 0.5s; }
.arc-2 { animation-delay: 0.8s; }
.arc-3 { animation-delay: 1.1s; }
.arc-4 { animation-delay: 1.4s; }

@keyframes drawArc {
  to {
    stroke-dashoffset: 0;
  }
}

/* Desktop hero layout */
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-text {
    text-align: left;
    flex: 1;
    max-width: 540px;
  }

  .hero-description {
    margin: 0 0 32px;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-visual {
    flex-shrink: 0;
  }

  .cycle-wheel {
    width: 300px;
    height: 300px;
  }
}


/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  padding: 80px 0;
}

.about-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #2C2C2C;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #6B6B6B;
  margin-bottom: 48px;
}

.about-text {
  font-size: 1.05rem;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text:last-child {
  margin-bottom: 0;
}


/* ============================================
   APP PREVIEW / SCREENSHOTS
   ============================================ */

.app-preview {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(155, 125, 219, 0.04) 50%,
    transparent 100%
  );
  overflow: hidden;
}

.app-preview .section-subtitle {
  text-align: center;
}

.preview-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -24px;
  padding: 0 24px;
}

.preview-scroll::-webkit-scrollbar {
  display: none;
}

.preview-track {
  display: flex;
  gap: 32px;
  padding: 20px 0 32px;
  justify-content: flex-start;
}

/* Center the track on desktop when all items fit */
@media (min-width: 1100px) {
  .preview-track {
    justify-content: center;
  }
}

.phone-frame {
  flex-shrink: 0;
  width: 220px;
  max-width: 220px;
  background: #1a1a1a;
  border-radius: 32px;
  padding: 12px 8px 8px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.phone-frame:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 60px rgba(0, 0, 0, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-notch {
  width: 80px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  margin: 0 auto 8px;
}

.phone-frame img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  display: block;
}

.phone-caption {
  text-align: center;
  color: #999;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 8px;
  padding-bottom: 4px;
}

/* Larger phones on bigger screens */
@media (min-width: 768px) {
  .phone-frame {
    width: 240px;
    max-width: 240px;
    border-radius: 36px;
    padding: 14px 10px 10px;
  }

  .phone-frame img {
    border-radius: 22px;
    max-height: 480px;
  }

  .phone-notch {
    width: 90px;
    height: 7px;
    border-radius: 4px;
    margin-bottom: 10px;
  }
}


/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(232, 160, 191, 0.05) 50%,
    transparent 100%
  );
}

.features .section-title,
.features .section-subtitle {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 650;
  color: #2C2C2C;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.925rem;
  color: #6B6B6B;
  line-height: 1.65;
}


/* ============================================
   DOWNLOAD / CTA SECTION
   ============================================ */

.download {
  padding: 80px 0;
  text-align: center;
}

.download-content {
  max-width: 560px;
  margin: 0 auto;
}

.download-text {
  font-size: 1.05rem;
  color: #6B6B6B;
  line-height: 1.75;
  margin-bottom: 40px;
}

.badge-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.badge-link:hover {
  transform: translateY(-2px);
}

.badge-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #2C2C2C;
  color: white;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.badge-placeholder:hover {
  background: #1a1a1a;
}

.badge-placeholder svg {
  flex-shrink: 0;
  /* Apple logo stand-in: rotated arrow acts as placeholder */
  transform: rotate(90deg);
}

.badge-text {
  text-align: left;
}

.badge-small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.85;
}

.badge-large {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
}


/* ============================================
   LEGAL SECTIONS (Datenschutz, Impressum, AGB)
   ============================================ */

.legal-section {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.legal-section .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.legal-content {
  max-width: 720px;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  color: #4A4A4A;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-date {
  font-style: italic;
  color: #6B6B6B !important;
  margin-top: 20px;
}

/* AGB placeholder notice */
.placeholder-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(155, 125, 219, 0.06);
  border-radius: 12px;
  border-left: 3px solid #9B7DDB;
}

.placeholder-notice svg {
  flex-shrink: 0;
  color: #9B7DDB;
  margin-top: 2px;
}

.placeholder-notice p {
  color: #6B6B6B;
  margin: 0;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #2C2C2C;
  color: #D0C8C0;
  padding: 48px 0 32px;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: #E8A0BF;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #8B8380;
  margin-top: 4px;
}

.footer-nav {
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #D0C8C0;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #E8A0BF;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  font-size: 0.825rem;
  color: #8B8380;
}

.footer-note {
  font-size: 0.775rem;
  color: #6B6360;
  margin-top: 6px;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-nav {
    text-align: right;
  }

  .footer-bottom {
    width: 100%;
    text-align: center;
  }
}


/* ============================================
   ANIMATIONS & SCROLL REVEAL
   ============================================ */

/* Fade-in-up for sections */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger-children .feature-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.visible .feature-card:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible .feature-card:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.visible .feature-card:nth-child(3) { transition-delay: 0.25s; }
.stagger-children.visible .feature-card:nth-child(4) { transition-delay: 0.35s; }
.stagger-children.visible .feature-card:nth-child(5) { transition-delay: 0.45s; }

.stagger-children.visible .feature-card {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in-up,
  .stagger-children .feature-card {
    opacity: 1;
    transform: none;
  }
}


/* ============================================
   DARK MODE (class-based toggle)
   ============================================ */

html.dark body { background-color: #1a1a1a; color: #E8E0D8; }
html.dark .nav { background: rgba(26, 26, 26, 0.9); border-bottom-color: rgba(255, 255, 255, 0.08); }
html.dark .nav-links { background: rgba(26, 26, 26, 0.98); border-bottom-color: rgba(255, 255, 255, 0.08); }
html.dark .nav-links li a { color: #D0C8C0; }
html.dark .nav-brand { color: #E8A0BF; }
html.dark .nav-toggle-bar { background: #D0C8C0; }
html.dark a { color: #E8A0BF; }
html.dark a:hover, html.dark a:focus-visible { color: #FFD4A0; }
html.dark .hero-tagline { color: #A09890; }
html.dark .hero-description { color: #A09890; }
html.dark .cycle-wheel circle[fill="#FDFAF5"] { fill: #2A2A2A; }
html.dark .cycle-wheel circle[stroke="#F0EAE0"] { stroke: #3A3A3A; }
html.dark .section-title { color: #E8E0D8; }
html.dark .section-subtitle { color: #A09890; }
html.dark .about-text { color: #B8B0A8; }
html.dark .feature-card { background: #242424; border-color: rgba(255, 255, 255, 0.06); box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2); }
html.dark .feature-card:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); }
html.dark .feature-title { color: #E8E0D8; }
html.dark .feature-desc { color: #A09890; }
html.dark .download-text { color: #A09890; }
html.dark .badge-placeholder { background: #E8E0D8; color: #1a1a1a; }
html.dark .badge-placeholder:hover { background: #fff; }
html.dark .legal-section { border-top-color: rgba(255, 255, 255, 0.06); }
html.dark .legal-content h3 { color: #E8E0D8; }
html.dark .legal-content p { color: #B8B0A8; }
html.dark .legal-content a { color: #E8A0BF; }
html.dark .placeholder-notice { background: rgba(155, 125, 219, 0.1); border-left-color: #9B7DDB; }
html.dark .placeholder-notice p { color: #A09890; }
html.dark .footer { background: #111; }
html.dark .phone-frame { background: #111; box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06); }
html.dark .phone-frame:hover { box-shadow: 0 16px 60px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06); }
html.dark .phone-notch { background: #222; }
html.dark .phone-caption { color: #777; }
html.dark .app-preview { background: linear-gradient(180deg, transparent 0%, rgba(155, 125, 219, 0.06) 50%, transparent 100%); }
html.dark .features { background: linear-gradient(180deg, transparent 0%, rgba(232, 160, 191, 0.04) 50%, transparent 100%); }
html.dark :focus-visible { outline-color: #E8A0BF; }
html.dark .shape { opacity: 0.08; }


/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .nav,
  .hero-bg-shapes,
  .hero-visual,
  .btn,
  .badge-link {
    display: none;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .legal-section {
    break-inside: avoid;
  }
}
