/* ==========================================================
   TITLE EDGE — Master Stylesheet
   titleedge.css
   ========================================================== */

/* ── 1. FONTS ─────────────────────────────────────────── */
/* Fonts loaded via <link> tags in HTML for non-blocking rendering */

/* ── 2. DESIGN TOKENS ────────────────────────────────── */
:root {
  /* Brand Colors (consolidated from override passes) */
  --gold-light: #e4d48f;
  --gold-dark:  #c49a52;
  --bg-dark:    #0d1219;
  --bg-card:    #111c27;
  --bg-card-soft: #162432;
  --bg-elevated: #1b2e40;
  --text-white: #f5f8fc;
  --text-gray:  #b8c3d0;
  --text-muted: #8d9cad;
  --line-soft:  rgba(157, 179, 201, 0.22);
  --line-strong: rgba(215, 201, 129, 0.35);

  /* Semantic aliases */
  --primary:          var(--gold-dark);
  --primary-gradient: linear-gradient(132deg, #f2e2a4 0%, #d7b064 50%, #b68645 100%);
  --background:       var(--bg-dark);
  --foreground:       var(--text-white);

  /* Typography */
  --font-heading: 'Sora', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body:    'Manrope', 'Avenir Next', 'Segoe UI', sans-serif;

  /* Layout */
  --max-width:  1200px;
  --nav-height: 80px;
}

/* ── 3. RESET & BASE ─────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--gold-light);
  color: #000;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ── 4. LAYOUT UTILITIES ─────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--text-white);
  margin-bottom: 1rem;
}

.section-text {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Inner-page header */
.page-header {
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.page-subtitle {
  color: var(--text-gray);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ── 5. DESIGN UTILITIES ─────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes shine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.shine-title {
  background: linear-gradient(
    120deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,1) 40%,
    #FFD700 50%,
    rgba(255,255,255,1) 60%,
    rgba(255,255,255,1) 100%
  );
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s ease-in-out infinite;
}

.highlight {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ── 6. BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--primary-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(215,201,129,0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215,201,129,0.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(215,201,129,0.1);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }


/* ── 7. SITE HEADER / NAVBAR ─────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(22,22,22,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.05);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
  transition: color 0.2s;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}


/* ── 8. MOBILE NAV ───────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 88vw);
  background: #1e1e1e;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-panel.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.mobile-nav-logo {
  height: 36px;
  width: auto;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-gray);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--gold-light);
}

.mobile-nav-cta {
  margin-top: 2rem;
}


/* ── 9. FOOTER ───────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.8;
}

.footer-tagline {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-col h3,
.footer-col h4 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-col a {
  color: var(--text-gray);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 4rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}


/* ── 10. FORMS ───────────────────────────────────────── */


/* ══════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES
   ══════════════════════════════════════════════════════ */

/* ── HOME: HERO ──────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
  background:
    radial-gradient(circle at center, rgba(168,125,64,0.25) 0%, rgba(22,22,22,0.95) 70%),
    #161616;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 120vw;
  height: 120vh;
  background: radial-gradient(circle at center, rgba(168,125,64,0.15) 0%, transparent 60%);
  animation: pulseGlow 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

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

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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


/* ── HOME: PROBLEM SECTION ───────────────────────────── */
.hard-truth-title {
  font-size: 1.5rem;
  color: var(--text-gray);
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

.year-2026 {
  display: block;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-top: 0.45rem;
  text-shadow: 0 0 20px rgba(168,125,64,0.3);
  font-family: var(--font-heading);
}

.problem-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.agitation-text {
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--text-gray);
  font-style: italic;
}


/* ── HOME: SERVICES PREVIEW GRID ─────────────────────── */


/* ── HOME: SERVICE FLIP CARDS ──────────────────────────── */


/* ── HOME: STEPS / HOW IT WORKS ──────────────────────── */


/* Connector line between steps */


/* ── HOME: VIDEO SECTION ─────────────────────────────── */
.video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(168,125,64,0.3);
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  cursor: pointer;
}


.video-wrapper:hover .video-overlay { background: rgba(0,0,0,0.12); }

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 30px rgba(168,125,64,0.2);
  transition: all 0.3s;
  padding-left: 4px; /* optical center for play triangle */
}

.video-wrapper:hover .play-btn {
  transform: scale(1.1);
  background: var(--gold-light);
  color: #000;
}


/* ── HOME: CTA SECTION ───────────────────────────────── */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(168,125,64,0.05) 100%);
}


/* ── ABOUT PAGE ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-content p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-content strong {
  color: var(--gold-light);
}

.about-cta { margin-top: 0.5rem; }


/* ── SERVICES PAGE ───────────────────────────────────── */
.services-expand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2rem;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-dark);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-light);
}

.service-card-desc {
  color: var(--text-gray);
  font-size: 0.93rem;
  line-height: 1.55;
  flex-grow: 1;
}

.service-card-expand {
  font-size: 1.2rem;
  color: var(--gold-dark);
  align-self: flex-end;
  font-weight: 700;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.service-card:hover .service-card-expand {
  background: var(--gold-dark);
  color: #000;
}

/* Service expand modal */
.service-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.service-modal-overlay.open {
  display: flex;
}

.service-modal {
  background: var(--bg-card);
  border: 1px solid rgba(215,201,129,0.2);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.service-modal-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-modal-body {
  padding: 2rem;
}

.service-modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.service-modal-desc {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-modal-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-modal-tag {
  font-size: 0.82rem;
  background: rgba(168,125,64,0.12);
  border: 1px solid rgba(168,125,64,0.25);
  color: var(--gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--text-white);
  font-size: 1.4rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.service-modal-close:hover { background: rgba(0,0,0,0.8); }


/* ── PORTFOLIO PAGE ──────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  display: block;
  color: inherit;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
}

.portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-img { transform: scale(1.04); }

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-client-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.portfolio-client-desc {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.portfolio-link {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.portfolio-card:hover .portfolio-link { color: #fff; }


/* ── PRICING PAGE ────────────────────────────────────── */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  align-items: stretch;
}

.pricing-card-wrapper {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  display: flex;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.3s;
}

.pricing-card:hover { transform: translateY(-4px); }


.pricing-card.popular {
  border-color: var(--gold-light);
  animation: popularPulse 3s infinite ease-in-out;
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #000;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-gray);
}

.plan-setup {
  color: var(--text-gray);
  font-size: 0.88rem;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-gray);
  font-size: 0.93rem;
  line-height: 1.4;
  margin-bottom: 0.9rem;
}

.plan-feature.included::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-feature.excluded {
  color: rgba(255,255,255,0.2);
}

.plan-feature.excluded::before {
  content: "×";
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}


/* ── PRICING: GUIDANCE / FLIP CARDS ─────────────────── */
.guidance-section {
  padding: 6rem 2rem;
  background: rgba(255,255,255,0.015);
}

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

/* Flip card */
.flip-card {
  height: 260px;
  perspective: 1200px;
  cursor: default;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.flip-front {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
}

.flip-front-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-gray);
  text-align: center;
  font-style: italic;
}

.flip-back {
  background: linear-gradient(135deg, rgba(168,125,64,0.15), rgba(22,22,22,0.9));
  border: 1px solid rgba(168,125,64,0.3);
  transform: rotateY(180deg);
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.flip-back-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-light);
}

.flip-back-desc {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.6;
}


/* ── PRICING: ADDONS GRID ────────────────────────────── */
.addons-section {
  padding: 6rem 2rem;
}

.addons-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.addon-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.addon-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.addon-front {
  padding: 1.5rem;
}

.addon-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.addon-desc {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.addon-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
}

.addon-drawer {
  background: rgba(168,125,64,0.07);
  border-top: 1px solid rgba(168,125,64,0.15);
  padding: 1rem 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.addon-card:hover .addon-drawer,
.addon-card.is-open .addon-drawer {
  max-height: 200px;
  padding: 1rem 1.5rem;
}

.addon-drawer-label {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.addon-drawer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.addon-drawer-tag {
  font-size: 0.78rem;
  background: rgba(215,201,129,0.08);
  border: 1px solid rgba(215,201,129,0.18);
  color: var(--gold-light);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}


/* ── PRICING: QUIZ ───────────────────────────────────── */
.quiz-section {
  padding: 6rem 2rem;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.quiz-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quiz-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.quiz-subtitle {
  color: var(--text-gray);
  font-size: 1.05rem;
}

.quiz-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
}

.quiz-back-btn {
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 0;
  display: block;
  transition: color 0.2s;
}

.quiz-back-btn:hover { color: var(--gold-light); }

.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 2rem;
}

.quiz-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.quiz-btn {
  min-width: 140px;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-white);
  transition: all 0.2s;
}

.quiz-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.quiz-btn.yes-btn {
  background: var(--primary-gradient);
  border-color: transparent;
  color: #000;
}

.quiz-btn.yes-btn:hover {
  box-shadow: 0 4px 15px rgba(215,201,129,0.3);
}

