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

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 3.9%;
  --primary: 0 0% 9%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 96.1%;
  --secondary-foreground: 0 0% 9%;
  --muted: 0 0% 96.1%;
  --muted-foreground: 0 0% 45.1%;
  --accent: 0 0% 96.1%;
  --accent-foreground: 0 0% 9%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 89.8%;
  --input: 0 0% 89.8%;
  --ring: 0 0% 3.9%;
  --chart-1: 12 76% 61%;
  --chart-2: 173 58% 39%;
  --chart-3: 197 37% 24%;
  --chart-4: 43 74% 66%;
  --chart-5: 27 87% 67%;
  --radius: 0.5rem;
  --font-heading: ui-sans-serif, system-ui, sans-serif;
  --font-body: ui-sans-serif, system-ui, sans-serif;
  --font-display: ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sidebar-background: 0 0% 98%;
  --sidebar-foreground: 240 5.3% 26.1%;
  --sidebar-primary: 240 5.9% 10%;
  --sidebar-primary-foreground: 0 0% 98%;
  --sidebar-accent: 240 4.8% 95.9%;
  --sidebar-accent-foreground: 240 5.9% 10%;
  --sidebar-border: 220 13% 91%;
  --sidebar-ring: 217.2 91.2% 59.8%;
  --soar-gold: 46 35% 62%;
  --soar-green: 85 18% 42%;
  --soar-slate: 120 8% 34%;
}

.dark {
  --background: 0 0% 3.9%;
  --foreground: 0 0% 98%;
  --card: 0 0% 3.9%;
  --card-foreground: 0 0% 98%;
  --popover: 0 0% 3.9%;
  --popover-foreground: 0 0% 98%;
  --primary: 0 0% 98%;
  --primary-foreground: 0 0% 9%;
  --secondary: 0 0% 14.9%;
  --secondary-foreground: 0 0% 98%;
  --muted: 0 0% 14.9%;
  --muted-foreground: 0 0% 63.9%;
  --accent: 0 0% 14.9%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 14.9%;
  --input: 0 0% 14.9%;
  --ring: 0 0% 83.1%;
  --chart-1: 220 70% 50%;
  --chart-2: 160 60% 45%;
  --chart-3: 30 80% 55%;
  --chart-4: 280 65% 60%;
  --chart-5: 340 75% 55%;
  --sidebar-background: 240 5.9% 10%;
  --sidebar-foreground: 240 4.8% 95.9%;
  --sidebar-primary: 224.3 76.3% 48%;
  --sidebar-primary-foreground: 0 0% 100%;
  --sidebar-accent: 240 3.7% 15.9%;
  --sidebar-accent-foreground: 240 4.8% 95.9%;
  --sidebar-border: 240 3.7% 15.9%;
  --sidebar-ring: 217.2 91.2% 59.8%;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

@layer base {
  * {
    border-color: hsl(var(--border));
    outline-color: hsl(var(--ring));
  }

  body {
    font-family: var(--font-body);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    scroll-behavior: smooth;
  }
}

body.dark {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.container {
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

header.scrolled {
  background: rgba(12, 14, 19, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(210, 197, 139, 0.15);
}

header.scrolled .btn-full {
  color: #0c0e13;
}

main {
  padding-top: 0;
}

/* Keep the header visually clear over the hero but readable,
   and move page content below the fixed header after the hero. */
header {
  background: transparent;
}

/* When header is not scrolled (over the hero) make nav items
   stand out slightly against the background image. */
header:not(.scrolled) .nav-links a {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(12,14,19,0.55);
}

header:not(.scrolled) .brand {
  color: #d2c58b;
  text-shadow: 0 2px 8px rgba(12,14,19,0.45);
}

/* Ensure subsequent sections are offset so the fixed header doesn't
   overlap content once the hero is scrolled past. */
.section:not(#hero) {
  padding-top: calc(5rem + 92px);
    padding-bottom: calc(5rem + 92px);
}

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

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  color: #d2c58b;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8b906c;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #d2c58b;
}

.menu-button {
  display: none;
  background: none;
  border: none;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-button span {
  width: 26px;
  height: 3px;
  background: #d2c58b;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
  display: none;
  background: #0c0e13;
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  color: #8b906c;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
}

.section {
  position: relative;
  overflow: hidden;
}

/* Vertically center each section's content */
.section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section > .container {
  width: 100%;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(210, 197, 139, 0.1), transparent 28%), radial-gradient(circle at bottom right, rgba(139, 144, 108, 0.12), transparent 25%);
  pointer-events: none;
}

.hero-section, .page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-background,
.hero-background-dark {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-background img,
.hero-background-dark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay,
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 14, 19, 0.55) 0%, rgba(12, 14, 19, 0.92) 100%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 0 2rem;
}

.hero-content p,
.page-hero-content p {
  margin: 0 auto 1.25rem;
  max-width: 720px;
  color: #cbd5e1;
}

.hero-content h1,
.page-hero-content h1 {
  margin: 0 0 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.05;
  font-size: clamp(2.75rem, 4vw, 5.5rem);
  color: #f8fafd;
}

.hero-top-label,
.section-top-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #d2c58b;
  align-items: center;
  display: inline-flex;
  text-align: center;
}

.hero-buttons,
.hero-cta-buttons,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.gold-rule {
  width: 64px;
  height: 1px;
  background: #d2c58b;
  margin: 1.75rem auto;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  margin: 0;
  color: #f8fafd;
}

.section-subtitle {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #cbd5e1;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
  overflow: hidden;
  background: hsla(var(--card), 0.06);
  border: 1px solid hsla(var(--border), 0.18);
}

.card-light {
  background: hsla(var(--card), 0.08);
}

.card-dark {
  background: hsla(var(--card), 0.05);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(210, 197, 139, 0.28);
  background: rgba(210, 197, 139, 0.14);
  color: #d2c58b;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.85rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #f8fafd;
}

.card p {
  margin: 0;
  color: #8b906c;
  line-height: 1.75;
}

.feature-list,
.timeline-list,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li,
.timeline-list li,
.faq-item {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  margin-bottom: 0.9rem;
  color: #cbd5e1;
}

.feature-list li strong,
.timeline-list li strong {
  color: #d2c58b;
  min-width: 1.5rem;
  display: inline-flex;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 3rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(210,197,139,0.25);
}

.timeline-list li {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 1.5rem;
}

.timeline-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #0c0e13;
  border: 2px solid #d2c58b;
  color: #d2c58b;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
}

