/* ============================================
   LUXURY TICKET CLOSERSHIP — Design System
   Color Palette: Dark Navy + Gold
   ============================================ */

:root {
  --navy-deep:   #060e1f;
  --navy:        #0a1628;
  --navy-mid:    #0f2040;
  --navy-light:  #1a3260;
  --navy-card:   #0d1e38;
  --navy-border: #1e3558;

  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-bright: #f5d97e;
  --gold-dark:   #9a7d32;
  --gold-muted:  rgba(201,168,76,0.15);

  --white:       #f7f4ee;
  --text:        #e8e4dc;
  --text-dim:    #8ca0c0;
  --text-faint:  #4e6280;

  --red:         #c1272d;
  --green:       #2a9d68;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -1px;
}
h2 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.5px;
}
h3 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
}
p  { font-size: 17px; color: var(--text-dim); }

/* ---- Cinzel for prestige labels ---- */
.section-label,
.pre-headline,
.topbar,
.tier-num,
.article-meta,
.as-seen-label,
.breadcrumb,
.footer-col-title {
  font-family: 'Cinzel', serif !important;
  letter-spacing: 3px;
}
.section-label { font-size: 11px; letter-spacing: 4px; }
.pre-headline  { font-size: 12px; letter-spacing: 4px; }

.gold  { color: var(--gold); }
.white { color: var(--white); }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ---- Top Bar ---- */
.topbar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--navy-deep);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---- Navigation ---- */
nav {
  background: rgba(6,14,31,0.96);
  border-bottom: 1px solid var(--navy-border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.logo {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 4px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.logo span { color: var(--white); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; }
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-deep); padding: 16px 24px; border-bottom: 1px solid var(--navy-border); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--navy-border); }
  .nav-toggle { display: block; }
}

/* ---- Hero ---- */
.hero {
  padding: 72px 0 56px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 65%),
              linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.pre-headline {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 24px; color: var(--white); }
.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 780px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--white); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--navy-deep);
  padding: 18px 48px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(201,168,76,0.55);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--gold-muted); transform: translateY(-2px); }
.cta-meta { margin-top: 14px; color: var(--text-faint); font-size: 13px; }
.cta-meta strong { color: var(--gold); }

/* ---- VSL ---- */
.vsl-wrapper { max-width: 900px; margin: 0 auto 44px; }
.vsl-frame {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 4px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(201,168,76,0.2), 0 0 0 1px rgba(201,168,76,0.25);
}
.vsl {
  aspect-ratio: 16/9;
  background: var(--navy-deep);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vsl-thumb {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.12), transparent 60%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px;
}
.play-btn {
  width: 90px; height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(201,168,76,0.6);
  animation: pulse 2s infinite;
  z-index: 2;
  transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.08); }
.play-btn::after {
  content: '';
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--navy-deep);
  margin-left: 5px;
}
.vsl-label { color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 3px; z-index: 2; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 60px rgba(201,168,76,0.6); }
  50%      { box-shadow: 0 0 90px rgba(201,168,76,0.9); }
}

/* ---- Section Labels ---- */
.section-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
.section-title { text-align: center; color: var(--white); margin-bottom: 16px; }
.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 17px;
}

/* ---- Divider ---- */
.divider { border: none; border-top: 1px solid var(--navy-border); margin: 0; }

/* ---- Stats bar ---- */
.stats-bar {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label { color: var(--text-dim); margin-top: 10px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }

/* ---- Feature Cards ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(201,168,76,0.1); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  color: var(--navy-deep); font-weight: 900;
  font-family: 'Cormorant Garamond', serif;
}
.card h3 { color: var(--white); margin-bottom: 12px; font-size: 19px; }
.card p { font-size: 15px; }

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute; top: -12px; left: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; color: var(--gold); line-height: 1; opacity: 0.6;
}
.t-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.t-quote { font-size: 16px; color: var(--text); margin-bottom: 18px; line-height: 1.7; }
.t-result {
  background: rgba(201,168,76,0.1);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--gold);
  font-size: 14px;
  border-radius: 0 6px 6px 0;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep); font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 15px; color: var(--white); }
.t-title { color: var(--text-dim); font-size: 13px; }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(201,168,76,0.4); }
.faq-item.open { border-color: var(--gold); }
.faq-q {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  user-select: none;
}
.faq-icon { color: var(--gold); font-size: 22px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-body { max-height: 400px; }
.faq-body-inner { padding: 0 26px 22px; color: var(--text-dim); font-size: 16px; line-height: 1.75; }

/* ---- Framework / LTC Method ---- */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.framework-card {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-card) 100%);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}
.framework-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.framework-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.framework-card h3 { color: var(--white); margin-bottom: 14px; font-size: 20px; }
.framework-card p { font-size: 15px; }