.quiz-progress-wrap {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Quiz results */
.quiz-result {
  text-align: center;
  display: none;
}

.quiz-result.active { display: block; }

.quiz-result-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.quiz-recommendation {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.quiz-result-desc {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quiz-addons {
  margin-top: 2rem;
  text-align: left;
}

.quiz-addons-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
}

.quiz-addon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quiz-addon-tag {
  font-size: 0.82rem;
  background: rgba(168,125,64,0.1);
  border: 1px solid rgba(168,125,64,0.25);
  color: var(--gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}

.quiz-restart {
  margin-top: 1.5rem;
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.quiz-restart:hover { color: var(--gold-light); }


/* ── PRICING: ROI SECTION ────────────────────────────── */
.roi-section {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.roi-text {
  font-size: 1.5rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--text-gray);
  margin-top: 1.25rem;
}


/* ── CONTACT PAGE ────────────────────────────────────── */


/* ── LEGAL PAGES ─────────────────────────────────────── */
.legal-page {
  padding: 8rem 2rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.legal-page .meta {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 0.92rem;
}

.legal-page p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-white);
  margin: 2.5rem 0 1rem;
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .services-expand-grid { grid-template-columns: repeat(2, 1fr); }
  .guidance-grid        { grid-template-columns: repeat(2, 1fr); }
  .addons-grid          { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pricing-cards { flex-direction: column; align-items: center; }
  .pricing-card-wrapper { max-width: 480px; width: 100%; }
  .pricing-card.popular { order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .site-nav    { display: none; }
  .mobile-toggle { display: block; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Typography */
  .hero-title     { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .page-title     { font-size: 2.25rem; }
  .section-title  { font-size: 2rem; }
  .quiz-title     { font-size: 2rem; }

  /* Grids → single column */
  .services-expand-grid  { grid-template-columns: 1fr; }
  .portfolio-grid        { grid-template-columns: 1fr; }
  .guidance-grid         { grid-template-columns: 1fr; }
  .addons-grid           { grid-template-columns: 1fr; }

  /* Steps */
  .hero-buttons { flex-direction: column; align-items: center; }

  /* Problem */
  .problem-box  { padding: 2rem; }
  .agitation-text { font-size: 1.15rem; }

  /* Video */
  .play-btn { width: 60px; height: 60px; font-size: 1.4rem; }

  /* Quiz */
  .quiz-card { padding: 2rem; }
  .quiz-question { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section   { padding: 4rem 1.25rem; }
  .page-header { padding: 7rem 1.25rem 3rem; }
  .quiz-card { padding: 1.75rem 1.25rem; }
}

/* ==========================================================
   2026 SANDBOX REDESIGN OVERRIDES
   (tokens merged into :root above)
   ========================================================== */

body {
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(63, 102, 141, 0.24), transparent 62%),
    radial-gradient(900px 620px at 88% -18%, rgba(208, 171, 103, 0.2), transparent 64%),
    var(--bg-dark);
  color: var(--text-white);
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

body::after {
  background: linear-gradient(180deg, rgba(11, 17, 24, 0.05), rgba(11, 17, 24, 0.8) 70%);
}

/* Homepage: page-level parallax canvas so hero and next section are seamless */
body.home-page::before {
  background:
    radial-gradient(130% 82% at 50% -5%, rgba(228, 212, 143, 0.26) 0%, rgba(26, 40, 54, 0.86) 58%, rgba(13, 18, 25, 0.98) 100%),
    linear-gradient(170deg, #111c28 0%, #0d1219 52%, #0a1017 100%);
  background-repeat: no-repeat;
  background-size: cover;
  mask-image: none;
  transform: translate3d(0, calc(var(--home-parallax-y, 0px) * -0.09), 0) scale(1.06);
  transform-origin: 50% 0;
}

body.home-page::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 17, 24, 0.06), rgba(11, 17, 24, 0.84) 72%);
  background-size: 52px 52px, 52px 52px, 100% 100%;
  transform: translate3d(0, calc(var(--home-parallax-y, 0px) * -0.04), 0) scale(1.03);
  transform-origin: 50% 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.container,
.header-inner,
.footer-inner,
.footer-bottom {
  max-width: 1180px;
}

.section {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.012);
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 38%);
  opacity: 0.12;
}

body.home-page .section {
  border-top: none;
}

body.home-page .section::before {
  display: none;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-title {
  letter-spacing: -0.03em;
}

.section-text,
.hero-subtitle,
.page-subtitle {
  color: var(--text-gray);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 212, 143, 0.35);
  background: rgba(228, 212, 143, 0.08);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

body.home-page .hero .kicker {
  display: inline-block;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  width: fit-content;
  max-width: 28ch;
  text-align: center;
  line-height: 1.42;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  min-height: 48px;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: rgba(228, 212, 143, 0.5);
  color: #f8ebbf;
  background: rgba(228, 212, 143, 0.06);
}

.btn-secondary:hover {
  background: rgba(228, 212, 143, 0.14);
  border-color: rgba(228, 212, 143, 0.75);
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  color: #000;
  box-shadow: 0 4px 15px rgba(215, 201, 129, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(215, 201, 129, 0.32);
}

.site-header {
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(9, 14, 20, 0.74);
  border-bottom-color: rgba(228, 212, 143, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.site-logo {
  height: 48px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.site-nav {
  gap: 1.5rem;
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.site-nav .btn {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
}

.mobile-nav-panel {
  background: rgba(12, 18, 25, 0.96);
  border-left: 1px solid rgba(228, 212, 143, 0.15);
}

.mobile-nav-links a {
  color: var(--text-gray);
}

.mobile-nav-links a:hover {
  color: var(--text-white);
}

.hero {
  display: block;
  min-height: clamp(660px, 88vh, 900px);
  padding: 7.35rem 2rem 4.9rem;
  background:
    radial-gradient(130% 75% at 50% -2%, rgba(228, 212, 143, 0.2) 0%, rgba(13, 18, 25, 0.94) 60%),
    linear-gradient(170deg, #111c28 0%, #0d1219 50%, #0a1017 100%);
}

.hero::before {
  width: 128vw;
  height: 128vh;
  background: radial-gradient(circle at center, rgba(228, 212, 143, 0.2), rgba(21, 34, 47, 0) 62%);
}

body.home-page .hero {
  background: transparent !important;
}

body.home-page .hero::before {
  display: none;
}

.hero-content {
  max-width: 930px;
}

.hero-title {
  font-size: clamp(2.45rem, 7vw, 4.8rem);
  line-height: 1.03;
}

.hero-subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}


.insight-strip-section {
  padding-top: 2rem;
  border-top: none;
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.insight-item {
  background: rgba(19, 31, 44, 0.76);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  overflow: hidden;
  position: relative;
}

.insight-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.1rem;
  border: 1px solid rgba(228, 212, 143, 0.34);
  background: linear-gradient(155deg, rgba(44, 58, 73, 0.9), rgba(24, 35, 47, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.insight-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insight-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.insight-item p {
  color: var(--text-gray);
  line-height: 1.55;
  font-size: 0.95rem;
}

.problem-box {
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(25, 37, 50, 0.9), rgba(17, 28, 39, 0.88));
  border: 1px solid var(--line-soft);
  box-shadow: 0 24px 60px rgba(2, 5, 8, 0.35);
}

.agitation-text {
  font-size: clamp(1.18rem, 2.4vw, 1.5rem);
}


.service-preview-main {
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, opacity 0.35s ease;
}


.deal-step-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

.deal-step-title {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.deal-step-text {
  color: var(--text-gray);
  font-size: 0.94rem;
  line-height: 1.6;
}


.audience-cards {
  display: grid;
  gap: 0.9rem;
}

.audience-card {
  background: rgba(20, 32, 45, 0.85);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
}

.audience-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.audience-card p {
  color: var(--text-gray);
  font-size: 0.93rem;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(20, 32, 45, 0.8);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text-white);
  padding: 1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  color: var(--gold-light);
  font-size: 1.1rem;
  transition: transform 0.22s ease;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.65;
  padding: 0 1.1rem 1rem;
}

.faq-item[data-open='true'] .faq-panel {
  max-height: 220px;
}

.faq-item[data-open='true'] .faq-icon {
  transform: rotate(45deg);
}

.video-wrapper {
  border-color: rgba(228, 212, 143, 0.34);
  border-radius: 22px;
}

.play-btn {
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.play-btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.plan-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan-spotlight-card {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(17, 28, 39, 0.85);
  padding: 1.2rem;
}

.plan-spotlight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.plan-spotlight-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.7rem;
}

.plan-spotlight-price span {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 0.15rem;
}

.plan-spotlight-card ul {
  margin-bottom: 1rem;
}

.plan-spotlight-card li {
  color: var(--text-gray);
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 0.35rem;
}

.plan-spotlight-card.popular {
  border-color: var(--line-strong);
  box-shadow: 0 18px 30px rgba(1, 3, 6, 0.28);
}

.final-cta-panel {
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    linear-gradient(155deg, rgba(25, 38, 52, 0.92), rgba(16, 25, 35, 0.92));
  padding: 2.25rem;
}

.final-cta-panel .hero-buttons {
  margin-top: 1.35rem;
}

.page-header {
  padding: 8.7rem 2rem 3.6rem;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.08;
}

.page-subtitle {
  max-width: 760px;
}

.about-grid {
  gap: 3.2rem;
}

.about-image {
  border-radius: 18px;
  border-color: var(--line-soft);
}

.about-content p {
  color: var(--text-gray);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.value-card {
  background: rgba(20, 32, 45, 0.8);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 1rem;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.55;
}

.services-expand-grid {
  gap: 1rem;
}

.service-card {
  border-radius: 14px;
  border-color: var(--line-soft);
  background: rgba(20, 32, 45, 0.82);
}

.service-card:hover {
  border-color: var(--line-strong);
}

.service-card-title {
  color: var(--text-white);
}

.service-card-expand {
  border-color: rgba(228, 212, 143, 0.5);
  color: var(--gold-light);
}

.portfolio-card {
  border-color: var(--line-soft);
  background: rgba(17, 28, 39, 0.86);
}

.portfolio-client-desc {
  color: var(--text-gray);
}

.portfolio-metrics {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
}

.portfolio-metrics span {
  font-size: 0.76rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(157, 179, 201, 0.32);
  color: var(--text-gray);
}

.pricing-card {
  border-color: var(--line-soft);
  background: rgba(17, 28, 39, 0.9);
}

.plan-feature {
  color: var(--text-gray);
}

.guidance-section,
.quiz-section {
  background: rgba(12, 20, 29, 0.56);
}

.flip-front {
  background: rgba(20, 32, 45, 0.92);
  border-color: var(--line-soft);
}

.flip-back {
  border-color: var(--line-strong);
}

.addon-card {
  border-color: var(--line-soft);
  background: rgba(20, 32, 45, 0.88);
}

.addon-card:hover {
  border-color: var(--line-strong);
}

.quiz-card {
  background: rgba(20, 32, 45, 0.9);
  border-color: var(--line-soft);
}

.roi-section {
  max-width: 900px;
}

.contact-shell {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 0 2rem 6rem;
}

.contact-note-card,
.contact-form-shell {
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(20, 32, 45, 0.88);
  padding: 1.4rem;
}

.contact-note-card h2,
.contact-note-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.contact-note-card p,
.contact-note-card li {
  color: var(--text-gray);
  font-size: 0.93rem;
  line-height: 1.6;
}

.contact-note-card a,
.legal-page a {
  color: var(--gold-light);
}

.contact-note-card ul {
  margin-top: 0.7rem;
}

.contact-note-card li {
  margin-bottom: 0.45rem;
}

.contact-form-shell iframe {
  width: 100%;
  min-height: 860px;
  border: none;
  border-radius: 8px;
}

.portal-shell {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 1.25rem;
  padding: 0 2rem 6rem;
}

.portal-signin-card,
.portal-info-card {
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(20, 32, 45, 0.88);
  padding: 1.4rem;
}

.portal-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.24rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 212, 143, 0.34);
  background: rgba(228, 212, 143, 0.08);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.portal-signin-card h2,
.portal-info-card h2 {
  margin: 0.85rem 0 0.4rem;
  font-size: 1.45rem;
}

.portal-intro {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.portal-field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  margin: -0.15rem 0 1rem;
}

.portal-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-gray);
  font-size: 0.88rem;
}

.portal-remember input {
  accent-color: var(--gold-dark);
}

.portal-link-inline {
  color: var(--gold-light);
  font-size: 0.86rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.portal-signin-status {
  min-height: 1.45rem;
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.portal-signin-status.is-error {
  color: #f1a3a3;
}

.portal-signin-status.is-success {
  color: #9fd6ac;
}

.portal-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.portal-info-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.portal-info-list li {
  color: var(--text-gray);
  font-size: 0.93rem;
  line-height: 1.55;
  position: relative;
  padding-left: 1.05rem;
}

.portal-info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
}

.portal-links {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.legal-page {
  max-width: 920px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(20, 32, 45, 0.84);
  padding: 2rem;
  margin: 0 auto 5rem;
}

.legal-page h1 {
  margin-bottom: 0.8rem;
}

.legal-page .meta {
  color: var(--text-muted);
}

.legal-page p {
  color: var(--text-gray);
}

.legal-page h2 {
  color: #eff5fb;
}

@media (max-width: 1100px) {
  .insight-strip,
  .plan-spotlight-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {


  .deal-card.is-dealt,
  .deal-card:nth-child(1).is-dealt,

  .contact-shell {
    grid-template-columns: 1fr;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .portal-shell {
    grid-template-columns: 1fr;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .portal-field-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contact-form-shell iframe {
    min-height: 760px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 8rem;
    padding-bottom: 2.6rem;
  }

  .insight-strip,
  .plan-spotlight-grid,
  .values-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }


  .service-preview-main {
    transform: none !important;
    opacity: 1 !important;
  }


  .contact-form-shell iframe {
    min-height: 700px;
  }

  .hero + .insight-strip-section {
    margin-top: 0;
    padding-top: 0.85rem;
  }

  .insight-item {
    padding: 0.4rem 0 1rem;
  }

  .insight-item:not(:last-child)::after {
    display: none;
  }

  .insight-item:not(:last-child) {
    border-bottom: 1px solid rgba(228, 212, 143, 0.2);
    margin-bottom: 0.2rem;
  }

  .final-cta-panel {
    padding: 1.5rem;
  }

  .legal-page {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    padding: 1.35rem;
  }
}

/* DOCX pricing comparison system */
.package-level-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.package-level-card {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(24, 37, 51, 0.96), rgba(15, 24, 34, 0.98));
  padding: 1.25rem;
  display: grid;
  grid-template-rows: minmax(7.1rem, auto) minmax(4.4rem, auto) minmax(4.65rem, auto) minmax(11.25rem, auto) minmax(5.3rem, auto) auto;
  gap: 0.82rem;
  box-shadow: 0 16px 34px rgba(1, 4, 8, 0.24);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  overflow: hidden;
}

.package-level-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%);
  opacity: 0.45;
}

.package-level-card:hover,
.package-level-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(228, 212, 143, 0.44);
  box-shadow: 0 26px 46px rgba(1, 5, 9, 0.36);
}

.package-level-card-popular {
  border-color: rgba(228, 212, 143, 0.76);
  background:
    linear-gradient(165deg, rgba(37, 53, 70, 0.98), rgba(20, 31, 44, 0.98));
  box-shadow:
    0 30px 52px rgba(1, 4, 8, 0.44),
    0 0 0 1px rgba(228, 212, 143, 0.24);
  transform: translateY(-6px);
}

.package-level-card-popular:hover,
.package-level-card-popular:focus-within {
  transform: translateY(-10px) scale(1.01);
}

.package-level-header {
  display: grid;
  align-content: start;
  gap: 0.42rem;
}

.package-level-badge {
  width: fit-content;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(242, 226, 164, 0.22), rgba(215, 176, 100, 0.22));
  border: 1px solid rgba(228, 212, 143, 0.55);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #f5e9ba;
}

.package-level-tier {
  font-size: clamp(1.52rem, 2.4vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-white);
}

.package-level-name {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: #d4e0eb;
}

.package-level-card-popular .package-level-tier {
  color: #fff3c8;
}

.package-level-bestfor {
  color: var(--text-gray);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
  padding-left: 0.7rem;
  border-left: 2px solid rgba(228, 212, 143, 0.34);
}

.package-level-pricing {
  margin: 0;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(157, 179, 201, 0.2);
  background: rgba(9, 16, 24, 0.42);
}

.package-level-price {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0 0 0.15rem;
}

.package-level-price-sub {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.35;
  margin: 0;
}

.package-level-list {
  margin: 0;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.package-level-list li {
  color: var(--text-gray);
  font-size: 0.83rem;
  line-height: 1.45;
  margin: 0;
  padding-left: 1.02rem;
  position: relative;
}

.package-level-list li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.56rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
}

.package-level-outcome {
  color: var(--text-gray);
  font-size: 0.83rem;
  line-height: 1.52;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.72rem;
  margin: 0;
}

.package-level-outcome strong {
  color: var(--text-white);
  font-weight: 700;
}

.package-level-cta {
  white-space: nowrap;
  min-height: 50px;
  letter-spacing: 0.01em;
  font-size: 0.88rem;
  margin-top: 0.1rem;
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(14, 22, 31, 0.86);
}

.tier-compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.tier-compare-table th,
.tier-compare-table td {
  border-bottom: 1px solid rgba(157, 179, 201, 0.16);
  padding: 0.78rem 0.72rem;
  vertical-align: top;
}

.tier-compare-table thead th {
  font-family: var(--font-heading);
  color: var(--text-white);
  background: rgba(22, 34, 47, 0.92);
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 2;
}

.tier-compare-table thead th:nth-child(3) {
  background: rgba(228, 212, 143, 0.2);
  color: #fff1b8;
}

.tier-compare-table th:first-child,
.tier-compare-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: rgba(15, 24, 34, 0.98);
  min-width: 230px;
}

.tier-compare-table thead th:first-child {
  z-index: 3;
}

.tier-compare-table tbody td:nth-child(3) {
  background: rgba(228, 212, 143, 0.05);
}

.compare-group th {
  background: rgba(228, 212, 143, 0.08) !important;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 700;
}

.cell-state {
  display: inline-block;
  padding: 0.16rem 0.44rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.28rem;
}

.cell-state.included {
  background: rgba(122, 210, 154, 0.16);
  color: #9ee3bc;
}

.cell-state.optional {
  background: rgba(157, 179, 201, 0.15);
  color: #d2deea;
}

.cell-state.not-included {
  background: rgba(238, 117, 117, 0.15);
  color: #ffc3c3;
}

.cell-note {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.guidance-grid-pricing {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-spotlight-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .package-level-grid,
  .plan-spotlight-grid-home,
  .guidance-grid-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .package-level-grid,
  .plan-spotlight-grid-home,
  .guidance-grid-pricing {
    grid-template-columns: 1fr;
  }

  .package-level-card {
    grid-template-rows: auto;
    gap: 0.72rem;
  }

  .package-level-cta {
    white-space: normal;
  }
}

/* 2026 conversion pass: pricing clarity + centered card rows */
.pricing-cards-tier {
  padding: 0;
  gap: 1.1rem;
  max-width: 1180px;
}

.pricing-cards-tier .pricing-card-wrapper {
  flex: 1 1 255px;
  min-width: 250px;
  max-width: 280px;
}

.pricing-cards-tier .pricing-card {
  height: 100%;
  padding: 1.45rem 1.2rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(165deg, rgba(24, 37, 51, 0.96), rgba(15, 24, 34, 0.98));
  box-shadow: 0 16px 34px rgba(1, 4, 8, 0.24);
  transform: none;
}

.pricing-cards-tier .pricing-card:hover,
.pricing-cards-tier .pricing-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(228, 212, 143, 0.48);
  box-shadow: 0 24px 42px rgba(1, 5, 9, 0.34);
}

.pricing-cards-tier .pricing-card.popular {
  border-color: rgba(228, 212, 143, 0.78);
  background: linear-gradient(165deg, rgba(37, 53, 70, 0.98), rgba(20, 31, 44, 0.98));
  box-shadow: 0 28px 52px rgba(1, 4, 8, 0.44), 0 0 0 1px rgba(228, 212, 143, 0.24);
  animation: none;
}

.pricing-cards-tier .pricing-card.popular:hover,
.pricing-cards-tier .pricing-card.popular:focus-within {
  transform: translateY(-10px) scale(1.01);
}

.pricing-cards-tier .plan-name {
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.28rem;
}

.plan-tagline {
  color: #d4e0eb;
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.45;
  min-height: 0;
  margin-bottom: 0.6rem;
}

.pricing-cards-tier .plan-price {
  font-size: 2.05rem;
  line-height: 1.05;
  margin-bottom: 0.34rem;
}

.pricing-cards-tier .plan-price span {
  display: block;
  margin-top: 0.2rem;
  margin-left: 0;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-cards-tier .plan-setup {
  font-size: 0.84rem;
  color: var(--text-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.62rem 0;
  margin-bottom: 0.64rem;
  min-height: 0;
}

.plan-best-for {
  color: var(--text-gray);
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 0.62rem;
  min-height: 0;
}

.pricing-cards-tier .plan-features {
  margin-bottom: 0.8rem;
  min-height: 0;
  display: grid;
  gap: 0.36rem;
  align-content: start;
  flex-grow: 1;
}

.pricing-cards-tier .plan-feature {
  font-size: 0.82rem;
  line-height: 1.42;
  margin-bottom: 0;
  gap: 0.5rem;
}

.pricing-cards-tier .plan-feature.excluded {
  color: rgba(190, 204, 219, 0.4);
}

.pricing-cards-tier .plan-feature.excluded::before {
  color: rgba(190, 204, 219, 0.4);
}

.plan-details {
  margin: 0 0 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-details summary {
  list-style: none;
  cursor: pointer;
  color: #d7e2ed;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.62rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-details summary::-webkit-details-marker {
  display: none;
}

.plan-details summary::after {
  content: '+';
  color: var(--gold-light);
  font-size: 1rem;
  line-height: 1;
}

.plan-details[open] summary::after {
  content: '−';
}

.plan-details-body {
  padding: 0 0 0.66rem;
}

.plan-details-list {
  margin: 0;
  display: grid;
  gap: 0.32rem;
}

.plan-details-list li {
  color: var(--text-gray);
  font-size: 0.79rem;
  line-height: 1.42;
  padding-left: 0.95rem;
  position: relative;
}

.plan-details-list li::before {
  content: '';
  position: absolute;
  left: 0.12rem;
  top: 0.54rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
}

.plan-outcome {
  color: var(--text-gray);
  font-size: 0.82rem;
  line-height: 1.45;
  min-height: 0;
  margin-bottom: 0.8rem;
}

.pricing-cards-tier .btn {
  margin-top: auto;
  min-height: 48px;
  white-space: nowrap;
  font-size: 0.84rem;
}

.compare-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.compare-toolbar-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.compare-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(17, 28, 39, 0.86);
  padding: 0.45rem 0.8rem;
  color: var(--text-white);
  font-size: 0.82rem;
  font-weight: 700;
}

.compare-toggle input {
  margin: 0;
  accent-color: var(--gold-light);
}

.pricing-compare-shell {
  border: 1px solid rgba(228, 212, 143, 0.18);
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 1.45rem);
  background: linear-gradient(160deg, rgba(19, 30, 42, 0.92), rgba(11, 18, 27, 0.98));
  box-shadow: 0 18px 38px rgba(3, 7, 12, 0.22);
}

.pricing-compare-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.pricing-compare-guidance {
  display: grid;
  gap: 0.35rem;
  max-width: 42rem;
}

.pricing-compare-label {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-compare-guidance p:last-child {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.pricing-compare-toggle {
  flex-shrink: 0;
  min-height: 46px;
}

.pricing-compare-scroll-hint {
  display: none;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}

.pricing-compare-scroll {
  position: relative;
  border: 1px solid rgba(157, 179, 201, 0.14);
  border-radius: 18px;
  background: rgba(10, 17, 25, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.pricing-compare-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 28px;
  background: linear-gradient(90deg, rgba(10, 17, 25, 0), rgba(10, 17, 25, 0.96));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pricing-compare-col-feature {
  width: 28%;
}

.pricing-compare-col-tier {
  width: 18%;
}

.pricing-compare-table {
  min-width: 980px;
}

.pricing-compare-table thead th {
  padding: 1.2rem 1rem;
  text-align: center;
  vertical-align: bottom;
}

.pricing-compare-table thead th:first-child {
  min-width: 240px;
  text-align: left;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-compare-plan {
  text-align: center;
}

.pricing-compare-plan--featured,
.pricing-compare-table thead th:nth-child(3) {
  background: linear-gradient(180deg, rgba(228, 212, 143, 0.16), rgba(228, 212, 143, 0.08));
}

.pricing-compare-tier-name {
  font-size: 1.08rem;
  margin-bottom: 0.25rem;
}

.pricing-compare-tier-price {
  font-family: var(--font-heading);
  font-size: 1.82rem;
  line-height: 1;
  color: var(--text-white);
}

.pricing-compare-tier-price span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-compare-tier-meta {
  margin-top: 0.45rem;
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.pricing-compare-tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  background: rgba(228, 212, 143, 0.18);
  color: #fff1b8;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tier-compare-table th,
.tier-compare-table td {
  padding: 0.9rem 0.8rem;
}

.tier-compare-table tbody th {
  color: #e8f0f9;
  font-size: 0.88rem;
  line-height: 1.35;
}

.tier-compare-table tbody td {
  font-size: 0.84rem;
}

.tier-compare-table tbody tr:not(.compare-group):nth-child(even) td,
.tier-compare-table tbody tr:not(.compare-group):nth-child(even) th {
  background: rgba(17, 28, 39, 0.5);
}

.tier-compare-table tbody tr:not(.compare-group):hover td,
.tier-compare-table tbody tr:not(.compare-group):hover th {
  background: rgba(34, 52, 71, 0.7);
}

.cell-state {
  min-width: 94px;
  text-align: center;
}

.cell-note {
  margin-top: 0.15rem;
}

.pricing-faq-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.1rem;
  align-items: start;
}

.pricing-faq-aside {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.15rem, 2vw, 1.5rem);
  border: 1px solid rgba(228, 212, 143, 0.18);
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(23, 35, 49, 0.94), rgba(13, 21, 31, 0.98));
  box-shadow: 0 18px 34px rgba(3, 7, 12, 0.2);
}

.pricing-faq-aside-label {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-faq-aside h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.pricing-faq-aside p {
  color: #d8e2ec;
  font-size: 0.93rem;
  line-height: 1.7;
}

.pricing-faq-aside .btn {
  justify-self: start;
  min-height: 48px;
}

.pricing-faq-list {
  gap: 0.9rem;
}

.pricing-faq-list .faq-item {
  border: 1px solid rgba(157, 179, 201, 0.14);
  border-left: 3px solid transparent;
  border-radius: 18px;
  background: rgba(15, 24, 34, 0.82);
  box-shadow: 0 12px 24px rgba(2, 5, 10, 0.14);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.pricing-faq-list .faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 212, 143, 0.3);
}

.pricing-faq-list .faq-item[data-open='true'] {
  border-left-color: var(--gold-light);
  background: rgba(19, 30, 42, 0.95);
  box-shadow: 0 18px 30px rgba(2, 5, 10, 0.18);
}

.pricing-faq-trigger {
  padding: 1.2rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #eef4fb;
}

.pricing-faq-question-wrap {
  display: grid;
  gap: 0.45rem;
}

.pricing-faq-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 212, 143, 0.22);
  background: rgba(228, 212, 143, 0.08);
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.pricing-faq-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.28s ease;
}

.pricing-faq-list .faq-item[data-open='true'] .pricing-faq-icon svg {
  transform: rotate(180deg);
}

.pricing-faq-list .faq-panel {
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-faq-list .faq-item[data-open='true'] .faq-panel {
  max-height: 320px;
}

.pricing-faq-list .faq-panel p {
  margin: 0 1.25rem 1.25rem;
  padding: 1.05rem 0 0;
  border-top: 1px solid rgba(157, 179, 201, 0.14);
  color: #d8e2ec;
  font-size: 0.94rem;
  line-height: 1.75;
}


.deal-card,
.deal-card.is-dealt,
.deal-card:nth-child(1).is-dealt,


.insight-strip,
.services-preview-grid,
.services-expand-grid,
.portfolio-grid,
.values-grid,
.plan-spotlight-grid,
.guidance-grid,
.addons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.insight-strip > * {
  flex: 1 1 300px;
  max-width: 360px;
}


.services-expand-grid > * {
  flex: 1 1 280px;
  max-width: 360px;
}

.portfolio-grid > * {
  flex: 1 1 430px;
  max-width: 560px;
}

.values-grid > * {
  flex: 1 1 220px;
  max-width: 260px;
}

.plan-spotlight-grid > * {
  flex: 1 1 255px;
  max-width: 285px;
}

.guidance-grid > * {
  flex: 1 1 250px;
  max-width: 300px;
}

.addons-grid > * {
  flex: 1 1 270px;
  max-width: 320px;
}

.mini-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.mini-plan-card h3 {
  font-size: 1.35rem;
}

.mini-plan-card .plan-spotlight-price {
  font-size: 1.95rem;
  margin-bottom: 0.2rem;
}

.mini-plan-setup {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.62rem;
  padding-bottom: 0.62rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-plan-card ul {
  margin-bottom: 0.9rem;
  flex-grow: 1;
}

.mini-plan-card .btn {
  margin-top: auto;
  font-size: 0.83rem;
  white-space: nowrap;
}

.mini-popular-badge {
  top: -11px;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .pricing-cards-tier .pricing-card-wrapper {
    min-width: 280px;
    max-width: 420px;
  }

  .pricing-cards-tier .btn,
  .mini-plan-card .btn {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .insight-strip > *,
  .services-preview-grid > *,
  .services-expand-grid > *,
  .portfolio-grid > *,
  .values-grid > *,
  .plan-spotlight-grid > *,
  .guidance-grid > *,
  .addons-grid > * {
    flex-basis: 100%;
    max-width: 100%;
  }

  .compare-toolbar,
  .pricing-compare-toolbar {
    align-items: flex-start;
  }

  .compare-toggle,
  .pricing-compare-toggle {
    width: 100%;
    justify-content: center;
  }

  .pricing-compare-scroll-hint {
    display: block;
  }

  .pricing-compare-shell {
    padding: 0.9rem;
  }

  .pricing-compare-scroll::after {
    opacity: 1;
  }

  .pricing-compare-table {
    min-width: 760px;
  }

  .pricing-compare-table th,
  .pricing-compare-table td {
    padding: 0.72rem 0.55rem;
  }

  .pricing-compare-table thead th:first-child,
  .pricing-compare-table th:first-child,
  .pricing-compare-table td:first-child {
    min-width: 160px;
  }

  .pricing-compare-tier-name {
    font-size: 0.94rem;
  }

  .pricing-compare-tier-price {
    font-size: 1.45rem;
  }

  .pricing-compare-tier-meta {
    font-size: 0.65rem;
  }

  .cell-state {
    min-width: 78px;
    font-size: 0.64rem;
  }

  .cell-note {
    font-size: 0.68rem;
  }

  .pricing-faq-shell {
    grid-template-columns: 1fr;
  }

  .pricing-faq-aside .btn {
    width: 100%;
    justify-self: stretch;
  }

  .pricing-faq-trigger {
    padding: 1rem 1.05rem;
    font-size: 0.96rem;
  }

  .pricing-faq-list .faq-panel p {
    margin: 0 1.05rem 1.05rem;
  }
}

/* Branded playing-card system for homepage tiles and steps */
:root {
  --section-space-y: clamp(3rem, 4.8vw, 4rem);
  --section-space-y-tight: clamp(1.75rem, 2.9vw, 2.4rem);
  --stack-gap-lg: clamp(1.45rem, 2.4vw, 2.15rem);
  --stack-gap-md: clamp(0.85rem, 1.4vw, 1.2rem);
  --deck-gap: clamp(0.85rem, 1.35vw, 1.15rem);
  --card-pad-x: clamp(1rem, 1.7vw, 1.25rem);
  --card-pad-y: clamp(1rem, 1.65vw, 1.25rem);
  --deal-card-min-height: clamp(210px, 22vw, 252px);
  --service-card-min-height: clamp(218px, 24vw, 276px);
  --card-motion-duration: 0.82s;
  --card-fade-duration: 0.52s;
  --card-motion-ease: cubic-bezier(0.22, 0.82, 0.2, 1);
}

.section {
  padding-top: var(--section-space-y);
  padding-bottom: var(--section-space-y);
}

.section.section-tight {
  padding-top: var(--section-space-y-tight);
  padding-bottom: var(--section-space-y-tight);
}

.section.section-spacious {
  padding-top: clamp(3.8rem, 6.1vw, 5.15rem);
  padding-bottom: clamp(3.8rem, 6.1vw, 5.15rem);
}

.section-header {
  margin-bottom: var(--stack-gap-lg);
}

.section.section-tight .section-header {
  margin-bottom: var(--stack-gap-md);
}

.section-header .section-title {
  margin-bottom: 0.78rem;
  line-height: 1.08;
}

.section-header .section-text {
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.62;
}

.hero {
  padding-bottom: clamp(3.2rem, 5vw, 4.4rem);
}

.hero + .insight-strip-section {
  margin-top: -0.4rem;
  padding-top: clamp(0.75rem, 1.4vw, 1.1rem);
  padding-bottom: clamp(2rem, 3.1vw, 2.75rem);
  border-top: none !important;
  background: linear-gradient(180deg, rgba(13, 18, 25, 0.95) 0%, rgba(10, 16, 23, 0.99) 100%);
}

body.home-page .hero + .insight-strip-section {
  background: transparent !important;
}

.hero + .insight-strip-section::before {
  display: none;
}

body.home-page .hero-foundation-section {
  padding-top: clamp(2.6rem, 4.4vw, 3.4rem);
  padding-bottom: clamp(3.2rem, 5vw, 4rem);
}

.hero-foundation-shell {
  display: grid;
  gap: clamp(1.5rem, 2.6vw, 2.2rem);
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.9vw, 1.55rem);
  align-items: stretch;
}

.insight-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.3rem clamp(0.2rem, 0.8vw, 0.7rem) 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
}

.insight-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(clamp(1rem, 1.9vw, 1.55rem) * -0.5);
  top: 0.15rem;
  width: 1px;
  height: calc(100% - 0.3rem);
  background: linear-gradient(180deg, rgba(228, 212, 143, 0), rgba(228, 212, 143, 0.5), rgba(228, 212, 143, 0));
  opacity: 0.8;
}

.insight-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 0.08rem;
  border: 1px solid rgba(228, 212, 143, 0.48);
  background: radial-gradient(circle at 35% 35%, rgba(228, 212, 143, 0.22), rgba(228, 212, 143, 0.05) 65%, rgba(228, 212, 143, 0.01) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.insight-label {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.insight-item p {
  margin: 0;
  line-height: 1.6;
  color: #c7d5e4;
}


body.service-focus-open {
  overflow: hidden;
}


.service-focus-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 18, 0.78);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.28s ease;
}


.service-focus-shell {
  position: relative;
  z-index: 1;
  width: min(760px, 94vw);
}

.service-focus-close {
  position: absolute;
  top: -0.7rem;
  right: -0.7rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(228, 212, 143, 0.45);
  background: rgba(11, 18, 27, 0.92);
  color: var(--gold-light);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.service-focus-close:hover,
.service-focus-close:focus-visible {
  border-color: rgba(228, 212, 143, 0.78);
  box-shadow: 0 0 0 2px rgba(228, 212, 143, 0.16);
}

#service-focus-card-host {
  perspective: 1600px;
}

.service-focus-card {
  --focus-from-x: 0px;
  --focus-from-y: 24px;
  --focus-from-scale: 0.9;
  position: relative;
  max-height: min(84vh, 760px);
  border-radius: 20px;
  border: 1px solid rgba(228, 212, 143, 0.54);
  background: linear-gradient(162deg, rgba(24, 37, 51, 0.98), rgba(13, 22, 33, 0.98));
  box-shadow: 0 26px 56px rgba(2, 5, 9, 0.5);
  overflow: auto;
  transform: translate3d(var(--focus-from-x), var(--focus-from-y), 0) scale(var(--focus-from-scale)) rotateY(180deg);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
  will-change: transform, opacity;
}

.service-focus-card.is-focused {
  transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  opacity: 1;
}

.service-focus-card .service-preview-main {
  height: auto;
  padding: 1.45rem 1.45rem 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}


.service-focus-card:hover .service-preview-main,
.service-focus-card:focus-within .service-preview-main {
  transform: none !important;
  opacity: 1 !important;
}


.service-focus-card .service-reveal-caret {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.24s ease;
}


.service-focus-card.details-open .service-reveal-caret {
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .service-focus-card .service-preview-main {
    padding: 1.05rem 1rem 0.75rem;
  }


  .service-focus-shell {
    width: min(700px, 96vw);
  }
}


.social-proof-section {
  padding-top: var(--section-space-y-tight);
  padding-bottom: clamp(2rem, 3.5vw, 2.7rem);
}

.social-proof-kicker {
  margin: 0 0 0.9rem;
  color: var(--gold-light);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0.25rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 13%, #000 87%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 13%, #000 87%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: max-content;
  animation: logo-marquee-left 38s linear infinite;
}

.logo-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(170px, 18vw, 250px);
  flex: 0 0 auto;
}

.logo-marquee-item img {
  display: block;
  width: auto;
  height: clamp(30px, 3.5vw, 52px);
  object-fit: contain;
  transform-origin: center;
  filter: brightness(0) invert(1);
  opacity: 0.44;
  transition: filter 0.16s linear, opacity 0.16s linear, transform 0.16s linear;
  will-change: filter, opacity, transform;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.social-proof-caption {
  max-width: 48ch;
  margin: 1rem auto 0;
  text-align: center;
  color: #aebfd0;
  font-size: 0.95rem;
  line-height: 1.58;
}

@keyframes logo-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-box {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(228, 212, 143, 0.25);
  background: linear-gradient(155deg, rgba(22, 35, 49, 0.9), rgba(14, 22, 32, 0.94));
  padding: clamp(1rem, 1.9vw, 1.25rem) clamp(1rem, 2vw, 1.35rem);
  text-align: left;
}

.testimonial-box p {
  color: #e6eef7;
  font-size: clamp(0.95rem, 1.7vw, 1.04rem);
  line-height: 1.58;
  margin: 0 0 0.58rem;
}

.testimonial-box cite {
  display: block;
  color: var(--gold-light);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.plan-spotlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-spotlight-card ul {
  display: grid;
  gap: 0.35rem;
  flex-grow: 1;
}

/* Keep homepage mini-plan cards locked to equal heights and widths */
.plan-spotlight-grid.plan-spotlight-grid-home {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 1rem;
}

.plan-spotlight-grid.plan-spotlight-grid-home > * {
  max-width: none;
  width: 100%;
  flex: initial;
}

.plan-spotlight-grid.plan-spotlight-grid-home > .mini-plan-card {
  min-height: 100%;
}

#demo-video .video-wrapper {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-panel .hero-subtitle {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-panel .hero-buttons {
  justify-content: center;
  gap: 0.75rem;
}

.voice-quote {
  margin: 0;
}

.voice-quote p {
  margin: 0;
}

.voice-quote-top {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 0.45rem 0 0.15rem;
  position: relative;
}

.voice-quote-top::before {
  content: '"';
  position: absolute;
  left: 50%;
  top: -0.12rem;
  transform: translateX(-50%);
  color: rgba(228, 212, 143, 0.38);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 1;
  pointer-events: none;
}

.voice-quote-top p {
  color: #deebf7;
  font-size: clamp(1.01rem, 1.9vw, 1.2rem);
  line-height: 1.62;
  font-style: italic;
  text-wrap: balance;
}

.voice-quote-top cite {
  display: inline-block;
  margin-top: 0.58rem;
  color: var(--gold-light);
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
}

.market-signal-section .section-header {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.1rem, 2.1vw, 1.7rem);
}


.proof-stage {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.95rem, 2vw, 1.2rem);
  align-items: start;
}

.proof-stage-callouts {
  display: contents;
}

.proof-callout {
  min-height: 100%;
  border-top: 1px solid rgba(228, 212, 143, 0.24);
  padding: 1.15rem 0.9rem 0 0.9rem;
  text-align: center;
  background: none;
  border-radius: 0;
}

.proof-callout-kicker {
  margin: 0 0 0.38rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.proof-callout h3 {
  margin: 0 0 0.35rem;
  color: #f0f6fd;
  font-size: 1.08rem;
  line-height: 1.22;
}

.proof-callout p {
  margin: 0;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  color: #c4d2df;
  font-size: 0.94rem;
  line-height: 1.58;
}

.social-proof-section-early {
  padding-top: clamp(2rem, 3.5vw, 2.8rem);
  padding-bottom: clamp(1.8rem, 3vw, 2.5rem);
}

.social-proof-section-early .section-header {
  margin-bottom: clamp(0.9rem, 1.6vw, 1.25rem);
}

.growth-system-section .section-header {
  margin-bottom: clamp(1.15rem, 2vw, 1.6rem);
}


.system-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.36rem;
}

.system-list li {
  position: relative;
  padding-left: 0.9rem;
  color: #d1dfec;
  font-size: 0.88rem;
  line-height: 1.45;
}

.system-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(228, 212, 143, 0.85);
  box-shadow: 0 0 0 4px rgba(228, 212, 143, 0.16);
}

.signal-metrics-section {
  padding-top: var(--section-space-y-tight);
  padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.signal-metrics {
  margin: 0;
  padding: 0.45rem 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(228, 212, 143, 0.22);
  border-bottom: 1px solid rgba(228, 212, 143, 0.22);
}

.signal-metric {
  position: relative;
  text-align: center;
  padding: 0.68rem 0.75rem;
}

.signal-metric + .signal-metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, rgba(228, 212, 143, 0), rgba(228, 212, 143, 0.45), rgba(228, 212, 143, 0));
}

.signal-metric-value {
  margin: 0;
  color: #f2f7fd;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.52rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.signal-metric-label {
  margin: 0.26rem 0 0;
  color: #aebfd0;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.45;
}

.pricing-metrics {
  margin: 0 0 clamp(1rem, 2vw, 1.4rem);
  padding-top: 0.52rem;
  padding-bottom: 0.52rem;
}

.pricing-overview-kicker {
  margin: 0 0 0.5rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.audience-intel-section .section-header {
  margin-bottom: clamp(0.95rem, 1.8vw, 1.35rem);
}

.audience-intel-section .section-text {
  max-width: 720px;
}

.audience-intel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(0.95rem, 1.9vw, 1.3rem);
  align-items: start;
}

.audience-block-label {
  margin: 0 0 0.58rem;
  color: var(--gold-light);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.audience-lane-list {
  display: grid;
  gap: 0.68rem;
}

.audience-lane {
  position: relative;
  background: linear-gradient(145deg, rgba(18, 30, 42, 0.68), rgba(13, 23, 34, 0.52));
  border: 1px solid rgba(228, 212, 143, 0.18);
  border-radius: 12px;
  padding: 0.82rem 0.92rem 0.86rem 0.98rem;
  overflow: hidden;
}

.audience-lane::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(228, 212, 143, 0), rgba(228, 212, 143, 0.62), rgba(228, 212, 143, 0));
}

.audience-lane h3 {
  margin: 0 0 0.32rem;
  color: #eef5fc;
  font-size: 1rem;
  line-height: 1.32;
}

.audience-lane p {
  margin: 0;
  color: #b7c6d5;
  font-size: 0.88rem;
  line-height: 1.47;
}

.audience-lane .audience-role-kicker {
  margin: 0 0 0.28rem;
  color: var(--gold-light);
  font-size: 0.67rem;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.audience-intel-layout .faq-list {
  margin: 0;
  display: grid;
  gap: 0.68rem;
  border-top: none;
}

.audience-intel-layout .faq-item {
  border: 1px solid rgba(228, 212, 143, 0.24);
  border-radius: 11px;
  background: linear-gradient(160deg, rgba(17, 28, 39, 0.84), rgba(14, 22, 33, 0.78));
  overflow: hidden;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.audience-intel-layout .faq-item:hover {
  border-color: rgba(228, 212, 143, 0.42);
  box-shadow: 0 7px 18px rgba(2, 4, 8, 0.2);
  transform: translateY(-1px);
}

.audience-intel-layout .faq-trigger {
  padding: 0.86rem 0.96rem;
  font-size: 0.93rem;
  font-weight: 650;
}

.audience-intel-layout .faq-panel p {
  padding: 0 0.96rem 0.9rem;
  font-size: 0.88rem;
  line-height: 1.52;
}

.audience-intel-layout .faq-item[data-open='true'] {
  border-color: rgba(228, 212, 143, 0.48);
  box-shadow: 0 0 0 1px rgba(228, 212, 143, 0.14), 0 8px 20px rgba(2, 5, 10, 0.26);
}

@media (max-width: 700px) {
  .logo-marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
  }

  .logo-marquee-track {
    gap: 2.2rem;
  }

  .logo-marquee-item {
    min-width: 150px;
  }

  .plan-spotlight-grid.plan-spotlight-grid-home {
    grid-template-columns: 1fr;
  }

  .signal-metrics {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .signal-metric {
    text-align: left;
    padding: 0.62rem 0.2rem;
  }

  .signal-metric + .signal-metric::before {
    display: none;
  }

  .signal-metric:not(:first-child) {
    border-top: 1px solid rgba(228, 212, 143, 0.14);
  }

  .pricing-overview-kicker {
    text-align: left;
    margin-bottom: 0.46rem;
    padding-left: 0.06rem;
  }

  .pricing-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.56rem;
    border-top: none;
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0.98rem;
  }

  .pricing-metrics .signal-metric {
    text-align: center;
    padding: 0.68rem 0.58rem;
    border: 1px solid rgba(228, 212, 143, 0.24);
    border-radius: 12px;
    background: linear-gradient(165deg, rgba(17, 29, 41, 0.82), rgba(10, 17, 26, 0.78));
    box-shadow: inset 0 0 0 1px rgba(228, 212, 143, 0.08);
    min-height: 86px;
    display: grid;
    align-content: center;
    gap: 0.18rem;
  }

  .pricing-metrics .signal-metric + .signal-metric::before {
    display: none;
  }

  .pricing-metrics .signal-metric:not(:first-child) {
    border-top: none;
  }

  .pricing-metrics .signal-metric-value {
    font-size: 1.05rem;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .pricing-metrics .signal-metric-label {
    margin-top: 0.1rem;
    font-size: 0.64rem;
    letter-spacing: 0.085em;
    line-height: 1.3;
    color: #c5d3df;
  }

  .social-proof-kicker,
  .social-proof-caption {
    text-align: left;
  }

  .voice-quote-top {
    text-align: left;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .voice-quote-top::before {
    left: 0.2rem;
    transform: none;
  }

  .voice-quote-bottom {
    padding-left: 0.9rem;
  }

  .proof-stage {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .proof-callout {
    padding: 1rem 0.15rem 0 0.15rem;
  }

  .audience-intel-layout {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .audience-lane {
    padding-right: 0.86rem;
  }


}

@media (max-width: 1200px) and (min-width: 701px) {
  .plan-spotlight-grid.plan-spotlight-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .signal-metric:nth-child(odd)::before {
    display: none;
  }

  .signal-metric:nth-child(n + 3) {
    border-top: 1px solid rgba(228, 212, 143, 0.14);
  }

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

  .audience-intel-layout {
    grid-template-columns: minmax(0, 1fr);
  }


}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
  }

  .logo-marquee-item img {
    filter: brightness(0) invert(1);
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  :root {
    --section-space-y: clamp(2.2rem, 7.6vw, 2.9rem);
    --section-space-y-tight: clamp(1.4rem, 4.8vw, 1.9rem);
    --stack-gap-lg: clamp(1.05rem, 3.8vw, 1.5rem);
    --stack-gap-md: clamp(0.72rem, 3vw, 0.98rem);
  }

  .reveal,
  .reveal.revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .shine-title {
    animation: none;
    background-position: 0 0;
  }


}


/* ==========================================================
   2026 CREATIVE DIRECTION PASS
   ========================================================== */
body.home-page .hero-content {
  width: min(100%, 1080px);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  justify-items: center;
  gap: clamp(0.95rem, 1.8vw, 1.4rem);
}

body.home-page .hero-title {
  font-size: clamp(2.85rem, 7.4vw, 5.55rem);
  line-height: 0.98;
  max-width: 16ch;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
}

body.home-page .hero-subtitle {
  max-width: 56ch;
  font-size: clamp(1rem, 1.45vw, 1.17rem);
  line-height: 1.58;
  margin: 0 auto;
}


body.home-page .market-signal-section .section-header {
  margin-bottom: clamp(0.85rem, 1.6vw, 1.2rem);
}


body.home-page .proof-stage {
  gap: clamp(0.75rem, 1.4vw, 1rem);
}

body.home-page .proof-callout {
  border-left-width: 3px;
  border-radius: 0 14px 14px 0;
  box-shadow: inset 0 0 0 1px rgba(228, 212, 143, 0.08);
}

.transformation-section .section-header {
  max-width: 880px;
  margin-bottom: clamp(1rem, 1.8vw, 1.4rem);
}


.comparison-pane {
  position: absolute;
  inset: 0;
  padding: clamp(1rem, 2.2vw, 1.6rem);
  display: grid;
  align-content: center;
  gap: 0.42rem;
}

.comparison-content {
  width: min(44%, 480px);
  display: grid;
  gap: 0.42rem;
}

.comparison-content-before {
  margin-right: auto;
  padding-right: clamp(0.9rem, 2.2vw, 1.5rem);
}

.comparison-content-after {
  margin-left: auto;
  padding-left: clamp(0.9rem, 2.2vw, 1.5rem);
}

.comparison-pane-after {
  background:
    radial-gradient(130% 130% at 15% 0%, rgba(228, 212, 143, 0.24), rgba(18, 33, 48, 0.88) 56%),
    linear-gradient(165deg, rgba(20, 34, 49, 0.94), rgba(10, 18, 28, 0.88));
}

.comparison-pane-before {
  clip-path: inset(0 50% 0 0);
  border-right: 1px solid rgba(228, 212, 143, 0.35);
  background:
    radial-gradient(130% 130% at 10% 0%, rgba(162, 180, 198, 0.24), rgba(31, 44, 58, 0.9) 58%),
    linear-gradient(165deg, rgba(30, 43, 58, 0.94), rgba(17, 26, 36, 0.88));
}

.comparison-pane-label {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.comparison-pane h3 {
  margin: 0 0 0.25rem;
  color: #f3f8ff;
  font-size: clamp(1.3rem, 2.35vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.comparison-pane ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.comparison-pane li {
  position: relative;
  padding-left: 1.05rem;
  color: #dbe8f4;
  font-size: 0.95rem;
  line-height: 1.48;
}

.comparison-pane li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: rgba(228, 212, 143, 0.9);
  box-shadow: 0 0 0 4px rgba(228, 212, 143, 0.13);
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(228, 212, 143, 0.3), rgba(255, 255, 255, 0.75), rgba(228, 212, 143, 0.3));
  pointer-events: auto;
  cursor: col-resize;
}

.comparison-handle {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(228, 212, 143, 0.72);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(10, 17, 26, 0.95), rgba(20, 31, 43, 0.95));
  color: #f6e7aa;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(1, 3, 7, 0.35);
  cursor: col-resize;
}

.comparison-instruction {
  margin: 0.56rem 0 0;
  text-align: center;
  color: #a9bdcf;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

body.home-page .growth-system-section .section-text {
  max-width: 56ch;
}


body.home-page .system-tab.is-active,


body.home-page .section-tight.cta-section {
  padding-top: clamp(2.4rem, 4.2vw, 3rem);
}


@media (max-width: 700px) {
  body.home-page .hero-title {
    max-width: 12ch;
  }


  .comparison-pane {
    padding: 0.9rem 0.85rem;
  }

  .comparison-content {
    width: min(46%, 210px);
    gap: 0.35rem;
  }

  .comparison-content-before {
    padding-right: 0.8rem;
  }

  .comparison-content-after {
    padding-left: 0.8rem;
  }

  .comparison-pane h3 {
    font-size: clamp(1rem, 5.1vw, 1.28rem);
  }

  .comparison-pane li {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .comparison-pane-before {
    clip-path: inset(0 45% 0 0);
  }

  .comparison-instruction {
    font-size: 0.75rem;
  }


}


/* ==========================================================
   2026 HERO + COMPARISON + GROWTH REDESIGN
   ========================================================== */


.hero-signal-icon-shell {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  border: 1px solid rgba(228, 212, 143, 0.44);
  background: linear-gradient(150deg, rgba(16, 27, 39, 0.98), rgba(9, 16, 25, 0.98));
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(228, 212, 143, 0.1), 0 14px 22px rgba(1, 4, 8, 0.24);
  overflow: hidden;
}

.hero-signal-icon-shell::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  border: 1px solid rgba(228, 212, 143, 0.16);
}

.hero-signal-lens {
  position: absolute;
  inset: -38%;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 245, 198, 0.5) 50%, transparent 66%);
  opacity: 0;
  transform: translateX(-42%);
}


.hero-signal-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  color: var(--gold-light);
}

.hero-signal-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(228, 212, 143, 0.16));
}

.hero-signal-copy {
  position: relative;
  z-index: 1;
}

.hero-signal-label {
  margin: 0 0 0.28rem;
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-signal-value {
  margin: 0 0 0.36rem;
  color: #f3f8ff;
  font-size: clamp(1.34rem, 2vw, 1.78rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-signal-detail {
  margin: 0;
  max-width: 44ch;
  color: #c7d5e2;
  font-size: 0.94rem;
  line-height: 1.56;
}

.hero-signal-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-signal-trigger {
  border: 1px solid rgba(157, 179, 201, 0.2);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(14, 24, 35, 0.7), rgba(8, 14, 22, 0.72));
  color: #c7d6e3;
  padding: 0.68rem 0.78rem;
  text-align: left;
  display: grid;
  gap: 0.14rem;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.hero-signal-trigger:hover,
.hero-signal-trigger:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(228, 212, 143, 0.52);
  color: #eef5fc;
}

.hero-signal-trigger.is-active {
  border-color: rgba(228, 212, 143, 0.68);
  box-shadow: 0 0 0 1px rgba(228, 212, 143, 0.14), 0 10px 18px rgba(2, 5, 9, 0.2);
  color: #f5fbff;
}

.hero-signal-trigger-index {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-signal-trigger-text {
  font-size: 0.86rem;
  line-height: 1.26;
  font-weight: 650;
}


.hero-trust-kicker {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.hero-trust-stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 70px;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(228, 212, 143, 0.3);
  border-radius: 20px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(228, 212, 143, 0.12), rgba(10, 18, 27, 0) 54%),
    linear-gradient(160deg, rgba(17, 29, 41, 0.9), rgba(9, 16, 25, 0.88));
  box-shadow: inset 0 0 0 1px rgba(228, 212, 143, 0.06);
  overflow: hidden;
}

.hero-trust-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(228, 212, 143, 0.08), rgba(228, 212, 143, 0));
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 88%);
  pointer-events: none;
}

.hero-trust-beacon {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff0ba 0%, #d8b263 72%);
  box-shadow: 0 0 0 7px rgba(228, 212, 143, 0.12);
}

.hero-trust-beacon::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(228, 212, 143, 0.32);
  animation: beaconPulse 2.4s ease-out infinite;
}

.hero-trust-text {
  margin: 0;
  color: #eff6fd;
  font-size: clamp(1.02rem, 1.65vw, 1.24rem);
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.hero-trust-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.hero-trust-trigger {
  border: 1px solid rgba(157, 179, 201, 0.18);
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  background: rgba(14, 24, 35, 0.62);
  color: #c3d2df;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero-trust-trigger:hover,
.hero-trust-trigger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(228, 212, 143, 0.42);
  color: #edf4fb;
}

.hero-trust-trigger.is-active {
  border-color: rgba(228, 212, 143, 0.66);
  background: rgba(18, 30, 42, 0.86);
  color: var(--gold-light);
}


.comparison-mode-toggle {
  width: fit-content;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.26rem;
  border: 1px solid rgba(228, 212, 143, 0.26);
  border-radius: 999px;
  background: rgba(11, 18, 28, 0.72);
  box-shadow: inset 0 0 0 1px rgba(228, 212, 143, 0.06);
}

.comparison-mode-button {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #bcccdc;
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.comparison-mode-button.is-active {
  background: linear-gradient(145deg, rgba(228, 212, 143, 0.22), rgba(228, 212, 143, 0.08));
  color: #fff1b8;
  box-shadow: 0 0 0 1px rgba(228, 212, 143, 0.18);
}


.growth-system-section .service-preview-main {
  gap: 0.42rem;
}


@keyframes signalLensFlash {
  0% {
    opacity: 0;
    transform: translateX(-42%);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(42%);
  }
}


@media (max-width: 700px) {

  .hero-signal-detail {
    max-width: 32ch;
  }

  .hero-signal-nav {
    grid-template-columns: 1fr;
  }

  .hero-trust-kicker {
    text-align: left;
  }

  .hero-trust-stage {
    min-height: 78px;
    border-radius: 18px;
  }

  .hero-trust-nav {
    justify-content: flex-start;
  }

  .comparison-mode-toggle {
    width: 100%;
    justify-content: center;
  }

  .comparison-mode-button {
    flex: 1 1 0;
  }


}


/* ==========================================================
   2026 REFINEMENT PASS
   ========================================================== */
.hero-signal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-signal-trigger {
  width: auto;
  min-width: 148px;
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.36rem;
}

.hero-signal-trigger-index {
  padding-right: 0.38rem;
  border-right: 1px solid rgba(228, 212, 143, 0.18);
}

.hero-signal-trigger-text {
  white-space: nowrap;
}


.comparison-mode-toggle {
  margin-bottom: 0.15rem;
}


.comparison-instruction {
  margin: 0.05rem 0 0;
  text-align: center;
  color: var(--text-muted);
}


@media (max-width: 700px) {
  .hero-signal-nav {
    justify-content: stretch;
  }

  .hero-signal-trigger {
    width: 100%;
    min-width: 0;
    border-radius: 16px;
    grid-template-columns: auto 1fr;
  }


}


/* ==========================================================
   2026 STABILITY + CLARITY PASS
   ========================================================== */


.hero-signal-copy {
  display: grid;
  gap: 0.18rem;
}

.hero-signal-value {
  max-width: 14ch;
  transition: opacity 0.42s ease, filter 0.42s ease, transform 0.42s ease;
}

.hero-signal-value.is-swapping {
  opacity: 0.14;
  filter: blur(6px);
  transform: translateY(4px);
}

.hero-signal-detail {
  max-width: 38ch;
}

.hero-signal-nav {
  justify-content: flex-start;
}

.hero-signal-trigger {
  min-width: 128px;
}


.hero-principles {
  width: min(100%, 960px);
  margin: clamp(2rem, 3.8vw, 2.9rem) auto 0;
  padding-top: clamp(0.55rem, 1.2vw, 0.9rem);
  display: grid;
  gap: 0.9rem;
}


.hero-principle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff2bc 0%, #d8b263 72%);
  box-shadow: 0 0 0 6px rgba(228, 212, 143, 0.1);
}

.hero-principle-index {
  display: inline-block;
  margin-bottom: 0.28rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-principle h3 {
  margin: 0 0 0.25rem;
  color: #f0f6fd;
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-principle p {
  margin: 0;
  max-width: 25ch;
  margin-left: auto;
  margin-right: auto;
  color: #c9d6e1;
  font-size: 0.89rem;
  line-height: 1.55;
}

body.home-page .market-signal-section {
  padding-top: clamp(4.8rem, 7vw, 6rem);
}


@media (max-width: 900px) {


  .hero-signal-copy {
    justify-items: center;
  }

  .hero-signal-nav {
    justify-content: stretch;
  }

}

@media (max-width: 700px) {
  .hero-signal-trigger {
    min-width: 0;
  }

  .hero-principle {
    padding-left: 0.88rem;
  }
}

/* ==========================================================
   2026 HERO + COMPARISON CLEANUP PASS
   ========================================================== */
.hero-howitworks {
  width: min(100%, 680px);
  margin: clamp(1rem, 2vw, 1.45rem) auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  justify-items: center;
}

.hero-howitworks-stage {
  display: grid;
  gap: 0.82rem;
  justify-items: center;
  text-align: center;
  width: 100%;
}

.hero-howitworks-kicker {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-howitworks-main {
  display: grid;
  gap: 0.24rem;
  min-height: 0;
  justify-items: center;
}

.hero-howitworks-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
  justify-items: center;
  transition: opacity 0.28s ease, filter 0.28s ease, transform 0.28s ease;
}

.hero-howitworks-main.is-copy-swapping .hero-howitworks-copy {
  opacity: 0.38;
  filter: blur(2.5px);
  transform: translateY(4px);
}

.hero-howitworks-label {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-howitworks-value {
  margin: 0;
  max-width: 12ch;
  color: #f3f8ff;
  font-size: clamp(1.72rem, 2.7vw, 2.35rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
}

.hero-howitworks-detail {
  margin: 0;
  max-width: 36ch;
  color: #c8d6e2;
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-howitworks-selector {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  min-height: 108px;
  width: min(100%, 320px);
}

.hero-howitworks-node {
  position: relative;
  width: 88px;
  height: 88px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.32s ease, opacity 0.32s ease;
}

.hero-howitworks-node-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(228, 212, 143, 0.36);
  background: linear-gradient(150deg, rgba(16, 27, 39, 0.82), rgba(9, 16, 25, 0.76));
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(228, 212, 143, 0.08), 0 14px 22px rgba(1, 4, 8, 0.16);
}

.hero-howitworks-node-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  border: 1px solid rgba(228, 212, 143, 0.14);
}

.hero-howitworks-node-frame::after {
  content: '';
  position: absolute;
  inset: -42%;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 245, 198, 0.34) 50%, transparent 66%);
  opacity: 0;
  transform: translateX(-42%);
}

.hero-howitworks-node.is-active .hero-howitworks-node-frame::after {
  animation: signalLensFlash 0.8s ease;
}

.hero-howitworks-node-frame svg {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--gold-light);
  filter: drop-shadow(0 0 12px rgba(228, 212, 143, 0.14));
}

.hero-howitworks-node:hover,
.hero-howitworks-node:focus-visible {
  opacity: 0.96;
  filter: blur(0.25px);
}

.hero-howitworks-node:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

.hero-howitworks-node:focus-visible .hero-howitworks-node-frame {
  box-shadow:
    inset 0 0 0 1px rgba(228, 212, 143, 0.08),
    0 0 0 2px rgba(255, 241, 184, 0.34),
    0 14px 22px rgba(1, 4, 8, 0.16);
}

.hero-howitworks-node.is-left {
  order: 1;
  z-index: 1;
  transform: translateX(20px) translateY(8px) scale(0.82);
  opacity: 0.66;
  filter: blur(1.15px);
}

.hero-howitworks-node.is-center {
  order: 2;
  z-index: 3;
  transform: translateY(0) scale(1.06);
  opacity: 1;
  filter: none;
}

.hero-howitworks-node.is-right {
  order: 3;
  z-index: 1;
  transform: translateX(-20px) translateY(8px) scale(0.82);
  opacity: 0.66;
  filter: blur(1.15px);
}

.hero-howitworks-node.is-active .hero-howitworks-node-frame {
  border-color: rgba(228, 212, 143, 0.64);
  background: linear-gradient(145deg, rgba(228, 212, 143, 0.14), rgba(12, 19, 28, 0.84));
  box-shadow:
    inset 0 0 0 1px rgba(228, 212, 143, 0.08),
    0 0 0 1px rgba(228, 212, 143, 0.14),
    0 20px 30px rgba(1, 4, 8, 0.22);
}

.comparison-switch-stage {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 1.8vw, 1.28rem);
  border: 1px solid rgba(228, 212, 143, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(228, 212, 143, 0.1), rgba(228, 212, 143, 0) 52%),
    linear-gradient(170deg, rgba(15, 24, 35, 0.82), rgba(9, 16, 24, 0.8));
  box-shadow: 0 24px 48px rgba(2, 5, 9, 0.24), inset 0 0 0 1px rgba(228, 212, 143, 0.04);
}

.comparison-switch-toggle {
  width: fit-content;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.26rem;
  border: 1px solid rgba(228, 212, 143, 0.24);
  border-radius: 999px;
  background: rgba(11, 18, 28, 0.72);
  box-shadow: inset 0 0 0 1px rgba(228, 212, 143, 0.05);
}

.comparison-switch-button {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #bcccdc;
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.comparison-switch-button.is-active {
  background: linear-gradient(145deg, rgba(228, 212, 143, 0.22), rgba(228, 212, 143, 0.08));
  color: #fff1b8;
  box-shadow: 0 0 0 1px rgba(228, 212, 143, 0.18);
}

.comparison-switch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.05rem);
}

.comparison-switch-card {
  min-height: 320px;
}

.comparison-switch-panel {
  position: relative;
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(228, 212, 143, 0.2);
  padding: clamp(1.2rem, 2vw, 1.45rem);
  display: grid;
  align-content: start;
  gap: 0.72rem;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(2, 6, 10, 0.24);
}

.comparison-switch-panel[hidden] {
  display: none;
}

.comparison-switch-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('logo-mark-watermark.svg') center / 58% auto no-repeat;
  opacity: 0.024;
  pointer-events: none;
}

.comparison-switch-panel > * {
  position: relative;
  z-index: 1;
}

.comparison-switch-panel-before {
  background:
    radial-gradient(135% 160% at 0% 0%, rgba(160, 178, 198, 0.2), rgba(12, 20, 29, 0) 58%),
    linear-gradient(160deg, rgba(26, 39, 53, 0.99), rgba(15, 24, 34, 0.98));
}

.comparison-switch-panel-after {
  background:
    radial-gradient(135% 160% at 0% 0%, rgba(228, 212, 143, 0.22), rgba(12, 20, 29, 0) 58%),
    linear-gradient(160deg, rgba(21, 34, 48, 0.99), rgba(10, 18, 27, 0.98));
}

.comparison-switch-label {
  width: fit-content;
  margin: 0;
  padding: 0.24rem 0.56rem;
  border-radius: 999px;
  background: rgba(228, 212, 143, 0.08);
  border: 1px solid rgba(228, 212, 143, 0.18);
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.comparison-switch-panel h3 {
  margin: 0;
  max-width: 10ch;
  color: #f2f7fd;
  font-size: clamp(1.42rem, 2.1vw, 1.88rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.comparison-switch-panel p:last-child {
  margin: 0;
  max-width: 28ch;
  color: #d6e3ee;
  font-size: 0.96rem;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .hero-howitworks {
    justify-items: center;
    text-align: center;
  }

  .hero-howitworks-stage {
    width: min(100%, 430px);
  }

  .hero-howitworks-main {
    justify-items: center;
  }

  .hero-howitworks-copy {
    justify-items: center;
  }

  .hero-howitworks-selector {
    width: min(100%, 300px);
  }

  .hero-howitworks-detail {
    margin: 0 auto;
    text-align: center;
  }

  .hero-howitworks-selector {
    justify-content: center;
  }

  .comparison-switch-grid {
    grid-template-columns: 1fr;
  }

  .comparison-switch-card {
    min-height: 250px;
  }
}

@media (max-width: 700px) {
  .hero-howitworks-selector {
    min-height: 94px;
    width: min(100%, 260px);
  }

  .hero-howitworks-node {
    width: 76px;
    height: 76px;
  }

  .hero-howitworks-node.is-left {
    transform: translateX(14px) translateY(7px) scale(0.8);
  }

  .hero-howitworks-node.is-right {
    transform: translateX(-14px) translateY(7px) scale(0.8);
  }

  .hero-howitworks-node-frame {
    border-radius: 22px;
  }

  .hero-howitworks-node-frame::before {
    inset: 7px;
    border-radius: 16px;
  }

  .hero-howitworks-node-frame svg {
    width: 34px;
    height: 34px;
  }

  .hero-howitworks-value {
    font-size: clamp(1.56rem, 8vw, 2.2rem);
  }

  .comparison-switch-stage {
    padding: 0.9rem;
    border-radius: 22px;
  }

  .comparison-switch-toggle {
    width: 100%;
    justify-content: center;
  }

  .comparison-switch-button {
    flex: 1 1 0;
  }

  .comparison-switch-grid {
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
    justify-content: flex-start;
  }

  .comparison-switch-grid::-webkit-scrollbar {
    display: none;
  }

  .comparison-switch-card {
    min-height: 220px;
    scroll-snap-align: center;
  }

  .comparison-switch-panel {
    border-radius: 20px;
    padding: 1rem 0.95rem;
  }

  .comparison-switch-panel h3 {
    font-size: 1.28rem;
  }

  .comparison-switch-panel p:last-child {
    font-size: 0.9rem;
    line-height: 1.52;
  }
}

/* ==========================================================
   2026 HERO COMPRESSION + FILE TAB ROLADEX
   ========================================================== */
.hero-brand-mark {
  margin: 0 auto;
  width: min(100%, 250px);
  display: grid;
  place-items: center;
}

.hero-brand-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 14px 26px rgba(2, 5, 9, 0.24));
}

.hero-proof-reel {
  width: min(100%, 760px);
  margin: clamp(1.35rem, 2.3vw, 1.8rem) auto 0;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
}

.hero-proof-reel-kicker {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-proof-reel-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.hero-proof-reel-track {
  display: flex;
  flex-direction: row;
  will-change: transform;
  transition: transform 880ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-proof-reel-slide {
  flex: 0 0 100%;
  min-height: 84px;
  width: 100%;
  padding: 0.2rem 1.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, auto);
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.hero-proof-reel-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(228, 212, 143, 0.34);
  background: linear-gradient(145deg, rgba(228, 212, 143, 0.16), rgba(228, 212, 143, 0.05));
  color: var(--gold-light);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(228, 212, 143, 0.08);
}

.hero-proof-reel-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof-reel-copy {
  display: grid;
  gap: 0.14rem;
  justify-items: center;
  text-align: center;
  max-width: 36ch;
}

.hero-proof-reel-title {
  margin: 0;
  color: #f2f7fd;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.26;
}

.hero-proof-reel-detail {
  margin: 0;
  color: #c6d4df;
  font-size: 0.88rem;
  line-height: 1.5;
}

.growth-roledex {
  margin-top: clamp(1rem, 2vw, 1.35rem);
  padding-top: 2px; /* prevents overflow-y:auto clip from eating icon borders */
}

.growth-roledex-hint {
  margin: 0 0 0.7rem;
  color: var(--gold-light);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.growth-system-section .file-tabs__strip {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
  align-items: flex-end;
  padding-top: 10px; /* room above icons — overflow-y:auto clips without this */
  padding-bottom: 0;
}

.growth-system-section .file-tabs__strip::-webkit-scrollbar {
  display: none;
}

.growth-system-section .ftab {
  flex: 1 0 112px;
  min-width: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.34rem;
  padding: 0.85rem 0.62rem 0.95rem;
  background: rgba(11, 18, 28, 0.9);
  border: 1px solid rgba(228, 212, 143, 0.14);
  border-radius: 14px 14px 0 0;
  color: #7f93a8;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  position: relative;
}

.growth-system-section .ftab:hover:not(.ftab--active),
.growth-system-section .ftab:focus-visible:not(.ftab--active) {
  color: #b8c8d7;
  background: rgba(20, 31, 43, 0.9);
}

.growth-system-section .ftab--active {
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(228, 212, 143, 0.16), rgba(18, 28, 40, 0.98) 62%),
    linear-gradient(160deg, rgba(25, 37, 50, 0.98), rgba(13, 21, 30, 0.98));
  border-color: rgba(228, 212, 143, 0.38);
  border-bottom: 2px solid rgba(25, 37, 50, 0.98);
  color: var(--gold-light);
  margin-bottom: -1px;
  z-index: 2;
}

.growth-system-section .ftab__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 212, 143, 0.06);
  border: 1px solid rgba(228, 212, 143, 0.16);
  border-radius: 12px;
  flex-shrink: 0;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.growth-system-section .ftab--active .ftab__icon {
  background: rgba(228, 212, 143, 0.16);
  border-color: rgba(228, 212, 143, 0.38);
}

.growth-system-section .ftab:hover:not(.ftab--active) .ftab__icon {
  background: rgba(228, 212, 143, 0.09);
  border-color: rgba(228, 212, 143, 0.22);
}

.growth-system-section .ftab__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.growth-system-section .ftab__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: inherit;
}

.growth-system-section .file-tabs__body {
  display: grid;
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(228, 212, 143, 0.14), rgba(18, 28, 40, 0.98) 62%),
    linear-gradient(160deg, rgba(25, 37, 50, 0.98), rgba(13, 21, 30, 0.98));
  border: 1px solid rgba(228, 212, 143, 0.18);
  border-top: none;
  border-radius: 0 0 24px 24px;
  min-height: 0;
  overflow: hidden;
  perspective: 900px;
  position: relative;
  z-index: 1;
  box-shadow: 0 28px 44px rgba(2, 5, 9, 0.2), inset 0 0 0 1px rgba(228, 212, 143, 0.04);
}

.growth-system-section .ftab-panel {
  grid-area: 1 / 1;
  padding: clamp(1.15rem, 2vw, 1.5rem);
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  backface-visibility: hidden;
}

.growth-system-section .ftab-panel--active {
  opacity: 1;
  pointer-events: auto;
}

.growth-system-section .ftab-panel[hidden] {
  display: none;
}

.growth-system-section .ftab-panel--exiting {
  animation: ftab-fold-out 0.22s cubic-bezier(0.55, 0, 1, 0.45) forwards;
  z-index: 2;
}

.growth-system-section .ftab-panel--entering {
  animation: ftab-fold-in 0.3s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}

@keyframes ftab-fold-out {
  from { opacity: 1; transform: rotateX(0deg); }
  to { opacity: 0; transform: rotateX(-90deg); }
}

@keyframes ftab-fold-in {
  from { opacity: 0; transform: rotateX(90deg); }
  to { opacity: 1; transform: rotateX(0deg); }
}

.growth-system-section .ftp-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 0.76fr);
  align-items: start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(228, 212, 143, 0.12);
}

