/* ═══════════════════════════════════════════════════════
   GROWTH PARTNER — Joshua Peña
   Dark Luxury · Gold · Premium
   v20260525
═══════════════════════════════════════════════════════ */

/* ─── Custom Properties ──────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --black-soft:  #111111;
  --black-card:  #141414;
  --black-2:     #0D0D0D;
  --gold:        #C9A84C;
  --gold-light:  #D4AF37;
  --gold-bright: #F2D06B;
  --gold-dim:    rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.22);
  --white:       #FFFFFF;
  --gray:        #B0B0B0;
  --gray-dark:   #555555;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad:    clamp(80px, 11vw, 140px) 0;
  --container-w:    1200px;
  --container-px:   clamp(20px, 5vw, 80px);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  22px;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --t:          0.4s var(--ease);
  --t-fast:     0.2s ease;

  --gold-glow:  0 0 28px rgba(201,168,76,0.40), 0 0 60px rgba(201,168,76,0.18);
  --card-shadow:0 8px 40px rgba(0,0,0,0.45);
}

/* ─── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
blockquote { font-style: normal; }

/* ─── Custom Cursor ──────────────────────────────────── */
#cursor {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201,168,76,0.55);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease,
              border-color 0.25s ease, background 0.25s ease,
              opacity 0.3s ease;
  will-change: left, top;
}
#cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: left, top;
}
body:not(.cursor-active) #cursor,
body:not(.cursor-active) #cursor-dot { opacity: 0; }
#cursor.on-hover {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
}

/* ─── Container ──────────────────────────────────────── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ─── Typography Helpers ─────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.section-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--gray);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 3rem;
}

/* ─── Gold Divider ───────────────────────────────────── */
.gold-line {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0 2rem;
}

/* ─── CTA Buttons ────────────────────────────────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 15px 34px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.38s var(--ease), box-shadow 0.38s ease;
  white-space: nowrap;
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.42s var(--ease);
  z-index: 0;
}
.cta-btn > * { position: relative; z-index: 1; }
.cta-btn:hover {
  color: var(--black);
  box-shadow: var(--gold-glow);
}
.cta-btn:hover::after { transform: translateX(0); }
.cta-btn svg { transition: transform 0.3s ease; flex-shrink: 0; }
.cta-btn:hover svg { transform: translateX(4px); }
.cta-large { padding: 19px 46px; font-size: 0.9rem; }

/* ─── Scroll Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s ease, transform 0.72s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* Defensive: split-text elements must never be invisible without JS */
.reveal[data-split] { opacity: 1; transform: none; }

/* ─── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: background 0.45s ease, padding 0.45s ease, border-color 0.45s ease;
}
.nav.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}
.cta-nav { padding: 10px 22px; font-size: 0.76rem; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.7;
  pointer-events: none;
}

/* Radial glow in center */
.hero::before {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  width: 800px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 80px;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: heroFade 0.9s var(--ease) 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 900;
  line-height: 1.03;
  color: var(--white);
  margin-bottom: 1.6rem;
}
/* Word animation containers — set by JS */
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero-title .word-inner {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.75s var(--ease-out), opacity 0.6s ease;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--gray);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: heroFade 0.9s var(--ease) 1.1s forwards;
}
.cta-hero {
  opacity: 0;
  animation: heroFade 0.9s var(--ease) 1.35s forwards;
  margin-bottom: 1.4rem;
}
.hero-note {
  font-size: 0.78rem;
  color: var(--gray-dark);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: heroFade 0.9s var(--ease) 1.55s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  opacity: 0;
  animation: heroFade 1s ease 2s forwards;
}
.scroll-line {
  display: block;
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.8); }
  50%       { opacity: 0.9;  transform: scaleY(1.1); }
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Section Base ───────────────────────────────────── */
.section { padding: var(--section-pad); }
.problem-section   { background: var(--black-soft); }
.solution-section  { background: var(--black); }
.video-section     { background: var(--black-soft); }
.about-section     { background: var(--black); }
.results-section   { background: var(--black-soft); }
.process-section   { background: var(--black); }
.cta-mid-section   { background: var(--black-soft); }
.faq-section       { background: var(--black); }
.calendly-section  { background: var(--black-soft); }

/* ─── Problem Section ────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
  margin: 2.8rem 0;
}
.problem-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--t), transform var(--t);
}
.problem-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
}
.problem-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.problem-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.75;
}
.problem-cta-text {
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray);
  font-family: var(--font-display);
  font-style: italic;
}

/* ─── Solution / Pillars ─────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.pillar-card {
  background: linear-gradient(145deg, rgba(201,168,76,0.05), rgba(201,168,76,0.02));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.pillar-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(201,168,76,0.1);
}
.pillar-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 30%, var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.pillar-text {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.pillar-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  border-top: 1px solid var(--gold-border);
  padding-top: 1rem;
}

/* ─── Video Section ──────────────────────────────────── */
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 3rem auto 0;
  box-shadow: 0 0 0 1px var(--gold-border),
              0 24px 80px rgba(201,168,76,0.10),
              0 0 100px rgba(0,0,0,0.6);
}
.main-video {
  width: 100%;
  display: block;
  background: #080808;
}
.video-frame-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.18);
  pointer-events: none;
}

