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

:root {
  --navy-deep:   #04070e;
  --navy:        #060a13;
  --navy-mid:    #0b1222;
  --navy-light:  #101a2e;
  --navy-card:   #080d1a;
  --navy-border: #1a2440;

  --gold:        #d4af37;
  --gold-light:  #e8c76a;
  --gold-bright: #f5e6a8;
  --gold-dark:   #c8962e;
  --gold-deep:   #8b6914;
  --gold-muted:  rgba(212,175,55,0.15);
  /* realistic metallic gold sweep — matches LTC funnel */
  --grad-gold:   linear-gradient(135deg, #f5e6a8 0%, #e8c76a 22%, #d4af37 48%, #c8962e 72%, #e8c76a 100%);
  --grad-gold-soft: linear-gradient(135deg, #e8c76a 0%, #d4af37 50%, #c8962e 100%);

  --white:       #f5f1e8;
  --text:        #f5f1e8;
  --text-dim:    #8a93a6;
  --text-faint:  #5a6480;

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', 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: 1600px; margin: 0 auto; padding: 0 96px; }
@media (max-width: 1100px){ .container { padding: 0 48px; } }
@media (max-width: 680px){ .container { padding: 0 22px; } }
section { padding: 104px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ---- Top Bar ---- */
.topbar {
  background: linear-gradient(90deg, #c8962e, #f5e6a8 50%, #c8962e);
  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,10,19,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; padding: 8px; border-radius: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); margin: 6px 0; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease; transform-origin: center; }
/* hamburger morphs into an X when the menu is open */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
/* dim backdrop behind the popped-up menu */
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(4,9,20,0.55);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 190;
}
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  /* popped-up floating vertical list, anchored under the hamburger */
  .nav-links {
    display: none; flex-direction: column; gap: 4px;
    position: absolute; top: calc(100% + 10px); right: 16px; left: auto;
    width: min(300px, 82vw);
    background: var(--navy-card); border: 1px solid rgba(212,175,55,0.30);
    border-radius: 16px; padding: 10px; z-index: 300;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  }
  .nav-links.open { display: flex; animation: navPop 0.24s cubic-bezier(0.22,1,0.36,1); transform-origin: top right; }
  @keyframes navPop { from { opacity: 0; transform: scale(0.92) translateY(-8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; text-align: center; padding: 14px 12px; border-radius: 10px;
    font-size: 16px; color: var(--text-dim); transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover, .nav-links a:active { background: rgba(212,175,55,0.08); }
  /* current page: highlighted text */
  .nav-links a.active { color: var(--gold); font-weight: 700; background: rgba(212,175,55,0.10); }
  /* Get Certified stays a solid gold button at the bottom of the list */
  .nav-links .nav-cta { margin-top: 6px; }
  .nav-toggle { display: block; }
}

/* ---- Hero ---- */
.hero {
  padding: 72px 0 56px;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,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(212,175,55,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, #f5e6a8 0%, #e8c76a 22%, #d4af37 48%, #c8962e 72%, #e8c76a 100%);
  background-size: 200% 100%;
  color: #1a1205;
  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(212,175,55,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(212,175,55,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(212,175,55,0.2), 0 0 0 1px rgba(212,175,55,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(212,175,55,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(212,175,55,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(212,175,55,0.6); }
  50%      { box-shadow: 0 0 90px rgba(212,175,55,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(212,175,55,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(212,175,55,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(212,175,55,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(212,175,55,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(212,175,55,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(212,175,55,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(212,175,55,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: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', sans-serif; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.compare-table tr:hover td { background: rgba(212,175,55,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(212,175,55,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(212,175,55,0.5);
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.sticky-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(212,175,55,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(212,175,55,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,10,19,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(212,175,55,0.2),
              0 0 24px rgba(212,175,55,0.06);
}

/* ── Sticky CTA pulse ── */
.sticky-cta {
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(212,175,55,0.5); }
  50%     { box-shadow: 0 12px 48px rgba(212,175,55,0.8), 0 0 0 6px rgba(212,175,55,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(212,175,55,0.2), 0 0 0 1px rgba(212,175,55,0.25); }
  50%     { box-shadow: 0 30px 100px rgba(212,175,55,0.32), 0 0 0 1px rgba(212,175,55,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(212,175,55,0.5); }
}

/* ============================================
   REALISTIC GOLD REVAMP — aligned to LTC funnel
   ============================================ */

/* Shiny metallic gold numbers + accent words */
.stat-num, .f-stat-num, .price-amount {
  background: linear-gradient(135deg, #f5e6a8 0%, #e8c76a 30%, #d4af37 55%, #c8962e 80%, #f0d488 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-bright); /* fallback */
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.35));
}

/* Richer gold accent text — subtle metallic */
.gold {
  color: var(--gold-light);
}

/* Upgrade all old pale-gold glow shadows to richer gold */
.btn-primary { box-shadow: 0 12px 40px rgba(212,175,55,0.45); }
.btn-primary:hover { box-shadow: 0 18px 56px rgba(212,175,55,0.65); }
.nav-cta:hover { box-shadow: 0 0 30px -5px var(--gold); }
.sticky-cta { box-shadow: 0 8px 32px rgba(212,175,55,0.55); }

/* Gold ring / border helpers richer */
.card:hover, .team-card:hover, .price-card:hover, .blog-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.45),
              0 0 0 1px rgba(212,175,55,0.35),
              0 0 28px rgba(212,175,55,0.10);
}

/* Logo + section labels — warmer metallic gold */
.logo, .section-label, .pre-headline { color: var(--gold-light); }
.logo span { color: var(--white); }

/* Gold divider lines + framework letters get the metallic sheen */
.framework-letter {
  background: linear-gradient(135deg, #f5e6a8 0%, #e8c76a 35%, #d4af37 65%, #c8962e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.4));
}

/* Card icons — metallic gold tiles */
.feature-icon, .t-avatar, .author-avatar {
  background: linear-gradient(135deg, #c9ab63 0%, #b3924a 50%, #93752f 100%) !important;
  box-shadow: none;
}

/* ============================================
   LTC SHIELD LOGO + FOOTER BRAND BAND
   (aligned to Lovable funnel)
   ============================================ */
.logo-shield {
  height: 46px !important;
  max-height: 46px;
  width: auto !important;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(212,175,55,0.45));
  transition: transform 0.3s ease;
}
nav .logo img { height: 46px; width: auto; }
.logo:hover .logo-shield { transform: scale(1.06); }
@media (max-width: 600px) { .logo-shield { height: 40px; } }

/* Footer brand band */
.brand-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  background: #0d1422;
}
.brand-band::before {
  content: '';
  position: absolute; inset: 0;
  width: 33%;
  background: linear-gradient(90deg, transparent, rgba(245,230,168,0.14), transparent);
  animation: brandSweep 6s linear infinite;
  pointer-events: none;
}
@keyframes brandSweep { from { transform: translateX(-120%);} to { transform: translateX(420%);} }
.brand-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding: 18px 24px;
  position: relative; z-index: 2;
}
@media (max-width: 820px) { .brand-band-inner { flex-direction: column; gap: 16px; } }
.brand-band-left { display: flex; align-items: center; gap: 12px; }
.brand-band-left img { height: 38px; width: auto; filter: drop-shadow(0 2px 10px rgba(212,175,55,0.5)); }
.brand-wordmark {
  font-family: 'Cinzel', serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.brand-wordmark sup { font-size: 0.6em; margin-left: 2px; }
.brand-band-center { display: flex; flex: 1; align-items: center; justify-content: center; gap: 14px; }
.brand-divider {
  height: 1px; flex: 1; max-width: 180px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.65), transparent);
}
@media (max-width: 820px) { .brand-divider { display: none; } }
.brand-diamond {
  width: 6px; height: 6px; transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 8px rgba(245,230,168,0.6);
  flex-shrink: 0;
}
.brand-tagline {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 0.28em;
  color: var(--gold-light); white-space: nowrap;
}
.brand-band-right { display: flex; align-items: center; gap: 10px; }
.brand-social {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(17,26,46,0.5);
  color: var(--text-dim);
  transition: all 0.25s ease;
  text-decoration: none;
}
.brand-social:hover {
  transform: scale(1.12);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px -5px var(--gold);
}
.brand-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================
   ENTERPRISE CERTIFICATION · SNEAK PEEK (LOCKED)
   ============================================ */
.enterprise-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, #05080f 100%);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.ent-wrap {
  position: relative;
  max-width: 1000px;
  margin: 52px auto 0;
}
/* Coming Soon ribbon (corner) */
.ent-ribbon {
  position: absolute;
  top: 20px; right: -46px;
  transform: rotate(45deg);
  z-index: 6;
  background: linear-gradient(90deg, #c8962e, #f5e6a8 50%, #c8962e);
  color: #1a1205;
  font-family: 'Cinzel', serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 8px 60px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}
/* Frosted, luxurious black-gold table */
.ent-table {
  position: relative;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,175,55,0.06), transparent 55%),
    linear-gradient(160deg, #14100a 0%, #0a0a0a 100%);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(212,175,55,0.08);
}
/* gold shimmer sweep across the whole band */
.ent-table::before {
  content: '';
  position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,230,168,0.10), transparent);
  animation: entSweep 6s linear infinite;
  z-index: 4; pointer-events: none;
}
@keyframes entSweep { from { left: -40%; } to { left: 120%; } }

.ent-head {
  padding: 26px 30px;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  background: linear-gradient(90deg, rgba(212,175,55,0.08), transparent);
}
.ent-brand { display: flex; align-items: center; gap: 16px; }
.ent-brand-icon {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
  background: rgba(212,175,55,0.06);
}
.ent-brand-title {
  font-family: 'Cinzel', serif; color: var(--gold-light);
  font-size: 18px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.ent-brand-sub { color: var(--text-dim); font-size: 13px; letter-spacing: 1px; margin-top: 2px; }

.ent-cols {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1.2fr;
  gap: 16px;
  padding: 14px 30px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  background: rgba(212,175,55,0.05);
}
.ent-cols span {
  font-family: 'Cinzel', serif; color: var(--gold);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.ent-cols span:nth-child(2), .ent-cols span:nth-child(3) { text-align: center; }

.ent-row {
  position: relative;
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1.2fr;
  gap: 16px;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid rgba(212,175,55,0.14);
  transition: background 0.3s;
}
.ent-row:last-child { border-bottom: none; }
.ent-row:hover { background: rgba(212,175,55,0.04); }
.ent-prog { display: flex; align-items: flex-start; gap: 14px; }
.ent-prog-ico {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; background: rgba(0,0,0,0.3);
}
.ent-prog-name {
  font-family: 'Cormorant Garamond', serif; color: var(--white);
  font-size: 20px; font-weight: 700; line-height: 1.15; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ent-prog-desc { color: var(--text-dim); font-size: 13px; line-height: 1.5; margin-top: 4px; }
.ent-price {
  text-align: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 30px;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.4));
}
.ent-part { text-align: center; display: flex; flex-direction: column; align-items: center; }
.ent-up { color: var(--text-faint); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.ent-num {
  font-family: 'Cormorant Garamond', serif; color: var(--gold-light);
  font-size: 34px; font-weight: 700; line-height: 1;
}
.ent-lbl { color: var(--text-faint); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.ent-lock {
  position: absolute; top: 14px; right: 16px;
  font-size: 14px; opacity: 0.55; z-index: 5;
  transition: opacity 0.3s, transform 0.3s;
}
.ent-row:hover .ent-lock { opacity: 1; transform: scale(1.15); }

.ent-waitlist-btn { position: relative; z-index: 5; }

/* Responsive: stack the table into cards on mobile */
@media (max-width: 720px) {
  .ent-cols { display: none; }
  .ent-row {
    grid-template-columns: 1fr;
    gap: 14px; text-align: center;
    padding: 26px 22px;
  }
  .ent-prog { flex-direction: column; align-items: center; text-align: center; }
  .ent-price, .ent-num { font-size: 32px; }
  .ent-ribbon { top: 16px; right: -50px; padding: 7px 56px; font-size: 11px; }
}

/* ============================================
   UNIFIED CTA INTERACTION (masterclass CTAs)
   White border on hover · pressed on click · no glow
   ============================================ */
.btn-primary, .nav-cta, .sticky-cta {
  border: 2px solid transparent !important;
  transition: border-color 0.2s ease, background-position 0.4s ease, transform 0.12s ease, box-shadow 0.15s ease !important;
  animation: none !important; /* kill any pulsing glow */
}
.btn-primary:hover, .nav-cta:hover, .sticky-cta:hover {
  border-color: #ffffff !important;
  transform: none !important;
  box-shadow: 0 8px 24px rgba(212,175,55,0.28) !important;
}
.btn-primary:active, .nav-cta:active, .sticky-cta:active {
  transform: scale(0.97) !important;
  border-color: #ffffff !important;
  box-shadow: inset 0 3px 12px rgba(0,0,0,0.4) !important;
}
/* remove the shimmer sweep so it reads as a clean bordered button */
.btn-primary::after { display: none !important; }

/* ============================================
   MOBILE & TABLET OPTIMIZATION
   Great UI on phones and tablets · touch-first
   ============================================ */

/* --- Global safety: never let anything cause sideways scroll --- */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: rgba(212,175,55,0.18); }
img, video, iframe, svg, table { max-width: 100%; }
h1, h2, h3, h4, p, a, li { overflow-wrap: break-word; word-break: break-word; }

/* ---------- TABLET (max 1024px) ---------- */
@media (max-width: 1024px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0 48px; }
  .topbar { font-size: 12px; padding: 9px 14px; letter-spacing: 0.3px; }
  .nav-links { gap: 20px; }
  .hero-sub, .section-sub { font-size: 17px; }
  /* keep any 3-up card grids from getting cramped on tablet */
  .card-grid, .blog-grid, .framework-grid, .team-grid { gap: 22px; }
}

/* ---------- LARGE PHONE / SMALL TABLET (max 768px) ---------- */
@media (max-width: 768px) {
  section { padding: 48px 0; }
  .hero { padding: 44px 0 40px; }
  .pre-headline { letter-spacing: 2.5px; font-size: 12px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .section-sub { font-size: 16px; }
  /* comfortable tap targets on the mobile nav */
  .nav-links a { padding: 15px 0; font-size: 16px; min-height: 48px; display: flex; align-items: center; }
  .nav-cta { align-self: flex-start; margin-top: 6px; }
  .logo-shield { height: 40px !important; }
}

/* ---------- PHONE (max 600px) ---------- */
@media (max-width: 600px) {
  .topbar { font-size: 11px; padding: 8px 12px; line-height: 1.4; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .hero-sub, .section-sub { font-size: 15px; }
  /* full-width, easy-to-tap primary buttons */
  .btn-primary, .btn-secondary {
    display: block; width: 100%; max-width: 340px; margin-left: auto; margin-right: auto;
    padding: 16px 24px; font-size: 15px; text-align: center;
  }
  .btn-primary + .btn-secondary, .btn-secondary + .btn-primary { margin-top: 14px; }
  /* sticky CTA sits above the thumb, not hugging the corner */
  .sticky-cta { left: 16px; right: 16px; bottom: 14px; text-align: center; padding: 14px 18px; font-size: 13px; }
  /* footer links get real tap room */
  .footer-links a, footer a { padding: 6px 0; display: inline-block; }
}

/* ---------- SMALL PHONE (max 380px) ---------- */
@media (max-width: 380px) {
  h1 { font-size: 25px; }
  .container { padding: 0 16px; }
  .btn-primary, .btn-secondary { padding: 15px 18px; letter-spacing: 0; }
}

/* ---------- CLOSERSHIP® DEFINITION BLOCK ---------- */
.def-plate{
  background:var(--navy-card); border:1px solid var(--gold); border-radius:14px;
  padding:48px 52px 52px; margin:0 auto 56px; text-align:center;
}
.def-rule{
  display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:34px;
}
.def-rule::before,.def-rule::after{
  content:''; height:1px; flex:1; max-width:220px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.def-rule i{ width:9px; height:9px; background:var(--gold); transform:rotate(45deg); flex:none; }
.def-word{
  font-family:'Cormorant Garamond',serif; font-weight:600;
  font-size:clamp(38px,6.6vw,66px); line-height:1; letter-spacing:.02em;
  color:var(--white); margin:0;
}
.def-word sup{ font-size:.3em; top:-1.25em; margin-left:.05em; font-weight:400; color:var(--gold); }
.def-pos{
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:clamp(18px,2.4vw,24px); letter-spacing:.3em;
  color:var(--gold-light); margin:14px 0 0;
}
.def-div{ width:140px; height:1px; background:var(--gold); opacity:.55; margin:28px auto; }
.def-by{
  font-family:'Cormorant Garamond',serif; font-weight:600;
  font-size:clamp(18px,2.3vw,23px); color:var(--white); margin:0;
}
.def-by span{
  display:block; font-weight:400; font-size:.8em; color:var(--text-dim); margin-top:7px;
}
.def-body{ margin:0; text-align:left; }
.def-body p{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(19px,2.4vw,25px); line-height:1.55;
  color:var(--text); margin:0 0 20px;
}
.def-body p:last-child{ margin-bottom:0; }
@media(max-width:600px){
  .def-plate{ padding:36px 24px 40px; }
  .def-rule{ margin-bottom:26px; }
  .def-rule::before,.def-rule::after{ max-width:80px; }
  .def-pos{ letter-spacing:.22em; }
}

/* ===== 2026-08 QUIET LUXURY LAYER · muted gold, no glow, editorial accents ===== */
:root{
  --gold:        #b3924a;
  --gold-light:  #c9ab63;
  --gold-bright: #d8c078;
  --gold-dark:   #93752f;
  --grad-gold:   linear-gradient(135deg,#c9ab63 0%,#b3924a 50%,#93752f 100%);
  --grad-gold-soft: linear-gradient(135deg,#c9ab63 0%,#b3924a 50%,#93752f 100%);
}
.topbar{
  background:#060a13; color:var(--gold-light);
  border-bottom:1px solid rgba(179,146,74,.35); letter-spacing:.14em;
}
.btn-primary{ background:linear-gradient(135deg,#c9ab63,#a8873f); box-shadow:none; text-shadow:none; }
.nav-cta,.sticky-cta{ box-shadow:none; text-shadow:none; }
.sticky-cta{ background:rgba(6,10,19,.9); color:var(--gold-light); border:1px solid rgba(179,146,74,.5); }
.vsl,.vsl-frame{ box-shadow:none; border-color:rgba(179,146,74,.4); }
.vsl-frame,.f-vsl-frame{ animation:none; background:rgba(179,146,74,.45); padding:1px; }
.play-btn{ box-shadow:none; }
.play-btn{ box-shadow:none; background:rgba(179,146,74,.92); }
.card{ border-color:rgba(179,146,74,.22); box-shadow:none; }
h1 .gold{ font-style:italic; }
h1{ letter-spacing:.005em; }
.pre-headline{ letter-spacing:.34em; opacity:.8; }
.stat-num{ font-family:-apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', sans-serif; font-weight:600; }

/* pain list: red X circles -> gold diamond markers */
.pain-icon{
  width:auto; height:auto; background:none; border-radius:0;
  color:transparent; font-size:0; position:relative;
  flex-shrink:0; width:14px; height:14px; margin-top:7px;
}
.pain-icon::before{
  content:''; position:absolute; inset:2px;
  background:rgba(179,146,74,.85); transform:rotate(45deg);
}

/* thin-line gold icon family (replaces emoji) */
.lux-ico{ color:var(--gold); display:inline-block; vertical-align:middle; }
.mission-icon .lux-ico{ width:30px; height:30px; }
.blog-card-img .lux-ico{ width:46px; height:46px; opacity:.9; }
.ent-brand-icon .lux-ico{ width:20px; height:20px; }
.ent-prog-ico .lux-ico{ width:18px; height:18px; }
.ent-lock .lux-ico{ width:15px; height:15px; opacity:.65; }
.tier-pillar .ico .lux-ico{ width:20px; height:20px; }

/* card badges: gold squares/letters -> quiet line icons */
.card-icon{ background:none; box-shadow:none; width:auto; height:auto; border-radius:0; margin-bottom:18px; }
.card-icon .lux-ico{ width:34px; height:34px; color:var(--gold); }
.framework-letter{ background:none; -webkit-background-clip:unset; background-clip:unset; -webkit-text-fill-color:unset; }
.framework-letter .lux-ico{ width:44px; height:44px; color:var(--gold); }