.growth-system-section .ftp-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 212, 143, 0.08);
  border: 1px solid rgba(228, 212, 143, 0.24);
  border-radius: 18px;
  color: var(--gold-light);
}

.growth-system-section .ftp-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.growth-system-section .ftp-title-block {
  min-width: 0;
}

.growth-system-section .ftp-title {
  font-size: clamp(1.42rem, 2vw, 1.84rem);
  margin: 0 0 0.2rem;
  color: #f5fbff;
}

.growth-system-section .ftp-subtitle {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.growth-system-section .ftp-summary {
  margin: 0.25rem 0 0;
  color: #c9d6e2;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 58ch;
}

.growth-system-section .ftp-outcome {
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(196, 154, 82, 0.22), rgba(228, 212, 143, 0.08));
  border: 1.5px solid rgba(196, 154, 82, 0.52);
  box-shadow: 0 0 28px rgba(196, 154, 82, 0.14), inset 0 1px 0 rgba(228, 212, 143, 0.20);
  position: relative;
  overflow: hidden;
}

.growth-system-section .ftp-outcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 212, 143, 0.5), transparent);
  pointer-events: none;
}

.growth-system-section .ftp-outcome-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.growth-system-section .ftp-outcome-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--gold-dark);
  border-radius: 2px;
  flex-shrink: 0;
}