.timeline-list li h3 {
  margin: 0 0 0.3rem;
  color: #f8fafd;
  font-size: 1.1rem;
}

.timeline-list li p {
  margin: 0;
  color: #cbd5e1;
}

.section-dark {
  background: #0c0e13;
}

.section-darker {
  background: #1d2224;
}

.section-soft {
  background: #0c0e13;
}

.cta-panel {
  padding: 3rem 2rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(210,197,139,0.18);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.pricing-card {
  padding: 2.25rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(210,197,139,0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}

.pricing-card p {
  margin: 0.75rem 0 0;
}

.pricing-card strong {
  display: block;
  font-size: 3rem;
  color: #d2c58b;
  font-weight: 300;
  margin: 0.25rem 0 0.25rem;
}

.pricing-card small {
  color: #8b906c;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(210,197,139,0.2);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  background: rgba(210,197,139,0.04);
  border: none;
  color: #f8fafd;
  text-align: center;
  padding: 1.25rem 1.25rem;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 1rem 1.25rem 1.5rem;
  color: #8b906c;
  background: rgba(255,255,255,0.02);
}

.faq-answer.active {
  display: block;
}

.footer {
  padding: 3rem 0 3.5rem;
  background: #0c0e13;
  border-top: 1px solid rgba(210,197,139,0.12);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.footer-note {
  text-align: center;
  color: #596152;
}

.footer-note p {
  margin: 0.75rem 0 0;
  font-size: 0.84rem;
}

.btn,
.btn-full,
.btn-outline,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 1rem 1.7rem;
  min-height: 3.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.btn-full {
  background: linear-gradient(135deg, hsl(var(--soar-gold)) 0%, #b8962e 100%);
  color: hsl(0 0% 9%);
  border: 1px solid transparent;
}

.btn-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(210,197,139,0.28);
}

.btn-outline,
.btn-outline-light {
  background: transparent;
  color: hsl(var(--soar-gold));
  border: 1px solid hsla(var(--soar-gold) / 0.45);
}

.btn-outline:hover,
.btn-outline-light:hover {
  background: hsla(var(--soar-gold) / 0.12);
}

.gold-text {
  background: linear-gradient(120deg, #d2c58b 0%, #e8c766 40%, #8b906c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 900px) {
  .card-grid-2,
  .card-grid-3,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Highlight the pricing card when it has the `recommended` class */
.pricing-card.recommended {
  border-color: rgba(210,197,139,0.18);
  background: linear-gradient(180deg, rgba(210,197,139,0.02), rgba(0,0,0,0.04));
  box-shadow: 0 12px 40px rgba(2,6,8,0.45);
}

/* Emphasize feature list and CTA */
.pricing-card .feature-list li {
  color: #cbd5e1;
}

.pricing-card .feature-list li strong {
  color: #d2c58b;
  min-width: 1.5rem;
}

.pricing-card .btn-full {
  width: 100%;
  margin-top: 1.5rem;
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: block;
  }

  .hero-section,
  .page-hero {
    padding: 6rem 0 3rem;
  }

  .hero-content h1,
  .page-hero-content h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 500px) {
  .hero-content,
  .page-hero-content {
    padding: 1rem 0;
  }

  .btn,
  .btn-full,
  .btn-outline,
  .btn-outline-light {
    width: 100%;
  }

  .hero-buttons,
  .hero-cta-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: block;
  }
}