/* ---- As Seen On ---- */
.as-seen {
  padding: 44px 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.as-seen-label {
  text-align: center;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.as-seen-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.45;
}
.as-seen-logos span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ---- Pain Points ---- */
.pain-list { max-width: 800px; margin: 0 auto; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--navy-border);
}
.pain-icon {
  width: 36px; height: 36px;
  background: rgba(193,39,45,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #e05560;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}
.pain-text { font-size: 16px; color: var(--text); padding-top: 6px; }
.pain-text strong { color: var(--white); }

/* ---- Final CTA section ---- */
.cta-section {
  text-align: center;
  padding: 100px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
              linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
}
.urgency-box {
  display: inline-block;
  background: rgba(193,39,45,0.12);
  border: 1px solid rgba(193,39,45,0.5);
  border-radius: 8px;
  padding: 12px 24px;
  color: #ff7070;
  font-size: 13px;
  font-weight: 600;
  margin-top: 28px;
}

/* ---- Article / Blog ---- */
.article-header {
  padding: 64px 0 40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07), transparent 60%),
              linear-gradient(180deg, var(--navy-deep), var(--navy));
  text-align: center;
}
.article-meta { color: var(--text-faint); font-size: 13px; margin-top: 16px; }
.article-meta span { color: var(--gold); }
.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px;
}
.article-body h2 { color: var(--white); font-size: 28px; margin: 48px 0 18px; }
.article-body h3 { color: var(--gold); font-size: 20px; margin: 36px 0 14px; }
.article-body p  { font-size: 17px; color: var(--text-dim); margin-bottom: 20px; line-height: 1.8; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { color: var(--text-dim); font-size: 16px; line-height: 1.8; margin-bottom: 8px; }
.article-body li strong { color: var(--white); }
.article-body .highlight-box {
  background: var(--gold-muted);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 17px;
  color: var(--text);
}
.article-body .highlight-box strong { color: var(--gold-light); }

/* ---- Blog Cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(201,168,76,0.1); }
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 24px; }
.blog-card-tag { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.blog-card-title { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.blog-card-excerpt { color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.blog-card-footer { padding: 0 24px 20px; display: flex; justify-content: space-between; align-items: center; }
.blog-card-date { color: var(--text-faint); font-size: 12px; }
.blog-card-read { color: var(--gold); font-size: 13px; font-weight: 600; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 12px 0;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--navy-border);
}
.breadcrumb a { color: var(--text-faint); font-size: 13px; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-faint); font-size: 13px; margin: 0 8px; }
.breadcrumb .current { color: var(--text-dim); font-size: 13px; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 64px 0 56px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07), transparent 60%),
              linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { max-width: 680px; margin: 0 auto; font-size: 18px; }

/* ---- Mentor / About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-card));
  border-radius: 18px;
  border: 1px solid var(--navy-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-placeholder {
  color: var(--text-faint);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.credentials { list-style: none; margin: 24px 0; }
.credentials li {
  padding: 11px 0 11px 34px;
  position: relative;
  color: var(--text-dim);
  font-size: 16px;
  border-bottom: 1px solid var(--navy-border);
}
.credentials li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ---- Comparison Table ---- */
.compare-table { width: 100%; border-collapse: collapse; margin: 40px 0; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--navy-border); font-size: 15px; }
.compare-table th { background: var(--navy-mid); color: var(--gold); font-weight: 700; font-family: 'DM Sans', sans-serif; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.compare-table tr:hover td { background: rgba(201,168,76,0.03); }
.compare-table td:first-child { color: var(--white); font-weight: 600; }
.compare-table .check { color: var(--gold); font-weight: 700; font-size: 17px; }
.compare-table .cross { color: #e05560; font-size: 17px; }
.compare-table .ltc-row td { background: rgba(201,168,76,0.06); }
.compare-table .ltc-row td:first-child { color: var(--gold-light); }

/* ---- Sticky CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 500;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.sticky-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,168,76,0.65); }

/* ---- Footer ---- */
footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.footer-brand-name span { color: var(--white); }
.footer-brand-desc { color: var(--text-faint); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.footer-col-title { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-faint); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { color: var(--text-faint); font-size: 12px; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: var(--text-faint); font-size: 12px; text-decoration: none; }
.footer-legal-links a:hover { color: var(--gold); }
.footer-disclaimer {
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.75;
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-40 { margin-bottom: 40px; }
.bg-deep  { background: var(--navy-deep); border-top: 1px solid var(--navy-border); border-bottom: 1px solid var(--navy-border); }
.bg-mid   { background: var(--navy-mid); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .stat-num { font-size: 38px; }
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  .btn-primary { padding: 16px 32px; font-size: 15px; }
  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 13px; }
}

/* ============================================
   MOTION GRAPHICS & ANIMATIONS
   ============================================ */

/* ── Scroll Reveal ── */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* stagger siblings */
.cards-grid   .reveal-init:nth-child(2),
.features     .reveal-init:nth-child(2),
.team-grid    .reveal-init:nth-child(2),
.pricing-grid .reveal-init:nth-child(2),
.blog-grid    .reveal-init:nth-child(2),
.framework-grid .reveal-init:nth-child(2) { transition-delay: 0.1s; }

.cards-grid   .reveal-init:nth-child(3),
.features     .reveal-init:nth-child(3),
.team-grid    .reveal-init:nth-child(3),
.pricing-grid .reveal-init:nth-child(3),
.blog-grid    .reveal-init:nth-child(3),
.framework-grid .reveal-init:nth-child(3) { transition-delay: 0.2s; }

/* ── Animated background orbs ── */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}
.bg-orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; left: -80px;
}
.bg-orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(26,50,96,0.6) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  animation-delay: -6s;
  animation-duration: 16s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-20px, 15px) scale(0.97); }
}