/* ─── About Section ──────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 5rem;
  align-items: start;
}
.about-photo-col { position: relative; }
.about-photo-frame { position: relative; }
.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  filter: contrast(1.04) saturate(0.9);
  display: block;
}
.photo-accent-border {
  position: absolute;
  top: 18px; left: 18px;
  right: -18px; bottom: -18px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  z-index: -1;
  pointer-events: none;
}
.about-photo-badge {
  position: absolute;
  bottom: -14px; right: -14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  z-index: 1;
}
.about-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
}
.about-text p {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1.15rem;
}
.highlight-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(201,168,76,0.85);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin: 1.6rem 0;
  line-height: 1.75;
}
.highlight-quote strong { font-style: normal; color: var(--gold); }
.about-cta { margin-top: 2.5rem; }

/* ─── Stats / Results ────────────────────────────────── */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 3rem 0 4rem;
}
.stat-item {
  flex: 1; min-width: 160px;
  text-align: center;
  padding: 2rem;
}
.stat-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
  flex-shrink: 0;
}
.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}
.stat-count {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 30%, var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}
.stat-label {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

/* ─── Testimonials ───────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--t), transform var(--t);
}
.testimonial-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
}
.testimonial-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.12em; }
.testimonial-text {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.82;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.testimonial-initials {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-info { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial-info strong { font-size: 0.88rem; color: var(--white); }
.testimonial-info span   { font-size: 0.74rem; color: var(--gray-dark); }

/* ─── Process Section ────────────────────────────────── */
.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 4rem;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.4rem;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  transition: border-color var(--t);
}
.process-step:hover { border-color: var(--gold-border); }
.step-icon {
  width: 54px; height: 54px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--white);
  margin-bottom: 0.55rem;
}
.step-body p { color: var(--gray); font-size: 0.9rem; line-height: 1.75; }
.process-line {
  width: 56px;
  height: 1px;
  background: var(--gold-border);
  margin-top: 52px;
  flex-shrink: 0;
  position: relative;
}
.process-line::after {
  content: '›';
  position: absolute;
  right: -6px;
  top: -10px;
  color: var(--gold);
  font-size: 1rem;
}

/* ─── Mid-page CTA ───────────────────────────────────── */
.cta-mid-section { padding: clamp(60px, 10vw, 120px) 0; }
.cta-mid-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 3rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(201,168,76,0.04), rgba(201,168,76,0.01));
  position: relative;
  overflow: hidden;
}
.cta-mid-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-mid-block .section-label { display: block; margin-bottom: 0.8rem; }
.cta-mid-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-mid-block p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.cta-guarantee {
  display: block;
  font-size: 0.76rem;
  color: var(--gray-dark);
  margin-top: 1.2rem;
  letter-spacing: 0.06em;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.055); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem 0;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transition: color var(--t-fast);
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 1.5rem;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.85;
}
.faq-a[hidden] { display: none; }

/* ─── Calendly ───────────────────────────────────────── */
.calendly-section .section-sub { margin-bottom: 2rem; }
.calendly-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}
.calendly-highlights span {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
}
.calendly-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}
.calendly-inline-widget { background: #fff; }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: #050505;
  border-top: 1px solid rgba(201,168,76,0.13);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2rem;
  align-items: start;
}
.footer-logo {
  height: 38px; width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(1.05);
}
.footer-brand p {
  color: var(--gray-dark);
  font-size: 0.88rem;
  max-width: 260px;
  line-height: 1.7;
}
.footer-cta-label,
.footer-social-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 1rem;
  display: block;
}
.footer-cta-btn { width: 100%; justify-content: center; }
.footer-social { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: var(--gray-dark); }

/* ─── RESPONSIVE: Tablet ─────────────────────────────── */
@media (max-width: 920px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-frame { max-width: 360px; margin: 0 auto; }
  .process-track { flex-direction: column; }
  .process-line {
    width: 1px; height: 36px; margin: 0 auto;
    background: linear-gradient(to bottom, var(--gold-border), var(--gold-border));
  }
  .process-line::after { content: '↓'; right: -10px; top: auto; bottom: -12px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─── RESPONSIVE: Mobile ─────────────────────────────── */
@media (max-width: 640px) {
  :root { --section-pad: 68px 0; }

  body { cursor: auto; }
  #cursor, #cursor-dot { display: none; }
  button { cursor: pointer; }
  a { cursor: pointer; }

  .hero-inner { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .cta-hero { margin-left: auto; margin-right: auto; }

  .stats-row { flex-direction: column; }
  .stat-divider {
    width: 60px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-border), transparent);
  }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cta-btn { width: auto; }

  .cta-mid-block { padding: 3rem 1.5rem; }

  .section-sub { margin-bottom: 2rem; }
}

@media (max-width: 460px) {
  .cta-btn { padding: 14px 24px; font-size: 0.78rem; }
  .cta-large { padding: 16px 28px; font-size: 0.82rem; }
}