.growth-system-section .ftp-outcome p {
  margin: 0;
  color: #f0f7ff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.growth-system-section .ftp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.growth-system-section .ftp-grid > div {
  border-radius: 18px;
  border: 1px solid rgba(228, 212, 143, 0.12);
  background: rgba(9, 16, 24, 0.48);
  padding: 0.95rem 1rem;
}

.growth-system-section .ftp-grid h4 {
  margin: 0 0 0.4rem;
  color: #f1f7fd;
  font-size: 0.94rem;
  line-height: 1.24;
}

.growth-system-section .ftp-grid p {
  margin: 0;
  color: #c9d6e2;
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .growth-system-section .ftp-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .growth-system-section .ftp-outcome {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  body.home-page .hero-content {
    width: min(100%, 760px);
    gap: 1.1rem;
  }

  .hero-brand-mark {
    width: min(100%, 210px);
    margin-bottom: 1rem;
  }

  .hero-proof-reel {
    width: min(100%, 640px);
  }

  .growth-system-section .file-tabs__body {
    min-height: 0;
  }

  .growth-system-section .ftp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --section-space-y: clamp(4rem, 10vw, 5rem);
    --section-space-y-tight: clamp(2.6rem, 7.4vw, 3.2rem);
    --stack-gap-lg: clamp(1.55rem, 4vw, 1.95rem);
  }

  body.home-page .hero {
    padding-top: clamp(7rem, 18vw, 8.3rem);
    padding-bottom: clamp(4.6rem, 12vw, 5.4rem);
  }

  body.home-page .hero-content {
    width: min(100%, 34rem);
    gap: 1rem;
  }

  .hero-proof-reel-slide {
    min-height: 110px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.7rem;
    padding: 0.35rem 1.25rem;
  }

  .hero-proof-reel-copy {
    text-align: center;
  }

  .hero-principles {
    margin-top: 2.3rem;
    gap: 1rem;
  }

  .hero-principle {
    padding: 1rem 0.35rem 0 0.35rem;
  }

  body.home-page .market-signal-section {
    padding-top: clamp(4rem, 11vw, 4.8rem);
  }

  .growth-roledex-hint {
    text-align: left;
  }

  .growth-system-section .ftab {
    min-width: 70px;
    padding: 0.78rem 0.38rem 0.88rem;
  }

  .growth-system-section .ftab__label {
    display: none;
  }

  .growth-system-section .ftab__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .growth-system-section .ftab__icon svg {
    width: 18px;
    height: 18px;
  }

  .growth-system-section .ftp-header {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .growth-system-section .ftp-icon {
    width: 58px;
    height: 58px;
  }

  .growth-system-section .ftp-summary,
  .growth-system-section .ftp-outcome p {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-proof-reel-track,
  .growth-system-section .ftab-panel--exiting,
  .growth-system-section .ftab-panel--entering {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ==========================================================
   PHASE 2: COMPONENT LIBRARY INTEGRATIONS
   ========================================================== */

/* ── TESTIMONIAL WALL ──────────────────────────────────── */
.tw-section { padding: 4rem 0; }

.tw-header { text-align: center; margin-bottom: 3rem; }

.tw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  background: rgba(228, 212, 143, 0.08);
  border: 1px solid rgba(215, 201, 129, 0.3);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.tw-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.tw-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.tw-wall { columns: 3; column-gap: 1.25rem; }
@media (max-width: 860px) { .tw-wall { columns: 2; } }
@media (max-width: 520px) { .tw-wall { columns: 1; } }

.tw-card {
  break-inside: avoid;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--gold-dark);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.tw-card--visible { opacity: 1; transform: translateY(0); }
.tw-card:hover { border-color: var(--line-strong); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

.tw-stars { display: flex; gap: 2px; color: var(--gold-light); font-size: 0.875rem; }

.tw-quote { font-size: 0.9375rem; color: var(--text-gray); line-height: 1.7; font-style: italic; }
.tw-quote::before { content: '\201C'; }
.tw-quote::after  { content: '\201D'; }

.tw-reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-soft);
}

.tw-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(228, 212, 143, 0.1);
  border: 1px solid rgba(228, 212, 143, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}

.tw-name { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 600; }
.tw-role { font-size: 0.8125rem; color: var(--text-muted); }


/* ── GLASSMORPHISM PRICING TREATMENT ──────────────────── */
.pricing-cards-tier .tier-card {
  background: rgba(17, 28, 39, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-cards-tier .tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 20px 60px rgba(0,0,0,0.3);
}
.pricing-cards-tier .tier-card.popular {
  border-color: rgba(228, 212, 143, 0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 40px rgba(228,212,143,0.08);
}
.pricing-cards-tier .tier-card.popular:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 60px rgba(228,212,143,0.12), 0 20px 60px rgba(0,0,0,0.3);
}


/* ── LOGO MARQUEE CSS-ONLY ────────────────────────────── */
.logo-marquee-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1rem;
  font-style: italic;
}

.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 25s linear infinite;
  width: max-content;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
}


/* ── STATS COUNTER ────────────────────────────────────── */
.sc-section { max-width: 900px; margin: 0 auto; padding: 2rem 0; }

.sc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 600px) { .sc-grid { grid-template-columns: 1fr; } }

.sc-stat {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.sc-stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold-light);
  border-radius: 1px;
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 12px rgba(228, 212, 143, 0.25);
}
.sc-stat.sc-done::after { width: 60%; }

