:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #121212;
  --gold-primary: #D4AF37;
  --gold-light: #F4D47A;
  --gold-dark: #8B6F2E;
  --text-primary: #FFFFFF;
  --text-secondary: #A8A8A8;
  --border-subtle: rgba(212, 175, 55, 0.2);
  --border-hover: rgba(212, 175, 55, 0.45);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

::selection { background: var(--gold-primary); color: #000; }

.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; letter-spacing: -0.01em; }
.font-sans  { font-family: 'Manrope', system-ui, sans-serif; }

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 55%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.radial-bg {
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, rgba(10, 10, 10, 0) 55%), var(--bg-primary);
}

.radial-bg-secondary {
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.04) 0%, rgba(10, 10, 10, 0) 55%), var(--bg-secondary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background-color 300ms ease, backdrop-filter 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 200ms ease;
  position: relative;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--text-primary); }
.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 200ms ease, box-shadow 300ms ease, background 300ms ease, border-color 200ms ease, color 200ms ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.btn-primary:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 3px; }
.btn-secondary:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.22),
    0 0 24px rgba(184, 134, 11, 0.14),
    0 0 40px rgba(139, 111, 46, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.5);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 16px rgba(212, 175, 55, 0.32),
    0 0 32px rgba(184, 134, 11, 0.2),
    0 0 52px rgba(139, 111, 46, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.55);
}
.btn-primary--hero {
  box-shadow:
    0 0 18px rgba(212, 175, 55, 0.38),
    0 0 36px rgba(184, 134, 11, 0.24),
    0 0 58px rgba(139, 111, 46, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.5);
}
.btn-primary--hero:hover {
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.5),
    0 0 46px rgba(184, 134, 11, 0.32),
    0 0 72px rgba(139, 111, 46, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.55);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary--large { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

.btn-secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}
.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.header-cta {
  padding: 0.48rem 0.96rem;
  font-size: 0.68rem;
  gap: 0.4rem;
}
.header-cta .app-store-icon { width: 14px; height: 14px; }

.mockup-glow {
  filter:
    drop-shadow(0 0 20px rgba(212, 175, 55, 0.22))
    drop-shadow(0 0 44px rgba(212, 175, 55, 0.12))
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}
.mockup-tilt-left  { transform: rotate(-4deg); }
.mockup-tilt-right { transform: rotate(4deg); }

.accordion {
  border-top: 1px solid var(--border-subtle);
}
.accordion:last-child { border-bottom: 1px solid var(--border-subtle); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.35rem 0;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease;
}
.accordion-trigger:hover { color: var(--gold-light); }
.accordion-trigger:focus-visible { outline: 2px solid var(--gold-primary); outline-offset: 4px; border-radius: 4px; }
.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--gold-primary);
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, opacity 300ms ease, padding 300ms ease;
  opacity: 0;
}
.accordion-panel[data-open="true"] {
  max-height: 2000px;
  opacity: 1;
  padding-bottom: 1.6rem;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateY(-100%);
  transition: transform 350ms ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { transform: translateY(0); }
body.menu-open { overflow: hidden; }

.mobile-menu-body {
  flex: 1;
  padding: 8px 24px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-link {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: color 200ms ease;
}
.mobile-menu-link:hover,
.mobile-menu-link:focus-visible { color: var(--gold-light); outline: none; }
.mobile-menu-link[aria-current="page"] { color: var(--gold-light); }
.mobile-menu-link--child {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 24px;
}
.mobile-menu-link--child:hover,
.mobile-menu-link--child:focus-visible { color: var(--gold-light); }
.mobile-menu-footer {
  padding: 18px 24px calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(10, 10, 10, 0.98);
}
.mobile-menu-footer .btn { width: 100%; }
.mobile-menu-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 14px;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.16));
}
@media (max-width: 767px) {
  .logo-img { height: 36px; }
}
.logo-mqb {
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.18));
}

footer.site-footer {
  background: #0A0A0A;
  border-top: none;
  padding-top: 40px;
}
@media (min-width: 768px) {
  footer.site-footer { padding-top: 56px; }
}
.bg-image-fade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.95) 100%);
  pointer-events: none;
}

.app-store-icon { width: 18px; height: 18px; }

.footer-link {
  color: var(--text-secondary);
  transition: color 200ms ease;
  font-size: 0.9rem;
}
.footer-link:hover { color: var(--gold-light); }

@media (max-width: 767px) {
  .hero-section-top { padding-top: 4rem; }
}

.hero-credibility {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
}

.hero-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #9A7B3C;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-eyebrow { text-align: left; }
}

.hero-mockup-mobile {
  width: 100%;
  max-width: 260px;
  height: auto;
  transform: rotate(3deg);
}


.legal-prose h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1.6rem;
  line-height: 1.25;
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.005em;
}
.legal-prose h2:first-child { margin-top: 0.5rem; }
.legal-prose p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.legal-prose strong { color: var(--text-primary); font-weight: 600; }
.legal-prose ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}
.legal-prose ul li {
  line-height: 1.65;
  margin-bottom: 0.4rem;
}
.legal-prose ul li::marker { color: var(--gold-dark); }
.legal-prose a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.4);
  text-underline-offset: 3px;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
.legal-prose a:hover {
  color: var(--gold-primary);
  text-decoration-color: var(--gold-primary);
}
.legal-prose ul.legal-contact { list-style: none; padding-left: 0; }
.legal-prose ul.legal-contact li { margin-bottom: 0.35rem; }
@media (min-width: 768px) {
  .legal-prose h2 { font-size: 1.85rem; }
}

.cta-microcopy {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

