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

:root {
  /* Deep Teal + Copper palette */
  --accent: #C47A2A;
  --accent-hover: #a8661f;
  --accent-light: rgba(196, 122, 42, 0.08);
  --teal: #1A6B6A;
  --teal-light: #2A8C8A;
  --teal-subtle: rgba(26, 107, 106, 0.08);

  --bg-white: #FFFFFF;
  --bg-ivory: #FAF8F5;
  --bg-grey: #F5F5F7;
  --bg-grey-mid: #E8E8ED;
  --bg-dark: #1D1D1F;
  --bg-black: #000000;

  --text-primary: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-tertiary: #86868B;
  --text-on-dark: #F5F5F7;
  --text-on-dark-sub: #A1A1A6;

  --dark: #1D1D1F;
  --dark-card: #1a1a1a;
  --text: #1D1D1F;
  --text-light: #6E6E73;
  --text-muted: #86868B;
  --bg: #FFFFFF;
  --bg-light: #F5F5F7;
  --border: #E8E8ED;
  --border-dark: #2a2a2a;
  --nav-bg: rgba(0, 0, 0, 0.8);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 980px;

  /* Apple typography */
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Helvetica", "Arial", sans-serif;

  /* Spacing */
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 22px;
  --space-xl: 30px;
  --space-2xl: 44px;
  --space-3xl: 60px;
  --space-4xl: 80px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.47;
  overflow-x: hidden;
  letter-spacing: -0.022em;
  font-size: 17px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 1200px;
}

.nav-pill {
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 24px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  gap: 0;
  overflow: hidden;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-on-dark);
  letter-spacing: -0.3px;
  white-space: nowrap;
  margin-right: 20px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}

.nav-divider-after {
  position: relative;
  margin-right: 8px;
}

.nav-divider-after::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}

.nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-hover);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: var(--radius);
  padding: 16px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.mobile-menu a:hover { background: rgba(255,255,255,0.08); }
.mobile-menu .nav-cta { text-align: center; margin-top: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000;
  border-radius: 24px;
  margin: 78px 16px 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 40px 0;
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-tag {
  display: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 600;
  color: #fff;
  line-height: 1.07;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}

.hero-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-primary.btn-full {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
  font-size: 16px;
}

.btn-primary.btn-lg-apply {
  padding: 18px 40px;
  font-size: 17px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
}

.btn-ghost:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
}

.btn-arrow {
  font-size: 20px;
  font-weight: 300;
}

/* ===== SECTION SHARED ===== */
.section-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.section-title-lg {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  line-height: 1.07;
}

.section-desc {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  max-width: 600px;
  line-height: 1.381;
  letter-spacing: 0.007em;
}

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 48px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.stats-bar .container {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 1100px;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

/* ===== PARTNERS ===== */
.partners {
  padding: 48px 0;
  background: var(--bg-grey);
  border-top: 1px solid var(--border);
}

.partners-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 24px;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.stat-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
}

.stat-number:not([data-count]) {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===== PROBLEMS ===== */
.problems {
  padding: var(--space-4xl) 0;
  background: var(--bg-grey);
}

/* ===== CAROUSEL ===== */
.carousel-wrap {
  position: relative;
  margin-top: 48px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 20px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.12);
}

.carousel-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel-prev {
  left: -22px;
}

.carousel-next {
  right: -22px;
}

.problems-track {
  margin-top: 0;
}