.sc-number-wrap { display: flex; align-items: baseline; gap: 2px; }

.sc-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: text-shadow 0.3s ease;
}

.sc-stat.sc-done .sc-number {
  text-shadow: 0 0 40px rgba(228,212,143,0.25), 0 0 80px rgba(228,212,143,0.1);
}

.sc-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.sc-label { font-size: 0.875rem; color: var(--text-gray); line-height: 1.4; }
.sc-stat[data-counted="false"] .sc-number { opacity: 0.3; }


/* ── BUTTON SHIMMER (Primary CTAs) ────────────────────── */
.btn.btn-primary { position: relative; overflow: hidden; }

.btn.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
  pointer-events: none;
}

.btn.btn-primary:hover::after {
  animation: btn-shimmer 0.75s ease forwards;
}

@keyframes btn-shimmer {
  0%   { left: -100%; }
  100% { left: 150%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn.btn-primary::after { display: none; }
}


/* ── ACCORDION FAQ (pricing page) ────────────────────── */
.ac-wrapper { max-width: 720px; margin: 0 auto; }

.ac-search-wrap { position: relative; margin-bottom: 1.5rem; }

.ac-search-icon {
  position: absolute; left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}

.ac-search {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease;
  min-height: 48px;
}
.ac-search::placeholder { color: var(--text-muted); }
.ac-search:focus { border-color: var(--line-strong); outline: 2px solid var(--gold-dark); outline-offset: 2px; }

.ac-no-results {
  text-align: center; padding: 2rem;
  color: var(--text-muted); font-size: 0.9375rem;
  display: none;
}
.ac-no-results.visible { display: block; }

.ac-list { display: flex; flex-direction: column; gap: 0.75rem; }

.ac-item {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease,
              border-left-color 0.3s ease, border-left-width 0.3s ease;
  border-left: 3px solid transparent;
}

.ac-item.ac-open {
  border-left-color: var(--gold-dark);
  background: var(--bg-elevated, #1b2e40);
}

.ac-item.ac-filtered {
  opacity: 0; pointer-events: none;
  max-height: 0 !important; overflow: hidden;
  margin: 0; padding: 0;
}

.ac-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none; border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600;
  text-align: left; cursor: pointer;
  transition: color 0.2s ease;
  min-height: 56px;
}
.ac-question:hover { color: var(--gold-light); }
.ac-item.ac-open .ac-question { color: var(--gold-light); }

.ac-question mark {
  background: rgba(196, 154, 82, 0.2);
  color: var(--gold-light);
  border-radius: 2px; padding: 0 1px;
}

.ac-chevron {
  flex-shrink: 0; width: 20px; height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}
.ac-item.ac-open .ac-chevron {
  transform: rotate(180deg);
  color: var(--gold-dark);
}

.ac-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.ac-item.ac-open .ac-answer { max-height: 600px; }

.ac-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.8;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.25rem;
  margin: 0 1.5rem;
}

