:root {
  --bg-primary: #08080c;
  --bg-secondary: #0f0f14;
  --bg-card: #131318;
  --text-primary: #f4f0e6;
  --text-secondary: #a8a29a;
  --text-muted: #6b6760;
  --accent: #c9a868;
  --accent-dim: rgba(201, 168, 104, 0.15);
  --accent-glow: rgba(201, 168, 104, 0.4);
}

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

html {
  font-size: 16px;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Manrope', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.frame-element {
  position: absolute;
  border: 1px solid rgba(201, 168, 104, 0.08);
}

.frame-1 {
  width: 600px;
  height: 400px;
  top: 10%;
  right: -200px;
  transform: rotate(-12deg);
}

.frame-2 {
  width: 400px;
  height: 280px;
  bottom: 20%;
  left: -100px;
  transform: rotate(8deg);
}

.frame-3 {
  width: 300px;
  height: 200px;
  top: 40%;
  right: 10%;
  transform: rotate(-5deg);
  border-color: rgba(201, 168, 104, 0.05);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 104, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 104, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: 20%;
}

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

.brand-mark {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.hero-headline .highlight {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.meta-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
}

/* Hero CTA */
.hero-cta {
  margin-top: 2.5rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* Features */
.features {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 104, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 10rem 2rem;
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 4rem;
  opacity: 0.6;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  line-height: 1.7;
}

.closing-details {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.detail-item {
  text-align: center;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.detail-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Footer */
.footer {
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem;
    min-height: 100svh;
  }

  .features {
    padding: 5rem 1.5rem;
  }

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

  .feature-card {
    padding: 2rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

  .closing-details {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   PRICING PAGE
   ───────────────────────────────────────────────────────────── */

/* Nav */
.pricing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-decoration: none;
}

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

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link--active {
  color: var(--text-primary);
}

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 168, 104, 0.35);
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #0a0a0a;
}

/* Pricing Hero */
.pricing-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10rem 2rem 6rem;
  overflow: hidden;
  text-align: center;
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ph-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ph-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(201, 168, 104, 0.07) 0%, transparent 70%);
}

.ph-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 10%;
  background: radial-gradient(circle, rgba(201, 168, 104, 0.04) 0%, transparent 70%);
}

.ph-frame {
  position: absolute;
  border: 1px solid rgba(201, 168, 104, 0.06);
}

.ph-frame-1 {
  width: 500px;
  height: 340px;
  top: 8%;
  right: -160px;
  transform: rotate(-10deg);
}

.ph-frame-2 {
  width: 320px;
  height: 220px;
  bottom: 15%;
  left: -80px;
  transform: rotate(7deg);
}

.pricing-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.pricing-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0.85;
}

.pricing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.pricing-headline-accent {
  color: var(--accent);
  font-style: italic;
}

.pricing-subhead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Section shared */
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}

/* Tier cards */
.tiers-section {
  padding: 2rem 2rem 7rem;
  background: var(--bg-primary);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 104, 0.15);
}

.tier-card--highlight {
  border-color: rgba(201, 168, 104, 0.3);
  background: linear-gradient(160deg, #16141a 0%, #131318 100%);
  /* Slight scale up to give visual hierarchy */
  transform: scale(1.02);
}

.tier-card--highlight:hover {
  transform: scale(1.02) translateY(-5px);
}

.tier-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.tier-header {
  margin-bottom: 1.5rem;
}

.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.tier-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tier-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.tier-amount--custom {
  font-size: 1.75rem;
  color: var(--accent);
}

.tier-unit {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tier-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.tier-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.tier-cta--primary {
  background: var(--accent);
  color: #0a0a0a;
}

.tier-cta--primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.tier-cta--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tier-cta--secondary:hover {
  border-color: rgba(201, 168, 104, 0.35);
  color: var(--accent);
  transform: translateY(-2px);
}

.tier-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 2rem 0;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tier-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.tier-feature--yes {
  color: var(--text-secondary);
}

.tier-feature--no {
  color: var(--text-muted);
  opacity: 0.55;
}

.feature-check {
  flex-shrink: 0;
  color: var(--accent);
}

.feature-x {
  flex-shrink: 0;
  color: var(--text-muted);
}

/* Comparison table */
.comparison-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.comparison-inner {
  max-width: 900px;
  margin: 0 auto;
}

.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.comp-th {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-th--feature {
  text-align: left;
  width: 40%;
}

.comp-th--pro {
  color: var(--accent);
  position: relative;
}

.comp-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.15s ease;
}

.comp-row--alt {
  background: rgba(255, 255, 255, 0.015);
}

.comp-row--price {
  border-top: 1px solid rgba(201, 168, 104, 0.12);
  margin-top: 0.5rem;
}

.comp-td {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.comp-td--label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.comp-td--center {
  text-align: center;
}

.comp-td--pro {
  background: rgba(201, 168, 104, 0.04);
}

.comp-check {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
}

.comp-dash {
  color: var(--text-muted);
  opacity: 0.4;
}

.comp-val {
  color: var(--text-primary);
  font-size: 0.875rem;
}

.comp-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.comp-price--accent {
  color: var(--accent);
}

/* Proof stats bar */
.proof-section {
  padding: 4rem 2rem;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 1rem 3rem;
}

.proof-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

/* FAQ */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-icon-v {
  transition: opacity 0.25s ease;
}

[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

[aria-expanded="true"] .faq-icon-v {
  opacity: 0;
}

.faq-answer {
  padding: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-answer[hidden] {
  display: none;
}

/* Pricing closing */
.pricing-closing {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--bg-primary);
}

.pricing-closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.pricing-closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.pricing-closing-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.closing-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.closing-secondary-btn {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.closing-secondary-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ─── Pricing responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .tiers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .tier-card--highlight {
    transform: none;
    order: -1;
  }

  .tier-card--highlight:hover {
    transform: translateY(-5px);
  }

  .proof-inner {
    gap: 0;
  }

  .proof-stat {
    padding: 1rem 1.5rem;
  }

  .proof-divider {
    display: none;
  }

  .proof-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .pricing-nav {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-link {
    display: none;
  }

  .pricing-hero {
    padding: 8rem 1.5rem 4rem;
    min-height: auto;
  }

  .tiers-section {
    padding: 1.5rem 1.25rem 5rem;
  }

  .tier-card {
    padding: 2rem 1.5rem;
  }

  .comparison-section,
  .faq-section {
    padding: 4rem 1.25rem;
  }

  .faq-question {
    font-size: 0.9375rem;
  }

  .proof-inner {
    grid-template-columns: 1fr 1fr;
  }
}