/* ── Button shimmer sweep ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.btn-primary:hover::after {
  left: 150%;
  transition: left 0.55s ease;
}

/* ── Button ripple ── */
.btn-ripple {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleOut 0.65s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleOut {
  to { transform: translate(-50%, -50%) scale(28); opacity: 0; }
}

/* ── Nav scroll shrink ── */
nav.nav-scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  background: rgba(6,14,31,0.99);
}

/* ── Gold border glow on hover for cards ── */
.card:hover,
.team-card:hover,
.price-card:hover,
.blog-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.4),
              0 0 0 1px rgba(201,168,76,0.2),
              0 0 24px rgba(201,168,76,0.06);
}

/* ── Sticky CTA pulse ── */
.sticky-cta {
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(201,168,76,0.5); }
  50%     { box-shadow: 0 12px 48px rgba(201,168,76,0.8), 0 0 0 6px rgba(201,168,76,0.1); }
}

/* ── Stats bar counter ── */
.stat-num {
  transition: color 0.3s;
}

/* ── Topbar shimmer ── */
.topbar {
  background-size: 200% 100%;
  animation: topbarShimmer 4s linear infinite;
}
@keyframes topbarShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ── Gold line animated width ── */
.gold-line {
  animation: lineGrow 1s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 56px; }
}

/* ── Particles canvas ── */
.particles-canvas {
  pointer-events: none;
}

/* ── Hero h1 text reveal ── */
.hero h1, .page-hero h1, .f-hero h1 {
  animation: heroReveal 0.9s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
@keyframes heroReveal {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── Hero sub fade ── */
.hero-sub, .hero p {
  animation: heroReveal 0.9s cubic-bezier(0.22,1,0.36,1) 0.25s both;
}

/* ── Pre-headline slide ── */
.pre-headline {
  animation: slideIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes slideIn {
  from { opacity:0; transform:translateX(-16px); }
  to   { opacity:1; transform:translateX(0); }
}

/* ── VSL frame glow pulse ── */
.vsl-frame, .f-vsl-frame {
  animation: framePulse 3s ease-in-out infinite;
}
@keyframes framePulse {
  0%,100% { box-shadow: 0 30px 80px rgba(201,168,76,0.2), 0 0 0 1px rgba(201,168,76,0.25); }
  50%     { box-shadow: 0 30px 100px rgba(201,168,76,0.32), 0 0 0 1px rgba(201,168,76,0.4); }
}

/* ── Section titles fade up ── */
.section-title, .section-sub, .section-label {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-title.revealed,
.section-sub.revealed,
.section-label.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Smooth image zoom on card hover ── */
.team-card img, .blog-card-img img {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.team-card:hover img {
  transform: scale(1.04);
}

/* ── Nav CTA heartbeat ── */
.nav-cta {
  animation: navCtaGlow 2.5s ease-in-out infinite;
}
@keyframes navCtaGlow {
  0%,100% { box-shadow: none; }
  50%     { box-shadow: 0 0 12px rgba(201,168,76,0.5); }
}