@media (max-width: 480px) {
  .ac-question { padding: 1rem 1.25rem; font-size: 0.9375rem; }
  .ac-answer-inner { margin: 0 1.25rem; padding: 1rem 0 1.25rem; }
}


/* ── ADDONS DETAILS COLLAPSE ─────────────────────────── */
.addons-details { margin-top: 1rem; }
.addons-summary {
  cursor: pointer;
  list-style: none;
  text-align: center;
  padding: 1rem;
}
.addons-summary::-webkit-details-marker { display: none; }
.addons-summary::marker { display: none; }
.addons-toggle-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  transition: color 0.2s ease;
}
.addons-details[open] .addons-toggle-hint { color: var(--gold-light); }
.addons-details[open] .addons-toggle-hint::after { content: ' (collapse)'; }


/* ── HERO BADGE STRIP ────────────────────────────────── */
.hero-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(228, 212, 143, 0.06);
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════
   REDESIGN COMPONENTS — Added March 2026
   Hero Floating Cards | Trust Stats | Problem Section |
   Step Explainer | Bento Grid | Testimonial Grid |
   Pricing Home Grid | Final CTA
════════════════════════════════════════════════════════════ */


/* ── A. HERO FLOATING CARDS ──────────────────────────────── */

/* Hero section wrapper: full-viewport, centered content, radial glow + dot grid */
.hero-redesign {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Radial gold glow behind headline */
.hero-redesign::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(196,154,82,0.10) 0%, rgba(196,154,82,0.04) 40%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* Subtle dot-grid texture overlay */
.hero-redesign::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(148,163,184,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Center the text content above floating cards and pseudo-elements */
.hero-redesign .hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

/* Individual floating card base style */
.fr-card {
  position: absolute;
  z-index: 4;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  will-change: transform; /* GPU hint for parallax animation */
}

/* Bobbing keyframes — each card gets a slightly different speed for organic feel */
@keyframes fr-bob1 { 0%,100%{margin-top:0} 50%{margin-top:-12px} }
@keyframes fr-bob2 { 0%,100%{margin-top:0} 50%{margin-top:-10px} }
@keyframes fr-bob3 { 0%,100%{margin-top:0} 50%{margin-top:-14px} }
@keyframes fr-bob4 { 0%,100%{margin-top:0} 50%{margin-top:-8px} }
@keyframes fr-bob5 { 0%,100%{margin-top:0} 50%{margin-top:-11px} }
@keyframes fr-bob6 { 0%,100%{margin-top:0} 50%{margin-top:-13px} }

/* Position and animate each card */
.fr-card-1 { top: 12%; left:  5%; transform: rotate(-4deg); animation: fr-bob1 4.0s ease-in-out infinite; }
.fr-card-2 { top: 18%; right: 6%; transform: rotate(3deg);  animation: fr-bob2 4.8s ease-in-out infinite; }
.fr-card-3 { top: 48%; left:  2%; transform: rotate(-3deg); animation: fr-bob3 5.2s ease-in-out infinite; }
.fr-card-4 { top: 48%; right: 3%; transform: rotate(5deg);  animation: fr-bob4 3.8s ease-in-out infinite; }
.fr-card-5 { bottom:15%; left: 8%; transform: rotate(-5deg); animation: fr-bob5 4.4s ease-in-out infinite; }
.fr-card-6 { bottom:12%; right:7%; transform: rotate(4deg);  animation: fr-bob6 5.0s ease-in-out infinite; }

/* Card inner elements */
.fr-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.fr-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(196,154,82,0.12);
  border: 1px solid rgba(196,154,82,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.fr-card-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
}

.fr-card-value {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Hide floating cards on tablet and mobile — they crowd the layout */
@media (max-width: 900px) {
  .fr-card { display: none; }
}

/* Hero social proof strip: avatar stack + stars + label */
.hero-social-proof {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* Overlapping avatar circles */
.hero-avatar-stack {
  display: flex;
}

.hero-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  margin-left: -8px;
  font-family: var(--font-heading);
}

.hero-avatar:first-child { margin-left: 0; }

.hero-stars {
  color: var(--gold-light);
  letter-spacing: -1px;
}


/* ── B. TRUST STATS ROW ──────────────────────────────────── */

/* Four key stats in a pill-shaped bordered row below the marquee */
.trust-stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2rem;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.trust-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--line-soft);
}

.trust-stat:last-child { border-right: none; }

.ts-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.ts-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Mobile: 2-column grid for the stats row */
@media (max-width: 600px) {
  .trust-stats-row {
    border-radius: 0;
    margin-top: 1rem;
  }
  .trust-stat {
    min-width: calc(50% - 1px);
  }
  /* Remove right border from the 2nd item (right column, row 1) */
  .trust-stat:nth-child(2) { border-right: none; }
  /* Add top border to the 2nd row items */
  .trust-stat:nth-child(3) { border-top: 1px solid var(--line-soft); }
}


/* ── C. PROBLEM SECTION ──────────────────────────────────── */

.problem-section { background: var(--bg-dark); }

/* Responsive 3-column grid, stacks on mobile */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* Card: dark background with a gold left-border accent for emphasis */
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold-dark);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.problem-card:hover {
  border-color: rgba(196,154,82,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* Icon container: square gold-tinted background */
.problem-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(196,154,82,0.1);
  border: 1px solid rgba(196,154,82,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* Bridge paragraph leading into How It Works */
.problem-transition {
  text-align: center;
  margin-top: 2.5rem;
}

.problem-transition p {
  font-size: 1.0625rem;
  color: var(--text-gray);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.problem-transition strong { color: var(--gold-light); }


/* ── D. STEP EXPLAINER ───────────────────────────────────── */

/* Outer wrapper: card container holding both columns */
.te-explainer-wrap {
  max-width: 900px;
  margin: 2.5rem auto 0;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
}

/* Two-column layout: narrow step list | wide detail panel */
.te-explainer-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
}

@media (max-width: 700px) {
  /* On mobile, stack vertically: list above detail */
  .te-explainer-layout { grid-template-columns: 1fr; }
}

/* Left column: vertical list of step items */
.te-step-list {
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}

@media (max-width: 700px) {
  .te-step-list {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }
}

/* Individual step row */
.te-step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s;
  position: relative; /* needed for the absolute progress bar */
}

.te-step-item:not(:last-child) {
  border-bottom: 1px solid var(--line-soft);
}

.te-step-item:hover { background: rgba(196,154,82,0.04); }

/* Active step: gold left border + subtle gold tint */
.te-step-item.active {
  background: rgba(196,154,82,0.06);
  border-left-color: var(--gold-dark);
}

/* Numbered circle */
.te-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1.5px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

/* Active step: number circle fills gold */
.te-step-item.active .te-step-num {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #0d1219; /* dark text on gold bg for contrast */
}

.te-step-text { flex: 1; min-width: 0; }

.te-step-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-gray);
  transition: color 0.2s;
}

.te-step-item.active .te-step-name { color: var(--text-white); }

.te-step-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
  line-height: 1.4;
}

/* Auto-advance progress bar: grows across the bottom of the active step */
.te-progress-bar {
  position: absolute;
  bottom: 0;
  left: 3px; /* offset past the 3px gold border */
  right: 0;
  height: 2px;
  background: var(--bg-elevated);
  overflow: hidden;
}

