/* Lucky Ones — Manifestation Tracker — Promo Website */
/* Theme extracted from app: dark luxury with gold accents */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --color-primary: #C9A84C;
  --color-primary-light: #F8C471;
  --color-primary-dark: #BB9F64;
  --color-secondary: #4A0E8F;
  --color-secondary-dark: #2d0a57;
  --color-bg: #0f0d0b;
  --color-bg-alt: #181613;
  --color-surface: #1A1410;
  --color-surface-light: #241E17;
  --color-text-primary: #F5F0E8;
  --color-text-secondary: #A89B84;
  --color-text-muted: #504E4A;
  --color-btn-gradient-start: #F9E1A0;
  --color-btn-gradient-end: #BB9F64;
  --border-radius: 12px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Roboto', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-logo .star {
  font-size: 22px;
  color: var(--color-primary-light);
}

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

.nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

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

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-primary-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(74, 14, 143, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 60%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.hero h1 .gold {
  color: var(--color-primary-light);
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--color-text-secondary);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-btn-gradient-start), var(--color-btn-gradient-end));
  color: #181613;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-primary-light);
  border: 1.5px solid rgba(201, 168, 76, 0.5);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(201, 168, 76, 0.15);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 24px;
  position: relative;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  transition: all 0.35s ease;
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(74, 14, 143, 0.2), rgba(201, 168, 76, 0.15));
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary-light);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  text-align: left;
}

/* ===== HIGHLIGHTS (alternating) ===== */
.highlight-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
}

.highlight-row:nth-child(even) {
  flex-direction: row-reverse;
}

.highlight-visual {
  flex: 0 0 200px;
  height: 200px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, var(--color-surface), var(--color-surface-light));
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.highlight-text {
  flex: 1;
  text-align: left;
}

.highlight-text h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.highlight-text p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: 64px 24px;
  background: linear-gradient(135deg, rgba(74, 14, 143, 0.12), rgba(201, 168, 76, 0.06));
  border-radius: var(--border-radius);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  font-size: 16px;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.legal-page-centered {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary-light);
}

.legal-date {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 36px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 36px;
  margin-bottom: 14px;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-primary-light);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: left;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.legal-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  text-align: left;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--color-primary);
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transition: border-color 0.2s ease;
}

.legal-content a:hover {
  border-bottom-color: var(--color-primary);
}

/* ===== CONTACT FORM ===== */
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--border-radius);
  padding: 40px 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg-alt);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.25s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
  background: var(--color-surface-light);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  color: var(--color-text-secondary);
  padding: 6px 14px;
  margin-right: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-message {
  display: none;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-primary-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.form-message.show {
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  max-width: 1000px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  text-align: center;
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* ===== PRIVACY ACCEPT BUTTON ===== */
.privacy-accept-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 16px 24px 24px;
  background: linear-gradient(to top, var(--color-bg) 60%, transparent);
  display: flex;
  justify-content: center;
}

.privacy-accept-btn.hidden {
  display: none;
}

.accept-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-btn-gradient-start), var(--color-btn-gradient-end));
  color: #181613;
  text-align: center;
  line-height: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(15, 13, 11, 0.97);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

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

  .nav-hamburger {
    display: flex;
  }

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

  .hero h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .section {
    padding: 56px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .highlight-row,
  .highlight-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .highlight-visual {
    flex: none;
    width: 140px;
    height: 140px;
    font-size: 48px;
    margin: 0 auto;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .contact-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Subtle floating particles decoration */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