.problem-card {
  min-width: 420px;
  max-width: 420px;
  padding: 40px;
  border-radius: var(--radius);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 36px rgba(0, 0, 0, 0.14);
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.problem-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* Problem card dark — space black */
.problem-dark { background: linear-gradient(145deg, #2C2C2E 0%, #1D1D1F 40%, #111111 100%); }
.problem-dark .problem-icon { background: rgba(255,255,255,0.1); color: var(--accent); }
.problem-dark h3 { color: var(--text-on-dark); }
.problem-dark p { color: var(--text-on-dark-sub); }

/* Problem card copper */
.problem-copper { background: linear-gradient(145deg, #D4893A 0%, #C47A2A 45%, #A8661F 100%); }
.problem-copper .problem-icon { background: rgba(255,255,255,0.2); color: #fff; }
.problem-copper h3 { color: #fff; }
.problem-copper p { color: rgba(255,255,255,0.8); }

/* Problem card grey — warm light */
.problem-grey { background: linear-gradient(145deg, #FFFFFF 0%, #F5F5F7 50%, #EBEBED 100%); }
.problem-grey .problem-icon { background: var(--accent-light); color: var(--accent); }
.problem-grey h3 { color: var(--text-primary); }
.problem-grey p { color: var(--text-secondary); }

/* Problem card charcoal */
.problem-charcoal { background: linear-gradient(145deg, #3A3A3C 0%, #2C2C2E 45%, #1C1C1E 100%); }
.problem-charcoal .problem-icon { background: rgba(196,122,42,0.2); color: var(--accent); }
.problem-charcoal h3 { color: var(--text-on-dark); }
.problem-charcoal p { color: var(--text-on-dark-sub); }

/* Problem card warm — ivory */
.problem-warm { background: linear-gradient(145deg, #FFFFFF 0%, #FAF8F5 50%, #F0EBE3 100%); }
.problem-warm .problem-icon { background: var(--accent-light); color: var(--accent); }
.problem-warm h3 { color: var(--text-primary); }
.problem-warm p { color: var(--text-secondary); }

/* Problem card black */
.problem-black { background: linear-gradient(145deg, #1D1D1F 0%, #0A0A0A 50%, #000000 100%); }
.problem-black .problem-icon { background: rgba(196,122,42,0.15); color: var(--accent); }
.problem-black h3 { color: var(--text-on-dark); }
.problem-black p { color: var(--text-on-dark-sub); }

/* ===== PHILOSOPHY QUOTE ===== */
.quote-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-dark);
}

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--text-on-dark);
  line-height: 1.1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}

.quote-highlight {
  color: var(--accent);
}

/* ===== R.A.C.E. METHOD ===== */
.method {
  padding: var(--space-4xl) 0;
  background: var(--bg-white);
}

.race-track {
  margin-top: 0;
}

.race-card {
  min-width: 420px;
  max-width: 420px;
  border-radius: var(--radius);
  padding: 40px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scroll-snap-align: start;
  flex-shrink: 0;
  will-change: transform;
}

.race-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 36px rgba(0, 0, 0, 0.14);
}

.race-letter {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.race-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.race-subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.race-card > p {
  font-size: 15px;
  line-height: 1.47;
}

.race-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.race-tools span {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.race-shift {
  font-size: 14px;
  line-height: 1.47;
  padding-top: 16px;
  margin-top: 4px;
}

/* R — Pure Black */
.race-blue {
  background: linear-gradient(145deg, #1D1D1F 0%, #0A0A0A 50%, #000000 100%);
}
.race-blue .race-letter { color: rgba(255,255,255,0.2); }
.race-blue h3 { color: var(--text-on-dark); }
.race-blue .race-subtitle { color: var(--accent); }
.race-blue > p { color: var(--text-on-dark-sub); }
.race-blue .race-tools span {
  background: rgba(196,122,42,0.15);
  color: rgba(255,255,255,0.9);
}
.race-blue .race-shift {
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* A — Copper Gold */
.race-green {
  background: linear-gradient(145deg, #D4893A 0%, #C47A2A 45%, #A8661F 100%);
}
.race-green .race-letter { color: rgba(255,255,255,0.3); }
.race-green h3 { color: #fff; }
.race-green .race-subtitle { color: rgba(255,255,255,0.6); }
.race-green > p { color: rgba(255,255,255,0.75); }
.race-green .race-tools span {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.race-green .race-shift {
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* C — Warm Amber */
.race-amber {
  background: linear-gradient(145deg, #FFFFFF 0%, #F5F5F7 50%, #EBEBED 100%);
}
.race-amber .race-letter { color: var(--accent); }
.race-amber h3 { color: var(--text-primary); }
.race-amber .race-subtitle { color: var(--accent); }
.race-amber > p { color: var(--text-secondary); }
.race-amber .race-tools span {
  background: var(--accent-light);
  color: var(--accent);
}
.race-amber .race-shift {
  color: var(--text-primary);
  border-top: 1px solid var(--border);
}

/* E — Space Black (Apple Dark) */
.race-dark {
  background: linear-gradient(145deg, #2C2C2E 0%, #1D1D1F 40%, #111111 100%);
}
.race-dark .race-letter { color: rgba(255,255,255,0.2); }
.race-dark h3 { color: var(--text-on-dark); }
.race-dark .race-subtitle { color: var(--accent); }
.race-dark > p { color: var(--text-on-dark-sub); }
.race-dark .race-tools span {
  background: rgba(255,255,255,0.08);
  color: var(--text-on-dark-sub);
}
.race-dark .race-shift {
  color: var(--text-on-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== COACHING / WHAT YOU RECEIVE ===== */
.coaching {
  padding: var(--space-4xl) 0;
  background: var(--bg-grey);
}

.coaching-grid {
  margin-top: 0;
}

.coaching-card {
  min-width: 420px;
  max-width: 420px;
  padding: 40px;
  border-radius: var(--radius);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.coaching-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 36px rgba(0, 0, 0, 0.14);
}

.coaching-num {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.coaching-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.coaching-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* Coaching card colours */
.coach-dark { background: linear-gradient(145deg, #2C2C2E 0%, #1D1D1F 40%, #111111 100%); }
.coach-dark .coaching-num { color: var(--accent); }
.coach-dark h3 { color: var(--text-on-dark); }
.coach-dark p { color: var(--text-on-dark-sub); }

.coach-copper { background: linear-gradient(145deg, #D4893A 0%, #C47A2A 45%, #A8661F 100%); }
.coach-copper .coaching-num { color: rgba(255,255,255,0.6); }
.coach-copper h3 { color: #fff; }
.coach-copper p { color: rgba(255,255,255,0.8); }

.coach-grey { background: linear-gradient(145deg, #FFFFFF 0%, #F5F5F7 50%, #EBEBED 100%); }
.coach-grey .coaching-num { color: var(--accent); }
.coach-grey h3 { color: var(--text-primary); }
.coach-grey p { color: var(--text-secondary); }

.coach-charcoal { background: linear-gradient(145deg, #3A3A3C 0%, #2C2C2E 45%, #1C1C1E 100%); }
.coach-charcoal .coaching-num { color: var(--accent); }
.coach-charcoal h3 { color: var(--text-on-dark); }
.coach-charcoal p { color: var(--text-on-dark-sub); }

.coach-warm { background: linear-gradient(145deg, #FFFFFF 0%, #FAF8F5 50%, #F0EBE3 100%); }
.coach-warm .coaching-num { color: var(--accent); }
.coach-warm h3 { color: var(--text-primary); }
.coach-warm p { color: var(--text-secondary); }

.coach-black { background: linear-gradient(145deg, #1D1D1F 0%, #0A0A0A 50%, #000000 100%); }
.coach-black .coaching-num { color: var(--accent); }
.coach-black h3 { color: var(--text-on-dark); }
.coach-black p { color: var(--text-on-dark-sub); }

/* ===== ABOUT ===== */
.about {
  padding: var(--space-4xl) 0;
  background: var(--bg-white);
}

.about-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.about-image-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.about-badges span {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--bg-grey);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
}

.about-lead {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.47;
  margin: 16px 0 32px;
  letter-spacing: -0.022em;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-detail h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.022em;
}

.about-detail p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.47;
}

/* ===== E-E-A-T CREDENTIALS ===== */
.credentials-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.credentials-heading {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.credential-icon {
  flex-shrink: 0;
  color: var(--accent);
  display: flex;
  align-items: center;
}

.credential-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== IS THIS FOR YOU ===== */
.for-you {
  padding: var(--space-4xl) 0;
  background: var(--bg-dark);
}

.for-you .section-tag {
  color: var(--accent);
}

.for-you .section-title-lg {
  color: var(--text-on-dark);
}

.for-you .section-desc {
  color: var(--text-on-dark-sub);
}

.for-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.for-you-col h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.for-you-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.for-you-col li {
  font-size: 15px;
  color: var(--text-on-dark-sub);
  line-height: 1.47;
  padding-left: 24px;
  position: relative;
}

.for-you-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--space-4xl) 0;
  background: var(--bg-white);
}

.pricing-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pricing-card-v2 {
  background: var(--bg-grey);
  border: none;
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.pricing-card-v2 .btn-primary {
  margin-top: auto;
}

.pricing-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 36px rgba(0, 0, 0, 0.10);
}

.pricing-card-v2.premium {
  background: var(--bg-dark);
  border: none;
}

.pricing-card-v2.elite {
  background: linear-gradient(145deg, #1D1D1F 0%, #0A0A0A 50%, #000000 100%);
  border: 1px solid rgba(196, 122, 42, 0.3);
}

.pricing-card-v2.elite h3 { color: var(--text-on-dark); }
.pricing-card-v2.elite .pricing-tier-desc { color: var(--text-on-dark-sub); }
.pricing-card-v2.elite .price-currency { color: var(--accent); }
.pricing-card-v2.elite .price-value { color: var(--text-on-dark); }
.pricing-card-v2.elite .price-period { color: var(--text-on-dark-sub); }
.pricing-card-v2.elite .pricing-list li { color: var(--text-on-dark-sub); }
.pricing-card-v2.elite .pricing-list li::before { color: var(--accent); }

.pricing-commitment {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: -16px;
  margin-bottom: 24px;
  font-weight: 500;
}

.premium-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card-v2 h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.pricing-card-v2.premium h3 { color: var(--text-on-dark); }

.pricing-tier-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-card-v2.premium .pricing-tier-desc { color: var(--text-on-dark-sub); }

.pricing-amount-v2 {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-card-v2.premium .price-currency { color: var(--text-on-dark); }

.price-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card-v2.premium .price-value { color: var(--text-on-dark); }

.price-period {
  font-size: 16px;
  color: var(--text-tertiary);
  margin-left: 4px;
}

.pricing-card-v2.premium .price-period { color: var(--text-on-dark-sub); }

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
  line-height: 1.47;
}

.pricing-card-v2.premium .pricing-list li { color: var(--text-on-dark-sub); }

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-context {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-grey);
  border-radius: var(--radius-sm);
  border: none;
}

.pricing-context p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.47;
}

.pricing-scarcity {
  margin-top: 24px;
  text-align: center;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
}

.pricing-scarcity strong {
  display: block;
  margin-bottom: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--space-4xl) 0;
  background: var(--bg-ivory);
}

.testimonial-card {
  min-width: 420px;
  max-width: 420px;
  padding: 40px;
  border-radius: var(--radius);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 36px rgba(0, 0, 0, 0.14);
}

.testimonial-quote-mark {
  font-family: "DM Serif Display", serif;
  font-size: 64px;
  line-height: 1;
  margin-bottom: -8px;
  opacity: 0.3;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.53;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: normal;
}

.testimonial-result {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.testimonial-result-label {
  font-weight: 700;
  margin-right: 4px;
}

.testimonial-attribution {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.testimonial-role {
  font-size: 14px;
}

/* Dark testimonial */
.testimonial-dark {
  background: linear-gradient(145deg, #2C2C2E 0%, #1D1D1F 40%, #111111 100%);
}
.testimonial-dark .testimonial-quote-mark { color: var(--accent); }
.testimonial-dark .testimonial-text { color: var(--text-on-dark); }
.testimonial-dark .testimonial-result { background: rgba(196, 122, 42, 0.12); color: rgba(255, 255, 255, 0.85); }
.testimonial-dark .testimonial-result-label { color: var(--accent); }
.testimonial-dark .testimonial-name { color: var(--text-on-dark); }
.testimonial-dark .testimonial-role { color: var(--text-on-dark-sub); }

/* Copper testimonial */
.testimonial-copper {
  background: linear-gradient(145deg, #D4893A 0%, #C47A2A 45%, #A8661F 100%);
}
.testimonial-copper .testimonial-quote-mark { color: rgba(255, 255, 255, 0.4); }
.testimonial-copper .testimonial-text { color: #fff; }
.testimonial-copper .testimonial-result { background: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.9); }
.testimonial-copper .testimonial-result-label { color: #fff; }
.testimonial-copper .testimonial-name { color: #fff; }
.testimonial-copper .testimonial-role { color: rgba(255, 255, 255, 0.7); }

/* Grey testimonial */
.testimonial-grey {
  background: linear-gradient(145deg, #FFFFFF 0%, #F5F5F7 50%, #EBEBED 100%);
}
.testimonial-grey .testimonial-quote-mark { color: var(--accent); }
.testimonial-grey .testimonial-text { color: var(--text-primary); }
.testimonial-grey .testimonial-result { background: rgba(196, 122, 42, 0.08); color: var(--text-primary); }
.testimonial-grey .testimonial-result-label { color: var(--accent); }
.testimonial-grey .testimonial-name { color: var(--text-primary); }
.testimonial-grey .testimonial-role { color: var(--text-secondary); }

/* ===== APPLY / CTA ===== */
.apply {
  padding: var(--space-4xl) 0;
  background: var(--bg-white);
}

.apply-card {
  background: var(--bg-black);
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
}

.apply-card .section-tag {
  color: var(--accent);
}

.apply-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
  line-height: 1.07;
}

.apply-desc {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--text-on-dark-sub);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.381;
}

.apply-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.apply-step {
  text-align: center;
}

.apply-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.apply-step p {
  font-size: 14px;
  color: var(--text-on-dark-sub);
  line-height: 1.47;
}

.apply-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 16px;
}

/* ===== APPLICATION FORM ===== */
.apply-form-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-grey);
  scroll-margin-top: 80px;
}

.form-card {
  background: linear-gradient(145deg, #1D1D1F 0%, #0A0A0A 50%, #000000 100%);
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
}

.form-desc {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--text-on-dark-sub);
  max-width: 600px;
  margin: 12px auto 44px;
  line-height: 1.381;
}

.application-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 8px;
  letter-spacing: -0.022em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.47;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(161, 161, 166, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Tier selector */
.tier-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tier-option {
  cursor: pointer;
}

.tier-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tier-option-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  text-align: center;
}

.tier-option-card strong {
  font-size: 17px;
  color: var(--text-on-dark);
}

.tier-option-card span {
  font-size: 13px;
  color: var(--text-on-dark-sub);
}

.tier-option input:checked + .tier-option-card {
  border-color: var(--accent);
  background: rgba(196, 122, 42, 0.1);
}

.tier-option input:focus-visible + .tier-option-card {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Radio group */
.radio-group {
  display: flex;
  gap: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-on-dark-sub);
}

.radio-option input[type="radio"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}

/* Form submit */
.form-submit {
  margin-top: 16px;
}

/* Success state */
.form-success {
  padding: 60px 40px;
  text-align: center;
}

.success-icon {
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 17px;
  color: var(--text-on-dark-sub);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.47;
}

/* ===== LEAD MAGNET ===== */
.lead-magnet {
  padding: var(--space-4xl) 0;
  background: var(--bg-white);
}

.lead-magnet-card {
  background: linear-gradient(145deg, #FAF8F5 0%, #F5F0E8 50%, #EDE5D8 100%);
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
  border: 1px solid rgba(196, 122, 42, 0.15);
}

.lead-magnet-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  line-height: 1.07;
  margin-bottom: 12px;
}

.lead-magnet-desc {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.381;
}

.lead-magnet-input-row {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  align-items: stretch;
}

.lead-magnet-input-row input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.lead-magnet-input-row input:focus {
  outline: none;
  border-color: var(--accent);
}

.lead-magnet-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.lead-magnet-privacy {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

.lead-magnet-success p {
  font-size: 17px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 20px;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--space-4xl) 0;
  background: var(--bg-grey);
}

.faq-header {
  margin-bottom: 60px;
}

.faq-sections {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.faq-group {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
}

.faq-group-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  letter-spacing: -0.022em;
}

.faq-plus {
  font-size: 24px;
  font-weight: 300;
  color: var(--text-tertiary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.47;
}

/* ===== FOOTER HERO ===== */
.footer-hero {
  padding: 80px 0 40px;
  overflow: hidden;
  background: var(--bg-dark);
}

.big-logo-text {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 600;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #c47a2a 0%, #8b5420 30%, #b06a25 50%, #d4922f 70%, #8b5420 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 40px;
  background: var(--bg-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-on-dark-sub);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-on-dark); }

.footer-arrow {
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-right { display: none; }

  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-image-placeholder { max-width: 360px; }
  .for-you-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-cards-row { grid-template-columns: 1fr; }
  .apply-steps { grid-template-columns: repeat(2, 1fr); }
  .faq-group { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-content { padding: 80px 24px 0; }
  .hero h1 { font-size: 30px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .stats-bar .container { gap: 24px; }
  .stats-bar { padding: 32px 0; }
  .stats-row { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat-number { font-size: 22px; }
  .stat-label { font-size: 11px; }
  .partners-row { gap: 28px; }
  .partner-name { font-size: 16px; }

  .race-card { min-width: 320px; max-width: 320px; padding: 32px; }
  .problem-card { min-width: 320px; max-width: 320px; padding: 32px; }
  .coaching-card { min-width: 320px; max-width: 320px; padding: 32px; }
  .testimonial-card { min-width: 320px; max-width: 320px; padding: 32px; }
  .apply-card { padding: 40px 24px; }
  .apply-steps { grid-template-columns: 1fr; }
  .form-card { padding: 40px 24px; }
  .form-row-2col { grid-template-columns: 1fr; }
  .tier-selector { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; }
  .lead-magnet-card { padding: 40px 24px; }
  .lead-magnet-input-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }

  .big-logo-text { font-size: 56px; letter-spacing: -2px; }
}

@media (max-width: 480px) {
  .navbar { top: 8px; width: calc(100% - 16px); }
  .nav-pill { padding: 8px 12px 8px 16px; }
  .hero { min-height: 540px; }
  .hero h1 { font-size: 28px; }
  .hero-ctas { flex-direction: column; }
  .section-title-lg { font-size: 26px; }
}

/* ===== APPLE-STYLE SCROLL REVEAL ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FOCUS-VISIBLE — KEYBOARD ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(196, 122, 42, 0.2);
}

.nav-links a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

/* ===== BUTTON MICRO-INTERACTIONS ===== */
.btn-primary {
  transition: background 0.2s, transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 122, 42, 0.25);
}

.btn-primary:active {
  transform: translateY(0px) scale(0.97);
  box-shadow: none;
  transition-duration: 0.1s;
}

.btn-ghost {
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.06);
}

.btn-ghost:active {
  transform: translateY(0px) scale(0.97);
  transition-duration: 0.1s;
}

.nav-cta {
  transition: background 0.2s, transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: translateY(0px) scale(0.97);
  transition-duration: 0.1s;
}

/* FAQ question hover/active */
.faq-q {
  transition: color 0.2s;
}

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

.faq-q:active {
  transform: scale(0.995);
}

/* ===== BLOG / INSIGHTS ===== */
.blog-section {
  padding: 100px 0;
  background: var(--bg-ivory);
}
.blog-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.blog-track {
  gap: 24px;
}
.blog-card {
  flex: 0 0 380px;
  border-radius: 20px;
  padding: 36px 32px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.blog-card-dark {
  background: linear-gradient(145deg, #1a1a1a 0%, #111 50%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.blog-card-dark .blog-card-title,
.blog-card-dark .blog-read-more {
  color: #fff;
}
.blog-card-dark .blog-card-desc {
  color: var(--text-on-dark-sub);
}
.blog-card-dark .blog-tag {
  background: rgba(196, 122, 42, 0.15);
  color: var(--accent);
}
.blog-card-copper {
  background: linear-gradient(145deg, #2a1f14 0%, #1a1510 50%, #120e09 100%);
  border: 1px solid rgba(196, 122, 42, 0.15);
}
.blog-card-copper .blog-card-title,
.blog-card-copper .blog-read-more {
  color: #fff;
}
.blog-card-copper .blog-card-desc {
  color: var(--text-on-dark-sub);
}
.blog-card-copper .blog-tag {
  background: rgba(196, 122, 42, 0.2);
  color: var(--accent);
}
.blog-card-grey {
  background: linear-gradient(145deg, #f8f8fa 0%, #f0f0f2 50%, #e8e8ed 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-card-grey .blog-card-title {
  color: var(--text-primary);
}
.blog-card-grey .blog-card-desc {
  color: var(--text-secondary);
}
.blog-card-grey .blog-read-more {
  color: var(--accent);
}
.blog-card-grey .blog-tag {
  background: rgba(196, 122, 42, 0.1);
  color: var(--accent-hover);
}
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}
.blog-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.blog-card-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: auto;
  padding-bottom: 24px;
}
.blog-read-more {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.blog-card:hover .blog-read-more {
  gap: 10px;
}
.blog-read-more .btn-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.blog-card:hover .blog-read-more .btn-arrow {
  transform: translateX(2px);
}

@media (max-width: 768px) {
  .blog-section {
    padding: 72px 0;
  }
  .blog-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .blog-card {
    flex: 0 0 300px;
    padding: 28px 24px;
    min-height: 280px;
  }
  .blog-card-title {
    font-size: 19px;
  }
}

/* ===== EMAIL SIGNUP POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-card {
  background: linear-gradient(145deg, #111 0%, #1a1a1a 50%, #111 100%);
  border: 1px solid rgba(196, 122, 42, 0.25);
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(196, 122, 42, 0.08);
}
.popup-overlay.active .popup-card {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark-sub);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.popup-icon {
  margin-bottom: 20px;
}
.popup-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.popup-desc {
  font-size: 15px;
  color: var(--text-on-dark-sub);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.popup-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.popup-email-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.popup-email-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.popup-email-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}
.popup-submit-btn {
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.popup-submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.popup-submit-btn .btn-arrow {
  margin-left: 4px;
}
.popup-success p {
  color: var(--accent);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
}
.popup-privacy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .popup-card {
    padding: 40px 24px 32px;
  }
  .popup-title {
    font-size: 24px;
  }
  .popup-input-row {
    flex-direction: column;
  }
  .popup-submit-btn {
    width: 100%;
    padding: 16px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}