.te-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-dark);
}

/* Only animate the fill on the active (non-paused) step */
.te-step-item.active .te-progress-fill {
  animation: te-progressFill var(--te-timer-dur, 7s) linear forwards;
}

/* Freeze the fill animation when manually paused */
.te-step-item.paused .te-progress-fill {
  animation-play-state: paused;
}

@keyframes te-progressFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Right column: detail panel */
.te-detail-panel {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Content fades and slides in from the right on step change */
.te-detail-content {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.te-detail-content.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Small label above the icon: "Step 1 of 4" */
.te-detail-step-badge {
  font-size: 0.625rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

/* Large emoji icon in the detail panel */
.te-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(196,154,82,0.1);
  border: 1px solid rgba(196,154,82,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.te-detail-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.te-detail-body {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Bullet list with gold arrow markers */
.te-detail-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.te-detail-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.te-detail-bullets li::before {
  content: '\2192'; /* → arrow */
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* Controls bar: hint text + prev/pause/next buttons */
.te-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.te-controls-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.te-ctrl-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: var(--text-gray);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  min-height: 44px;
}

.te-ctrl-btn:hover {
  border-color: rgba(196,154,82,0.4);
  color: var(--text-white);
}

/* Primary variant: gold-tinted background */
.te-ctrl-btn.te-ctrl-primary {
  background: rgba(196,154,82,0.1);
  border-color: rgba(196,154,82,0.35);
  color: var(--gold-dark);
}

/* ── Mobile accordion behavior ── */
/* On mobile, the detail panel hides entirely; each step row expands inline */
@media (max-width: 700px) {
  /* Hide the desktop detail panel */
  .te-detail-panel { display: none !important; }

  /* Step item: column layout so the accordion body can expand below the header */
  .te-step-item {
    padding: 0;
    flex-direction: column;
    gap: 0;
  }

  /* Header row inside each step (contains the number + name) */
  .te-step-item-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    width: 100%;
  }

  /* Accordion body: collapsed by default, expands on active */
  .te-mob-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 1rem;
  }

  .te-step-item.active .te-mob-detail {
    max-height: 480px; /* large enough for any step content */
    padding: 0.875rem 1rem 1.25rem;
    border-top: 1px solid var(--line-soft);
  }
}

/* On desktop, hide the mobile accordion body since detail panel handles it */
@media (min-width: 701px) {
  .te-mob-detail { display: none; }
  .te-step-item-header { display: flex; align-items: flex-start; gap: 0.875rem; }
}


/* ── E. BENTO GRID ───────────────────────────────────────── */

/* 4-column auto-layout grid; tiles use grid-column/row spans for varied sizes */
.te-bento-grid {
  max-width: 1080px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Base tile: starts hidden, fades in when .te-bento-visible is added by JS */
.te-bento-tile {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Visible state after IntersectionObserver fires */
.te-bento-tile.te-bento-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover lift — only when already visible (prevents transform conflict with entrance) */
.te-bento-tile.te-bento-visible:hover {
  border-color: rgba(196,154,82,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

/* Grid span helpers */
.te-tile-2x2 { grid-column: span 2; grid-row: span 2; }
.te-tile-2x1 { grid-column: span 2; }
.te-tile-1x2 { grid-row: span 2; }

/* Hero tile (2×2): large launch stat + description, gold glow in corner */
.te-tile-hero {
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Gold radial glow in top-left of hero tile */
.te-tile-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196,154,82,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.te-tile-hero-eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  position: relative;
}

/* Large "14 Days" stat — fluid size scales with viewport */
.te-tile-hero-stat {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  position: relative;
}

.te-tile-hero-stat span { color: var(--gold-dark); }

.te-tile-hero-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 280px;
  position: relative;
}

/* "Most Important" badge: positioned top-right of hero tile */
.te-tile-hero-badge {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  background: rgba(196,154,82,0.1);
  border: 1px solid rgba(196,154,82,0.35);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 0.625rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
}

/* Horizontal tile (2×1): icon left + text right */
.te-tile-horizontal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.te-tile-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(196,154,82,0.08);
  border: 1px solid rgba(196,154,82,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.te-tile-horizontal h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
}

.te-tile-horizontal p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Tall tile (1×2): icon top, text fills remaining height */
.te-tile-tall {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Subtle animated dot grid on the tall tile */
.te-tile-tall::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(148,163,184,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  animation: te-bg-drift 8s ease-in-out infinite alternate;
}

@keyframes te-bg-drift {
  from { background-position: 0 0; }
  to   { background-position: 12px 12px; }
}

.te-tile-tall-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(196,154,82,0.08);
  border: 1px solid rgba(196,154,82,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  position: relative; /* above the ::after dot grid */
}

.te-tile-tall h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  position: relative;
  margin-top: auto; /* push heading to bottom of available space */
  color: var(--text-white);
}

.te-tile-tall p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
}

/* Small stat tile (1×1): icon, large number, label */
.te-tile-small-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.te-tile-small-stat .te-stat-icon {
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.te-tile-small-stat .te-stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.te-tile-small-stat .te-stat-number span { color: var(--gold-dark); }

.te-tile-small-stat .te-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
  line-height: 1.3;
}

/* Mobile: collapse bento to single column, remove all spans */
@media (max-width: 767px) {
  .te-bento-grid { grid-template-columns: 1fr; }
  .te-tile-2x2,
  .te-tile-2x1,
  .te-tile-1x2 { grid-column: span 1; grid-row: span 1; }
  .te-tile-hero-stat { font-size: 3rem; }
  /* Restore hero tile flex direction on mobile */
  .te-tile-hero { justify-content: flex-start; }
}


/* ── F. TESTIMONIAL GRID ─────────────────────────────────── */

/* Responsive 3-column grid of testimonial cards */
.tg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) { .tg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tg-grid { grid-template-columns: 1fr; } }

.tg-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
/* Left gold accent bar */
.tg-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border-radius: 3px 0 0 3px;
}
.tg-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.tg-card-cat {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}
.tg-card-headline {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin: 0 0 0.25rem;
}

.tg-stars {
  color: var(--gold-light);
  letter-spacing: 1px;
  font-size: 0.8125rem;
}

.tg-quote {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.65;
  font-style: italic;
  flex: 1; /* lets cards equal-stretch in a row */
}

.tg-reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-soft);
}

/* Avatar initials circle with gold border */
.tg-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card-soft));
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}

.tg-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
}

.tg-role {
  font-size: 0.775rem;
  color: var(--text-muted);
}


/* ── G. PRICING HOME GRID ────────────────────────────────── */

/* 3-column grid for the simplified homepage pricing section */
.pricing-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .pricing-home-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.phg-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s;
  position: relative; /* needed for .phg-popular-badge positioning */
}

.phg-card:hover { border-color: rgba(196,154,82,0.35); }

/* Popular card: slightly warmer background + gold border */
.phg-card.popular {
  border-color: rgba(196,154,82,0.4);
  background: var(--bg-card-soft);
}

/* "Most Popular" badge: floats above the card top edge */
.phg-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dark);
  color: #0d1219;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.phg-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
}

.phg-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
}

.phg-price span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

.phg-setup {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Feature list with gold checkmarks */
.phg-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1; /* fill available space so CTAs align at bottom */
}

.phg-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.45;
}

.phg-features li::before {
  content: '\2713'; /* ✓ checkmark */
  color: var(--gold-dark);
  flex-shrink: 0;
  font-weight: 700;
}

/* CTA button row — pushed to bottom by flex + flex: 1 on features */
.phg-cta { margin-top: auto; }

/* "Compare all plans" footnote link */
.pricing-home-footnote {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-home-footnote a {
  color: var(--gold-dark);
  text-decoration: none;
}

.pricing-home-footnote a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}


/* ── H. FINAL CTA (REDESIGN) ─────────────────────────────── */

/* Bordered card with gold radial glow — last conversion moment before footer */
.final-cta-redesign {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gold radial glow behind the headline */
.final-cta-redesign::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196,154,82,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta-redesign h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.875rem;
  position: relative;
  line-height: 1.25;
}

.final-cta-redesign p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  position: relative;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Button row: centered, wraps on narrow screens */
.final-cta-btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Secondary text link below the main CTA button */
.final-cta-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1.25rem;
  transition: color 0.2s;
}


/* ═══════════════════════════════════════════════════════════
   COMPONENT LIBRARY TOKEN BRIDGE — Added March 2026
   Maps library component vars to TitleEdge design tokens.
   Lets library components drop in without search-replace.
════════════════════════════════════════════════════════════ */
:root {
  --bg:             var(--bg-dark);
  --surface:        var(--bg-card);
  --elevated:       var(--bg-elevated);
  --accent:         var(--gold-dark);
  --glow:           rgba(196, 154, 82, 0.15);
  --glow-strong:    rgba(196, 154, 82, 0.30);
  --border:         var(--line-soft);
  --border-accent:  var(--line-strong);
  --text:           var(--text-white);
  --text-secondary: var(--text-gray);
  --text-muted:     #8d9cad;
  /* Flip card vars */
  --fc-bg-page:       var(--bg-dark);
  --fc-bg-surface:    var(--bg-card);
  --fc-bg-elevated:   var(--bg-elevated);
  --fc-accent:        var(--gold-dark);
  --fc-accent-glow:   rgba(196, 154, 82, 0.12);
  --fc-accent-border: rgba(215, 201, 129, 0.35);
  --fc-text:          var(--text-white);
  --fc-text-secondary:var(--text-gray);
  --fc-text-muted:    #8d9cad;
  --fc-border:        var(--line-soft);
  --fc-radius:        12px;
  --fc-flip-duration: 0.5s;
  --fc-font-heading:  'Sora', system-ui, sans-serif;
  --fc-font-body:     'Manrope', system-ui, sans-serif;
  --fc-font-mono:     ui-monospace, 'Cascadia Code', monospace;
  /* Spotlight grid vars */
  --radius: 12px;
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: ui-monospace, 'Cascadia Code', monospace;
}

/* ── SPOTLIGHT GRID (gold-adapted) ── */
.sg-container { max-width: 1100px; margin: 2rem auto 0; }
.sg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
}
.sg-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.sg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(196,154,82,0.10), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.sg-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sg-grid.spotlight-active .sg-card::before { opacity: 1; }
.sg-card:hover::after { opacity: 1; }
@media (hover: none) {
  .sg-card { border-bottom: 1px solid var(--line-soft); }
  .sg-card::before { display: none; }
}
.sg-card-inner { position: relative; z-index: 1; }
.sg-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(196,154,82,0.08);
  border: 1px solid rgba(196,154,82,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.sg-card:hover .sg-icon {
  background: rgba(196,154,82,0.14);
  border-color: rgba(215,201,129,0.4);
}
.sg-card-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.625rem;
}
.sg-card-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.65;
}
.sg-card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  color: var(--gold-dark);
  background: rgba(196,154,82,0.08);
  border: 1px solid rgba(196,154,82,0.2);
  border-radius: 100px;
  padding: 2px 10px;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 768px) { .sg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sg-grid { grid-template-columns: 1fr; } .sg-card { padding: 1.5rem; } }

/* ── FLIP CARDS (gold-adapted) ── */
.fc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1050px;
  margin: 2rem auto 0;
}
@media (max-width: 560px) { .fc-grid { grid-template-columns: 1fr; } }
.fc-wrap {
  perspective: 1000px;
  height: 320px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fc-wrap.fc-visible { opacity: 1; transform: translateY(0); }
.fc-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform var(--fc-flip-duration) cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) { .fc-wrap:hover .fc-inner { transform: rotateY(180deg); } }
.fc-wrap.fc-flipped .fc-inner { transform: rotateY(180deg); }
.fc-front, .fc-back {
  position: absolute;
  inset: 0;
  border-radius: var(--fc-radius);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.fc-front {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.875rem;
}
.fc-front-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(196,154,82,0.08);
  border: 1px solid rgba(196,154,82,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}
.fc-front-title { font-family: 'Sora', sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--text-white); }
.fc-front-teaser { font-size: 0.875rem; color: var(--text-gray); line-height: 1.6; }
.fc-front-hint { font-size: 0.6875rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: auto; font-family: 'Manrope', sans-serif; }
.fc-back {
  background: var(--bg-elevated);
  border: 1px solid rgba(215,201,129,0.3);
  transform: rotateY(180deg);
  gap: 0;
}
.fc-back-header {
  background: linear-gradient(135deg, rgba(196,154,82,0.15), rgba(196,154,82,0.05));
  border-bottom: 1px solid rgba(215,201,129,0.25);
  margin: -1.75rem -1.75rem 1.25rem;
  padding: 1.25rem 1.75rem;
  border-radius: var(--fc-radius) var(--fc-radius) 0 0;
}
.fc-back-title { font-family: 'Sora', sans-serif; font-size: 0.9375rem; font-weight: 700; color: var(--gold-dark); }
.fc-back-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.fc-back-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-gray);
  line-height: 1.5;
}
.fc-back-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 0.45em;
}
.fc-back-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 1.25rem;
  background: var(--gold-dark);
  color: #0d1219;
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
  min-height: 44px;
  transition: opacity 0.2s;
}
.fc-back-cta:hover { opacity: 0.88; }
@media (prefers-reduced-motion: reduce) {
  .fc-inner, .fc-wrap { transition-duration: 0.01ms !important; }
}

/* ── 7-MODULE CONDENSED (homepage) ── */
.modules-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  margin: 2rem 0 0;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
}
.modules-strip::-webkit-scrollbar { display: none; }
.module-card {
  flex: 0 0 25%;
  min-width: 160px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line-soft);
  scroll-snap-align: start;
  position: relative;
  transition: background 0.2s;
}
.module-card:last-child { border-right: none; }
.module-card:hover { background: rgba(196,154,82,0.06); }
.module-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
}
.module-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(196,154,82,0.08);
  border: 1px solid rgba(196,154,82,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin: 0 auto 0.75rem;
}
.module-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}
.module-blurb {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .module-card { flex: 0 0 50%; }
}
@media (max-width: 480px) {
  .module-card { flex: 0 0 80%; }
}

/* ── FILE TABS STRIP FIX ── */
.file-tabs__strip {
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.file-tabs__strip::-webkit-scrollbar { display: none !important; }

/* ── ADDONS VISIBLE ── */
.addons-section-open { display: block; }
.addons-details > summary { display: none; }
.addons-details { border: none !important; padding: 0 !important; }
.addons-details[open] > summary,
.addons-details > summary { display: none !important; }

.final-cta-link:hover { color: var(--gold-dark); }

/* ── 3D CARD STACK — Mode B (gold-adapted) ── */
:root {
  --card-w: 320px;
  --card-h: 190px;
}

.cs-pillar-section { overflow: visible; }

.cs-pillar-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .cs-pillar-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.cs-pillar-copy { max-width: 480px; }

.cs-flip-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cs-flip-container {
  position: relative;
  width: var(--card-w);
  height: var(--card-h);
}

.cs-card {
  width: var(--card-w);
  height: var(--card-h);
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-soft);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.02);
  padding: 1.5rem 1.625rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity  0.3s ease;
}

.cs-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cs-card-tag {
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: rgba(196,154,82,0.1);
  border: 1px solid rgba(196,154,82,0.25);
  border-radius: 100px;
}
.cs-card-num {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  color: var(--text-muted);
}
.cs-card-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
}
.cs-card-desc {
  font-size: 0.8125rem;
  color: var(--text-gray);
  line-height: 1.55;
  margin-top: 4px;
}
.cs-card-stat {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Throw animation — JS adds this class */
.cs-card--throw {
  transform: translateY(-140%) rotate(8deg) !important;
  opacity: 0 !important;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.6, 1),
    opacity   0.4s ease !important;
  pointer-events: none;
}

/* Next button */
.cs-next-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.625rem 1.5rem;
  min-height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cs-next-btn:hover {
  background: var(--bg-elevated);
  border-color: rgba(196,154,82,0.4);
}

.cs-counter {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  :root { --card-w: min(300px, 88vw); --card-h: 200px; }
}


/* ═══════════════════════════════════════════════════════════
   HOMEPAGE SCROLL COMPONENTS — Added March 2026
   Cinematic Scroll | Sticky Split | Data Story | Parallax
════════════════════════════════════════════════════════════ */

/* ── SHARED: Parallax scroll bg ── */
.hp-scroll-bg,
.hp-ds-scroll-bg {
  position: absolute;
  inset: -30%;
  pointer-events: none;
  will-change: transform;
}

/* ── CINEMATIC SCROLL ── */
#hp-cinematic { overflow: hidden; }

.hp-cs-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
}

