/* ═══════════════════════════════════════════
   MELDE — HOMEPAGE STYLES
   Hero, phone mockups, athlete strip,
   providers, steps, signals, testimonial,
   comparison section, competitor callout.
   ═══════════════════════════════════════════ */

/* ─── Hero ─── */
.hero {
  padding: 10rem 2rem 3rem;
  text-align: center;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.50;
  filter: grayscale(0%) contrast(1.1);
  animation: heroKenBurns 25s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.95) 85%,
    #000 100%
  );
}

@keyframes heroKenBurns {
  0% { transform: scale(1.0); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1.0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-dim);
  border: 1px solid rgba(200,168,78,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

/* ─── Hero bridge line (Part 2: device-naming hook) ─── */
.hero-bridge {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ─── Signal pills ─── */
.signal-demo {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.signal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-mono);
}
.signal-green { background: var(--green-dim); color: var(--green); border: 1px solid rgba(52,199,89,0.2); }
.signal-yellow { background: var(--yellow-dim); color: var(--gold); border: 1px solid rgba(200,168,78,0.2); }
.signal-red { background: var(--red-dim); color: var(--red); border: 1px solid rgba(255,69,58,0.2); }
.signal-dot { width: 7px; height: 7px; border-radius: 50%; }
.signal-green .signal-dot { background: var(--green); }
.signal-yellow .signal-dot { background: var(--gold); }
.signal-red .signal-dot { background: var(--red); }

/* ─── Social proof ─── */
.social-proof {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 0 0;
}
.proof-item {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}
.proof-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ─── Social proof section (standalone) ─── */
.social-proof-section {
  padding: 3rem 2rem;
}
.social-proof-section .proof-item {
  max-width: 300px;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.social-proof-section .proof-item strong {
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}


/* ═══════════════════════════════════════════
   PHONE MOCKUPS — G1 V2
   ═══════════════════════════════════════════ */

.phone-showcase {
  padding: 4rem 0 2rem;
  overflow: hidden;
}
.phone-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── G1 phone frame ── */
.phone-wrap { display: flex; flex-direction: column; align-items: center; }
.g1-phone {
  width: 290px; height: 580px;
  background: #100d0a;
  border-radius: 36px; overflow: hidden;
  position: relative;
  border: 2px solid #221a12;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03), 0 0 40px rgba(232,168,93,0.03);
  transition: transform 0.4s ease;
}
.g1-phone:hover { transform: translateY(-8px); }
.g1-ambient {
  position: absolute; top: 0; left: 0; right: 0; height: 280px;
  background: radial-gradient(ellipse at 50% -5%, rgba(80,50,15,0.3) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.g1-screen {
  position: absolute; top: 0; left: 0; right: 0; bottom: 56px;
  z-index: 1; overflow-y: auto; overflow-x: hidden;
}
.g1-screen::-webkit-scrollbar { display: none; }

/* ── Status bar ── */
.g1-status {
  height: 36px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 20px;
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.3);
  position: relative; z-index: 2;
}
.g1-status-right { display: flex; align-items: center; gap: 8px; font-size: 9px; }

/* ── Signal bar ── */
.g1-signal {
  display: flex; align-items: center; padding: 0 16px; gap: 6px;
  position: relative; z-index: 2;
}
.g1-signal.tier-green {
  height: 24px; background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(74,222,128,0.07);
}
.g1-signal.tier-green .g1-sb-dot { background: #4ade80; }
.g1-signal.tier-advisory {
  height: 26px; background: rgba(234,179,8,0.06);
  border-bottom: 1px solid rgba(234,179,8,0.1);
}
.g1-signal.tier-advisory .g1-sb-dot { background: #eab308; }
.g1-signal.tier-advisory .g1-sb-text { color: rgba(234,179,8,0.6); }

.g1-sb-dot { width: 4px; height: 4px; border-radius: 50%; animation: g1pulse 2.4s ease-in-out infinite; }
@keyframes g1pulse { 0%,100%{opacity:1}50%{opacity:0.2} }
.g1-sb-text { font-size: 8px; color: rgba(255,255,255,0.3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.g1-sb-time { font-size: 8px; color: rgba(255,255,255,0.18); margin-left: auto; flex-shrink: 0; }

/* ── Tab bar ── */
.g1-tabbar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 56px;
  background: #100d0a;
  border-top: 1px solid rgba(232,168,93,0.08);
  display: flex; align-items: flex-start; padding-top: 8px;
  z-index: 20;
}
.g1-tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.g1-tab-ic { font-size: 14px; opacity: 0.3; }
.g1-tab-lb { font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.28); }
.g1-tab.active .g1-tab-ic { opacity: 1; }
.g1-tab.active .g1-tab-lb { color: #e8a85d; }

/* ── Phone caption ── */
.g1-caption {
  text-align: center; margin-top: 14px;
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  font-weight: 500; max-width: 260px; line-height: 1.45;
}

/* ── Phone 1: Program screen ── */
.prog-inner { padding: 16px 16px 30px; }
.prog-dateline { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.prog-dl-line { flex: 1; height: 1px; background: rgba(232,168,93,0.1); }
.prog-dl-text { font-size: 8px; font-weight: 700; letter-spacing: 0.09em; color: rgba(232,168,93,0.38); text-transform: uppercase; }
.prog-h1 { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; color: #f0ebe3; margin-bottom: 4px; }
.prog-intro { font-size: 10px; color: rgba(255,255,255,0.32); line-height: 1.5; margin-bottom: 14px; }
.prog-intro strong { color: rgba(255,255,255,0.5); }

.prog-srow { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 8px; }
.prog-srow:last-child { border-bottom: none; }
.prog-srow-day { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.2); width: 20px; }
.prog-srow-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.prog-srow-name { font-size: 10.5px; font-weight: 600; color: #f0ebe3; flex: 1; }
.prog-srow-tag { font-size: 8px; font-weight: 700; text-transform: uppercase; }
.prog-srow-tag.done { color: #4ade80; }
.prog-srow-tag.anchor { color: #e8a85d; }
.prog-srow-tag.default { color: rgba(255,255,255,0.22); }

.prog-proto { margin-top: 14px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 12px; }
.prog-proto-label { font-size: 8px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 8px; }
.prog-zone { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 7px 10px; margin-bottom: 5px; }
.prog-zone-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.prog-zone-name { font-size: 9px; font-weight: 700; }
.prog-zone-range { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.3); font-family: 'JetBrains Mono', monospace; }
.prog-zone-desc { font-size: 8px; color: rgba(255,255,255,0.22); line-height: 1.4; }

/* ── Phone 2: Today screen ── */
.today-inner { padding: 16px 16px 30px; }
.today-dateline { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.today-dl-line { flex: 1; height: 1px; background: rgba(232,168,93,0.12); }
.today-dl-text { font-size: 8px; font-weight: 700; letter-spacing: 0.08em; color: rgba(232,168,93,0.45); text-transform: uppercase; }

.today-headline {
  font-size: 18px; font-weight: 800; line-height: 1.12;
  letter-spacing: -0.03em; color: #f0ebe3; margin-bottom: 12px;
}
.today-headline em { font-style: italic; color: #e8a85d; }

.today-body {
  font-size: 10.5px; line-height: 1.65; color: rgba(255,255,255,0.52);
  margin-bottom: 14px; font-weight: 400;
}
.today-body strong { color: rgba(255,255,255,0.72); font-weight: 600; }
.today-body .gold { color: #e8a85d; font-weight: 600; }
.today-body .green { color: #4ade80; font-weight: 600; }

/* ── Mission override ── */
.g1-override { margin-bottom: 14px; }
.g1-override-label {
  font-size: 7.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #eab308; margin-bottom: 7px;
}
.g1-override-cards { display: flex; flex-direction: column; gap: 5px; }
.g1-oc {
  padding: 8px 10px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  display: flex; align-items: flex-start; gap: 7px;
}
.g1-oc.selected { border-color: rgba(232,168,93,0.3); background: rgba(232,168,93,0.06); }
.g1-oc-radio {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.g1-oc.selected .g1-oc-radio { border-color: #e8a85d; }
.g1-oc-radio-dot { width: 6px; height: 6px; border-radius: 50%; background: #e8a85d; display: none; }
.g1-oc.selected .g1-oc-radio-dot { display: block; }
.g1-oc-content { flex: 1; min-width: 0; }
.g1-oc-tag { font-size: 7px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1px; }
.g1-oc-tag.rec { color: #eab308; }
.g1-oc-tag.alt { color: #4ade80; }
.g1-oc-tag.proceed { color: rgba(255,255,255,0.3); }
.g1-oc-title { font-size: 10px; font-weight: 600; color: #f0ebe3; margin-bottom: 1px; }
.g1-oc-desc { font-size: 8px; color: rgba(255,255,255,0.38); line-height: 1.4; }

/* ── Biometric cards ── */
.g1-bio-row { display: flex; gap: 5px; margin-bottom: 12px; }
.g1-bio {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 7px 4px 5px; text-align: center;
}
.g1-bio-val-row { display: flex; align-items: baseline; justify-content: center; gap: 1px; }
.g1-bio-val { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: #f0ebe3; }
.g1-bio-unit { font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.35); }
.g1-bio-spark { height: 12px; margin: 3px auto; max-width: 48px; }
.g1-bio-spark svg { width: 100%; height: 100%; }
.g1-bio-label { font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.28); }
.g1-bio-delta { font-size: 8px; font-weight: 700; margin-top: 1px; }
.g1-bio-delta.positive { color: #4ade80; }
.g1-bio-delta.negative { color: #eab308; }
.g1-bio-baseline { font-size: 7px; color: rgba(255,255,255,0.22); margin-top: 0; }

/* ── Completed workout card ── */
.g1-wc {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 2px solid #4ade80;
  border-radius: 8px; padding: 10px; margin-bottom: 10px;
}
.g1-wc-badge { font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #4ade80; margin-bottom: 3px; }
.g1-wc-title { font-size: 12px; font-weight: 800; color: #f0ebe3; margin-bottom: 4px; }
.g1-wc-stats { display: flex; gap: 12px; }
.g1-wc-sv { font-size: 9px; color: rgba(255,255,255,0.45); }
.g1-wc-sl { font-size: 8px; color: rgba(255,255,255,0.28); }

/* ── Phone 3: Coach screen ── */
.coach-inner { padding: 14px 16px 30px; }

.coach-id {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(232,168,93,0.08);
}
.coach-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #e8a85d 0%, #8a5a20 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #100d0a;
}
.coach-id-info { flex: 1; }
.coach-id-name { font-size: 10px; font-weight: 700; color: #f0ebe3; }
.coach-id-status { display: flex; align-items: center; gap: 4px; }
.coach-id-sdot { width: 4px; height: 4px; border-radius: 50%; background: #4ade80; }
.coach-id-sl { font-size: 8px; color: rgba(255,255,255,0.25); }

/* ── Time tabs ── */
.coach-tabs {
  display: flex; gap: 0; margin-bottom: 10px;
  border-bottom: 1px solid rgba(232,168,93,0.12);
}
.coach-tab-btn {
  flex: 1; text-align: center; font-size: 8px; font-weight: 600;
  padding: 5px 0; cursor: pointer; color: rgba(255,255,255,0.28);
  border-bottom: 1.5px solid transparent; transition: color 0.3s, border-color 0.3s;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.03em;
  background: none; border-top: none; border-left: none; border-right: none;
}
.coach-tab-btn.active { color: #e8a85d; border-bottom-color: #e8a85d; }

/* ── Editorial sections ── */
.coach-ed-label {
  font-size: 7px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #e8a85d; margin-bottom: 5px;
}
.coach-ed-body {
  font-size: 10px; line-height: 1.65; color: rgba(255,255,255,0.52); margin-bottom: 0;
}
.coach-ed-body strong { color: rgba(255,255,255,0.72); font-weight: 600; }
.coach-ed-body .gold { color: #e8a85d; font-weight: 700; }

.coach-divider { height: 1px; background: rgba(232,168,93,0.12); margin: 10px 0; }

/* ── Chat bubbles ── */
.coach-chat-label {
  font-size: 7px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.12);
  margin-top: 12px; margin-bottom: 8px;
}
.coach-cm { margin-bottom: 6px; max-width: 88%; }
.coach-cm.user { margin-left: auto; }
.coach-cm-bubble {
  padding: 8px 10px; border-radius: 10px;
  font-size: 9px; line-height: 1.5;
}
.coach-cm.coach .coach-cm-bubble {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.45);
}
.coach-cm.user .coach-cm-bubble {
  background: rgba(232,168,93,0.1);
  border: 1px solid rgba(232,168,93,0.15);
  color: rgba(255,255,255,0.6);
}
.coach-cm-time { font-size: 7px; color: rgba(255,255,255,0.15); margin-top: 2px; padding: 0 3px; }
.coach-cm.user .coach-cm-time { text-align: right; }

/* ── Chip bar ── */
.g1-chips {
  display: flex; gap: 4px; padding: 6px 0; overflow-x: auto;
  margin-bottom: 6px;
}
.g1-chips::-webkit-scrollbar { display: none; }
.g1-chip {
  flex-shrink: 0; padding: 4px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; white-space: nowrap;
  font-size: 8px; color: rgba(255,255,255,0.4);
}

/* ── Chat input ── */
.g1-chat-input {
  display: flex; gap: 6px; align-items: center;
}
.g1-ci-field {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 6px 10px;
  font-size: 9px; color: rgba(255,255,255,0.4);
}
.g1-ci-send {
  width: 24px; height: 24px; border-radius: 50%; background: #e8a85d;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #100d0a; flex-shrink: 0;
}

/* ── Briefing history toggle ── */
.coach-history-toggle {
  text-align: left; cursor: pointer;
}
.coach-history-label {
  font-size: 9px; color: #666666; letter-spacing: 0.02em;
}

/* ── AI disclaimer ── */
.g1-disclaimer {
  font-size: 7px; color: rgba(255,255,255,0.18);
  text-align: center; margin-top: 12px;
}


/* ═══════════════════════════════════════════
   ATHLETE LIFESTYLE STRIP
   ═══════════════════════════════════════════ */

.athlete-strip { padding: 0 0 2rem; overflow: hidden; }
.athlete-strip-inner { display: flex; gap: 1rem; max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.athlete-strip-card {
  position: relative;
  flex: 1 1 0;
  min-width: 200px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.athlete-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.athlete-strip-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.1);
}
.athlete-strip-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.athlete-strip-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.athlete-strip-label .gold-accent {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  display: block;
  margin-top: 4px;
}


/* ═══════════════════════════════════════════
   PROVIDERS
   ═══════════════════════════════════════════ */

.providers { padding: 3rem 0 4rem; text-align: center; }
.providers-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-primary); margin-bottom: 1.5rem; font-weight: 500; }
.provider-grid { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; align-items: center; }
.provider-item { display: flex; align-items: center; gap: 0.6rem; color: var(--text-primary); font-weight: 600; font-size: 1rem; opacity: 0.8; transition: opacity 0.3s; }
.provider-item:hover { opacity: 1; }
.provider-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; }
.pi-apple { background: rgba(255,255,255,0.08); color: #fff; }
.pi-oura { background: rgba(200,168,78,0.12); color: var(--gold); }
.pi-peloton { background: rgba(255,69,58,0.12); color: var(--red); }
.pi-garmin { background: rgba(68,138,255,0.12); color: var(--blue); }

/* ─── Competitor positioning callout (Part 2) ─── */
.competitor-callout {
  max-width: 740px;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}
.competitor-callout strong {
  color: var(--gold);
  font-style: normal;
}


/* ═══════════════════════════════════════════
   "WHAT YOUR APPS DON'T DO" COMPARISON (Part 2)
   ═══════════════════════════════════════════ */

.comparison-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
}
.comparison-card.melde {
  border-color: rgba(200,168,78,0.3);
  background: var(--bg-card-elevated);
}
.comparison-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.9rem;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
}
.comparison-card.melde .comparison-card-icon {
  background: var(--gold-dim);
  color: var(--gold);
}
.comparison-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}
.comparison-card.melde h3 { color: var(--gold); }
.comparison-item {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.comparison-item:last-child { border-bottom: none; }
.comparison-icon {
  display: inline-block;
  width: 1.2em;
  text-align: center;
  margin-right: 0.4rem;
  color: var(--text-secondary);
}
.comparison-icon.dim { color: var(--text-muted); opacity: 0.5; }
.comparison-icon.gold { color: var(--gold); }
.comparison-card.melde .comparison-item { color: var(--text-primary); }


/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */

.how-it-works { padding: 6rem 0; border-top: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  border-color: rgba(200,168,78,0.3);
  transform: translateY(-4px);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover::before { opacity: 1; }
.step-number { font-family: var(--font-mono); font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* Step card background images — increased opacity for visual energy */
.step-card-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  z-index: 0;
  overflow: hidden;
}
.step-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.50;
  filter: grayscale(0%);
}
.step-card-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, var(--bg-card) 0%, transparent 100%);
}
.step-card > *:not(.step-card-bg) { position: relative; z-index: 1; }


/* ═══════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════ */

.testimonial {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.testimonial blockquote {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ─── Founder credibility line (Part 2) ─── */
.founder-line {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════ */

.features {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.3s;
  overflow: hidden;
}
.feature-card:hover { border-color: rgba(200,168,78,0.25); }
.feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.fi-signal { background: var(--gold-dim); color: var(--gold); }
.fi-plan { background: rgba(68,138,255,0.1); color: var(--blue); }
.fi-coach { background: rgba(200,168,78,0.08); color: var(--gold-light); }
.fi-science { background: var(--green-dim); color: var(--green); }
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* Feature card top image band */
.feature-card-img {
  width: calc(100% + 3.5rem);
  height: 100px;
  margin: -1.75rem -1.75rem 1.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%) contrast(1.05);
  opacity: 0.65;
  transition: opacity 0.4s ease, filter 0.4s ease;
}
.feature-card:hover .feature-card-img img {
  opacity: 0.80;
  filter: grayscale(0%) contrast(1.1);
}
.feature-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
}


/* ═══════════════════════════════════════════
   PELOTON SECTION (homepage)
   ═══════════════════════════════════════════ */

.peloton-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  position: relative;
}


/* ═══════════════════════════════════════════
   ATMOSPHERE BREAKS
   ═══════════════════════════════════════════ */

.atmosphere-break {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin: 0;
}
.atmosphere-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.60;
  filter: grayscale(0%);
}
.atmosphere-break::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.1) 25%,
    rgba(0,0,0,0.1) 75%,
    rgba(0,0,0,0.6) 100%
  );
}
.atmosphere-break-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}


/* ═══════════════════════════════════════════
   HOMEPAGE-SPECIFIC RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {
  .g1-phone { width: 250px; height: 500px; }
  .comparison-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero { padding: 7rem 1.5rem 2rem; min-height: auto; }
  .phone-row { flex-direction: column; align-items: center; }
  .g1-phone { width: 280px; height: 560px; }
  .phone-showcase .phone-wrap:nth-child(n+3) { display: none; }
  .athlete-strip-inner { flex-wrap: wrap; }
  .athlete-strip-card { flex: 1 1 calc(50% - 0.5rem); min-width: 160px; height: 200px; }
  .features-grid { grid-template-columns: 1fr; }
  .atmosphere-break { height: 180px; }
}

@media (max-width: 480px) {
  .athlete-strip-card { flex: 1 1 100%; height: 180px; }
}

/* ─── Gold pulse on section tags ─── */
@keyframes goldPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.section-tag { animation: goldPulse 3s ease-in-out infinite; }