#hp-s1 .hp-scroll-bg {
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(196,154,82,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(196,154,82,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #0d1219 0%, #111c27 100%);
}
#hp-s2 .hp-scroll-bg {
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(196,154,82,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 70%, rgba(196,154,82,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #111c27 0%, #0d1219 100%);
}

.hp-cs-inner {
  max-width: 760px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  will-change: opacity, transform, filter;
}

.hp-s1-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-white);
}
.hp-s1-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-gray);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.hp-big-num {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hp-s2-label {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hp-s2-context {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── HEADLINE NUMBER ACCENT (used in "3 Reasons" and "4 Core Modules" headings) ── */
.headline-num {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ── REALITY DIVIDER (between headline and stat in merged cinematic section) ── */
.hp-reality-divider {
  width: 50px;
  height: 2px;
  background: var(--line-strong);
  margin: 2.5rem auto 2rem;
}

/* ── SPOTLIGHT GRID — "3 Reasons" section (homepage, 3-col) ── */
/* Services page 4-module grid overrides to 2×2 */
#sg-services-grid {
  grid-template-columns: repeat(2, 1fr);
}

.sg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2rem;
}
.sg-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.sg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(196,154,82,0.10),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.sg-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sg-grid.spotlight-active .sg-card::before { opacity: 1; }
.sg-card:hover::after { opacity: 1; }
@media (hover: none) {
  .sg-card { border-bottom: 1px solid var(--line-soft); }
  .sg-card::before { display: none; }
}
.sg-card-inner { position: relative; z-index: 1; }
.sg-reason-num {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.sg-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.sg-card-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .sg-grid { grid-template-columns: 1fr; gap: 0; border-radius: 12px; }
}

/* ── 4 CORE MODULES: 2×2 Feature Grid ── */
.hp-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 640px) { .hp-modules-grid { grid-template-columns: 1fr; } }
.hp-mod-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color 0.2s, background 0.2s;
}
.hp-mod-card:hover {
  border-color: rgba(196,154,82,0.35);
  background: var(--bg-card-soft);
}
.hp-mod-num-col { flex-shrink: 0; width: 2.5rem; }
.hp-mod-num {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  opacity: 0.65;
}
.hp-mod-body { flex: 1; min-width: 0; }
.hp-mod-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(196,154,82,0.08);
  border: 1px solid rgba(196,154,82,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 0.625rem;
}
.hp-mod-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}
.hp-mod-desc {
  font-size: 0.8125rem;
  color: var(--text-gray);
  line-height: 1.6;
}
.hp-mod-tier {
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  opacity: 0.6;
  margin-top: 0.625rem;
}

/* ── PRICING PREVIEW PATTERN INTERRUPT ── */
.hp-pricing-preview {
  background: var(--bg-card-soft);
  border-top: 2px solid var(--line-strong);
  border-bottom: 2px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.hp-pricing-preview::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center top, rgba(196,154,82,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hp-pricing-preview > .container { position: relative; z-index: 1; }

/* ── "WHY THIS EXISTS" CARD ICON BADGE ── */
.hp-why-section {
  background: var(--bg-dark);
  position: relative;
}
.hp-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,154,82,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.tg-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(196,154,82,0.10);
  border: 1px solid rgba(196,154,82,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

/* Stacking cards peel */
#hp-s4-outer {
  position: relative;
  height: 220vh;
}
#hp-s4-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
}
.hp-stack-kicker {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
  font-size: 0.6875rem;
}
.hp-stack-card {
  position: absolute;
  width: min(540px, 88vw);
  border-radius: 16px;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.hp-stack-num {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.875rem;
}
.hp-stack-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.875rem;
  line-height: 1.25;
}
.hp-stack-body {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ── STICKY SPLIT SCROLL ── */
.hp-split-section { padding: 0; background: var(--bg-dark); }
.hp-split-header {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}
.hp-split-scroll {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 3rem;
}
.hp-split-text { flex: 1; min-width: 0; }
.hp-text-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.hp-text-section:last-child { border-bottom: none; }
.hp-ts-step {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}
.hp-ts-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: var(--text-white);
}
.hp-ts-body {
  color: var(--text-gray);
  line-height: 1.75;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  max-width: 440px;
}
.hp-ts-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hp-ts-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}
.hp-ts-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-dark);
  flex-shrink: 0;
}
.hp-split-visual {
  flex: 1;
  min-width: 0;
  position: relative; /* JS sticky: anchor for absolute-positioned stack */
}
.hp-visual-stack {
  position: absolute; /* JS overrides to fixed/absolute as you scroll */
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-areas: 'panel';
}
.hp-visual-panel {
  grid-area: panel;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1.75rem;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.hp-visual-panel.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.hp-vp-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 1rem;
}
/* Check items */
.hp-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.875rem;
  color: var(--text-white);
}
.hp-check-item:last-child { border-bottom: none; }
.hp-check-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hp-check-box.done { background: var(--gold-dark); border-color: var(--gold-dark); color: #0d1219; }
.hp-check-box.pending { border-color: rgba(196,154,82,0.4); }
/* Browser mockup */
.hp-browser { background: var(--bg-elevated); border-radius: 10px; overflow: hidden; }
.hp-browser-chrome {
  background: var(--bg-dark);
  padding: 0.625rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hp-bd { width: 8px; height: 8px; border-radius: 50%; }
.hp-bd:nth-child(1) { background: #FF5F56; }
.hp-bd:nth-child(2) { background: #FFBD2E; }
.hp-bd:nth-child(3) { background: #27C93F; }
.hp-browser-body { padding: 1rem; }
.hp-pb-hero { height: 56px; background: var(--bg-card-soft); border-radius: 6px; margin-bottom: 0.75rem; }
.hp-pb-row { height: 9px; background: var(--bg-card-soft); border-radius: 3px; margin-bottom: 6px; }
.hp-pb-cards { display: flex; gap: 8px; margin-top: 0.75rem; }
.hp-pb-card { flex: 1; height: 42px; background: var(--bg-card-soft); border-radius: 6px; }
/* Stats panel */
.hp-perf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.hp-perf-stat { background: var(--bg-elevated); border-radius: 10px; padding: 1rem; text-align: center; }
.hp-perf-val { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--gold-light); }
.hp-perf-label { font-family: var(--font-heading); font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }
.hp-perf-trend { font-size: 0.7rem; color: var(--gold-dark); margin-top: 0.2rem; }
/* Thread panel */
.hp-thread-badge {
  background: rgba(196,154,82,0.1);
  border: 1px solid rgba(196,154,82,0.3);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  color: var(--gold-dark);
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hp-thread-msg { display: flex; gap: 0.625rem; margin-bottom: 0.75rem; align-items: flex-start; }
.hp-thread-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; flex-shrink: 0; font-family: var(--font-heading);
}
.hp-bubble {
  background: var(--bg-elevated);
  border-radius: 10px; border-top-left-radius: 3px;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem; color: var(--text-gray); line-height: 1.5; flex: 1;
}
.hp-thread-msg.me .hp-bubble {
  background: rgba(196,154,82,0.08);
  border: 1px solid rgba(196,154,82,0.2);
  border-top-right-radius: 3px; border-top-left-radius: 10px;
}
.hp-split-spacer { height: 5rem; }
/* Mobile: stack layout */
@media (max-width: 768px) {
  .hp-split-scroll { flex-direction: column; padding: 0 1.25rem; gap: 0; }
  .hp-split-visual { display: none; }
  .hp-text-section { min-height: auto; padding: 2.5rem 0; }
}

/* ── DATA STORY ── */
.hp-data-story { background: var(--bg-dark); }
.hp-ds-chapter {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hp-ds-chapter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(148,163,184,0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hp-ds-scroll-bg {
  background:
    radial-gradient(ellipse 70% 50% at 30% 60%, rgba(196,154,82,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(196,154,82,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #111c27 0%, #0d1219 100%);
}
.hp-ds-inner { max-width: 760px; margin: 0 auto; width: 100%; position: relative; }
.hp-ds-chapter-header { margin-bottom: 2.5rem; }
.hp-ds-chapter-num {
  font-family: var(--font-heading);
  font-size: 0.6875rem; color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 10px;
}
.hp-ds-chapter-num::after {
  content: ''; flex: 1; max-width: 80px; height: 1px; background: rgba(215,201,129,0.35);
}
.hp-ds-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; color: var(--text-white);
}
.hp-ds-sub { color: var(--text-gray); font-size: 1rem; line-height: 1.6; margin-bottom: 2.5rem; }
/* Hero stat */
.hp-ds-hero-stat { text-align: center; padding: 2rem 0; }
.hp-ds-sublabel {
  font-family: var(--font-heading); font-size: 0.8125rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.hp-ds-number {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 800; color: var(--gold-dark); letter-spacing: -0.03em; line-height: 0.95;
  margin-bottom: 0.4rem;
}
.hp-ds-context {
  font-size: 1rem; color: var(--text-gray);
  max-width: 500px; margin: 0.75rem auto 0; line-height: 1.7;
}
/* Support grid */
.hp-ds-support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
@media (max-width: 560px) { .hp-ds-support-grid { grid-template-columns: 1fr; } }
.hp-ds-support-card { background: var(--bg-card); border: 1px solid var(--line-soft); border-left: 3px solid var(--gold-dark); border-radius: 12px; padding: 1.375rem 1.25rem; }
.hp-ds-support-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(196,154,82,0.10); border: 1px solid rgba(196,154,82,0.20); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); margin-bottom: 0.75rem; }
.hp-ds-support-number { font-family: var(--font-heading); font-size: 2.125rem; font-weight: 800; color: var(--gold-light); margin-bottom: 0.25rem; line-height: 1; }
.hp-ds-support-label { font-size: 0.8125rem; color: var(--text-gray); line-height: 1.5; }
/* Bar chart */
.hp-ds-chart-wrap { background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.5rem; margin: 2rem 0; }
.hp-ds-chart-title { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--text-gray); }
.hp-ds-bar-chart { display: flex; flex-direction: column; gap: 0.625rem; }
.hp-ds-bar-row { display: flex; align-items: center; gap: 0.875rem; }
.hp-ds-bar-name { font-size: 0.8125rem; color: var(--text-muted); width: 140px; flex-shrink: 0; text-align: right; }
.hp-ds-bar-track { flex: 1; height: 8px; background: var(--bg-elevated); border-radius: 100px; overflow: hidden; }
.hp-ds-bar-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%; transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 8px rgba(196,154,82,0.35);
}
.hp-ds-bar-val { font-family: var(--font-heading); font-size: 0.6875rem; color: var(--text-muted); width: 36px; flex-shrink: 0; }
/* Pull quote */
.hp-ds-pull-quote {
  border-left: 3px solid var(--gold-dark);
  padding: 0.875rem 1.5rem;
  margin: 2.5rem 0;
  background: rgba(196,154,82,0.06);
  border-radius: 0 12px 12px 0;
}
.hp-ds-pull-label { font-family: var(--font-heading); font-size: 0.625rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.hp-ds-pull-text { font-family: var(--font-heading); font-size: clamp(0.9375rem, 2vw, 1.125rem); font-style: italic; color: var(--text-white); line-height: 1.55; margin-bottom: 0.5rem; }
.hp-ds-pull-attr { font-size: 0.8rem; color: var(--text-muted); }
@media (max-width: 600px) { .hp-ds-bar-name { width: 90px; font-size: 0.75rem; } }


/* ═══════════════════════════════════════════════════════════
   SERVICES V2 — Product Story Narrative
   Prefix: sv-
   All sections: hook → pain cards → solution → modules →
   steps → pricing bridge
════════════════════════════════════════════════════════════ */


/* ── SECTION 1: HOOK ──────────────────────────────────────
   Full-viewport feel, centered, heavy headline, radial glow
   ────────────────────────────────────────────────────────── */
.sv-hook {
  padding: 120px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial gold glow behind the headline */
.sv-hook::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(196,154,82,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sv-hook-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.sv-hook-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.sv-hook-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}


/* ── SECTION 2: PAIN CARDS ────────────────────────────────
   3-column grid on desktop, stacked on mobile
   Each card: icon + bold title + one-sentence description
   ────────────────────────────────────────────────────────── */
.sv-pain {
  padding: 80px 24px;
  border-top: 1px solid var(--line-soft);
}

.sv-pain-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.sv-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sv-pain-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s ease;
}

.sv-pain-card:hover {
  border-color: rgba(196, 154, 82, 0.3);
}

/* Icon wrapper — muted gold circle */
.sv-pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(196, 154, 82, 0.08);
  border: 1px solid rgba(196, 154, 82, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}

.sv-pain-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin: 0;
}

.sv-pain-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .sv-pain-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .sv-pain-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* On 2-col, make the third card span full width so it's not orphaned */
  .sv-pain-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.625rem);
    margin: 0 auto;
  }
}


/* ── SECTION 3: SOLUTION REVEAL ───────────────────────────
   Clean centered block — kicker + large headline + sub
   ────────────────────────────────────────────────────────── */
.sv-solution {
  padding: 96px 24px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.sv-solution-inner {
  max-width: 760px;
  margin: 0 auto;
}

.sv-solution-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.sv-solution-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.sv-solution-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--text-gray);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}


/* ── SECTION 4: MODULE WALKTHROUGH ───────────────────────
   Vertical stack of 4 rows. Each row:
     left:  large gold module number
     center: headline + body copy + tier badge
     right:  icon in a circle
   ────────────────────────────────────────────────────────── */
.sv-modules {
  padding: 80px 24px 96px;
  border-top: 1px solid var(--line-soft);
}

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

.sv-modules-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sv-modules-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.875rem;
}

.sv-modules-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

/* The list of module rows */
.sv-module-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each module row — flex with 3 columns */
.sv-module-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.sv-module-row:last-child {
  border-bottom: none;
}

/* Left column: large decorative number */
.sv-module-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  width: 80px;
  /* Slight opacity to keep it decorative, not competing with headline */
  opacity: 0.7;
  padding-top: 0.2em;
}

/* Center column: the content */
.sv-module-content {
  flex: 1;
  min-width: 0;
}

.sv-module-name {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin: 0 0 0.875rem;
}

.sv-module-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin: 0 0 1rem;
}

/* Tier badge — small pill, muted gold or muted gray */
.sv-tier-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid;
  white-space: nowrap;
}

/* All plans — highlighted gold */
.sv-tier-badge--all {
  color: var(--gold-light);
  border-color: rgba(228, 212, 143, 0.35);
  background: rgba(228, 212, 143, 0.06);
}

/* Pro and above — softer gold */
.sv-tier-badge--pro {
  color: var(--gold-dark);
  border-color: rgba(196, 154, 82, 0.3);
  background: rgba(196, 154, 82, 0.05);
}

/* Authority only — muted, feels exclusive */
.sv-tier-badge--authority {
  color: var(--text-muted);
  border-color: rgba(141, 156, 173, 0.3);
  background: rgba(141, 156, 173, 0.05);
}

/* Right column: icon in a rounded square */
.sv-module-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-card-soft);
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-top: 0.25rem;
}

/* Mobile: number goes above content, icon hides */
@media (max-width: 640px) {
  .sv-module-row {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
  }

  .sv-module-num {
    font-size: 2rem;
    width: auto;
    padding-top: 0;
  }

  /* Push icon to share a row with the number */
  .sv-module-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-left: auto;
    margin-top: 0;
  }

  .sv-module-content {
    flex-basis: 100%;
    order: 3;
  }
}


/* ── SECTION 5: HOW IT WORKS (3 STEPS) ───────────────────
   Horizontal 3-card row on desktop, stacked on mobile
   Each step: number + title + short description
   ────────────────────────────────────────────────────────── */
.sv-steps {
  padding: 80px 24px;
  border-top: 1px solid var(--line-soft);
}

.sv-steps-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.sv-steps-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sv-steps-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.875rem;
}

.sv-steps-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.sv-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sv-step-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
}

/* Step number circle — positioned top-left of card */
.sv-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196, 154, 82, 0.1);
  border: 1px solid rgba(196, 154, 82, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.sv-step-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin: 0 0 0.625rem;
}

.sv-step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .sv-steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/* ── SECTION 6: PRICING BRIDGE ────────────────────────────
   Centered headline + 2-button row
   ────────────────────────────────────────────────────────── */
.sv-bridge {
  padding: 96px 24px 112px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.sv-bridge-inner {
  max-width: 640px;
  margin: 0 auto;
}

.sv-bridge-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 2.25rem;
}

/* Two-column CTA row — left and right buttons */
.sv-bridge-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* The right-side "secondary" link gets a subtle divider label between them on desktop */
.sv-bridge-divider {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .sv-bridge-btns {
    flex-direction: column;
    width: 100%;
  }
  .sv-bridge-btns .btn {
    width: 100%;
    text-align: center;
  }
  .sv-bridge-divider { display: none; }
}
