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

:root {
  --orange:   #E67E22;
  --orange-lt:#F39C12;
  --navy:     #1a2433;
  --navy-mid: #2C3E50;
  --navy-lt:  #34495E;
  --slate:    #7F8C8D;
  --silver:   #BDC3C7;
  --white:    #FFFFFF;
  --off-white:#F5F5F7;
  --text-dark:#1d1d1f;
  --text-gray:#6e6e73;
  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:12px;
  --transition:0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* ─── Nav ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 52px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background var(--transition);
}
nav.dark {
  background: rgba(26,36,51,0.82);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-logo {
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text-dark); text-decoration: none;
}
nav.dark .nav-logo { color: var(--white); }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; color: var(--text-gray);
  text-decoration: none; transition: color 0.2s;
}
nav.dark .nav-links a { color: rgba(255,255,255,0.7); }
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: white; font-size: 0.78rem;
  font-weight: 600; padding: 7px 16px; border-radius: 20px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--orange-lt); transform: scale(1.03); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, #1f3045 55%, #2d1a0e 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none; opacity: 0.35;
  animation: pulse 6s ease-in-out infinite alternate;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: var(--orange); top: -100px; right: -150px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: #6A5ACD; bottom: -100px; left: -100px;
}
@keyframes pulse { from { opacity: 0.25; } to { opacity: 0.45; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,126,34,0.18); border: 1px solid rgba(230,126,34,0.35);
  color: var(--orange-lt); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.hero-eyebrow::before { content: "●"; font-size: 0.5rem; }

.hero h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.0;
  color: white;
  opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
}
.hero h1 span { color: var(--orange); }

.hero-sub {
  margin-top: 24px; max-width: 580px;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.68); line-height: 1.6; font-weight: 400;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}

.hero-actions {
  margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 0.7s 0.65s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white;
  font-size: 1rem; font-weight: 600; padding: 15px 30px;
  border-radius: 50px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(230,126,34,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(230,126,34,0.55); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: white;
  font-size: 1rem; font-weight: 600; padding: 15px 30px;
  border-radius: 50px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

/* Phone mockup */
.hero-device {
  margin-top: 70px; position: relative; display: flex; justify-content: center;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
}
.phone-frame {
  width: min(280px, 75vw);
  background: linear-gradient(145deg, #1e2d3d 0%, #0d1825 100%);
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.12);
  padding: 20px 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  animation: float 4s ease-in-out infinite;
}
.phone-notch {
  width: 90px; height: 6px; background: rgba(0,0,0,0.6);
  border-radius: 3px; margin: 0 auto 16px;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-screen {
  border-radius: 28px; overflow: hidden;
  background: var(--navy-mid);
  aspect-ratio: 9/19.5;
  display: flex; flex-direction: column;
}
.ps-header {
  background: linear-gradient(135deg, #2c3e50, #1a2433);
  padding: 14px 16px 10px;
}
.ps-greeting { font-size: 0.6rem; color: rgba(255,255,255,0.5); }
.ps-name { font-size: 0.95rem; font-weight: 700; color: white; letter-spacing: -0.02em; }
.ps-plan-card {
  background: linear-gradient(135deg, #e67e22, #d35400);
  border-radius: 14px; margin: 8px 12px;
  padding: 12px;
}
.ps-plan-label { font-size: 0.5rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.05em; }
.ps-plan-name { font-size: 0.75rem; font-weight: 700; color: white; margin-top: 2px; }
.ps-progress-row { display: flex; gap: 8px; margin-top: 8px; }
.ps-stat { flex: 1; background: rgba(0,0,0,0.2); border-radius: 8px; padding: 6px; text-align: center; }
.ps-stat-val { font-size: 0.7rem; font-weight: 700; color: white; }
.ps-stat-lbl { font-size: 0.45rem; color: rgba(255,255,255,0.65); }
.ps-prog-bar { height: 3px; background: rgba(255,255,255,0.25); border-radius: 2px; margin-top: 8px; }
.ps-prog-fill { height: 100%; width: 62%; background: white; border-radius: 2px; }
.ps-section { padding: 10px 12px 4px; }
.ps-section-title { font-size: 0.55rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.ps-week-row { display: flex; align-items: center; gap: 8px; padding: 8px; background: rgba(255,255,255,0.05); border-radius: 10px; margin-top: 6px; }
.ps-week-badge { width: 24px; height: 24px; border-radius: 8px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 800; color: white; flex-shrink: 0; }
.ps-week-info { flex: 1; }
.ps-week-name { font-size: 0.6rem; font-weight: 600; color: white; }
.ps-week-dist { font-size: 0.5rem; color: rgba(255,255,255,0.5); }
.ps-week-row2 { background: rgba(255,255,255,0.03); }
.ps-chart-preview { margin: 8px 12px; height: 50px; background: rgba(255,255,255,0.04); border-radius: 10px; overflow: hidden; display: flex; align-items: flex-end; padding: 8px 8px 6px; gap: 3px; }
.ps-bar { border-radius: 3px 3px 0 0; flex: 1; opacity: 0.7; }
.ps-tabbar { display: flex; padding: 8px 12px 6px; border-top: 1px solid rgba(255,255,255,0.06); gap: 4px; }
.ps-tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; opacity: 0.4; }
.ps-tab.active { opacity: 1; }
.ps-tab-icon { font-size: 0.9rem; }
.ps-tab-lbl { font-size: 0.4rem; color: rgba(255,255,255,0.6); }
.ps-tab.active .ps-tab-lbl { color: var(--orange); }

/* ─── Sections base ────────────────────────────────── */
section { padding: 100px 5%; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--text-dark);
}
.section-sub {
  margin-top: 16px; font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-gray); line-height: 1.65; max-width: 600px;
}
.center { text-align: center; }
.center .section-sub { margin: 16px auto 0; }

/* ─── Stats Banner ─────────────────────────────────── */
.stats-banner {
  background: white;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 40px 5%;
}
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; gap: 20px;
}
.stat-item-num {
  font-size: 2.4rem; font-weight: 800; color: var(--orange);
  letter-spacing: -0.04em; line-height: 1;
}
.stat-item-lbl {
  font-size: 0.82rem; color: var(--text-gray); margin-top: 6px; font-weight: 500;
}

/* ─── Features Grid ────────────────────────────────── */
.features-section { background: var(--off-white); }
.features-grid {
  max-width: 1100px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0; transform: translateY(30px);
}
.feature-card.visible {
  opacity: 1; transform: translateY(0);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(230,126,34,0.12), rgba(230,126,34,0.06));
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.feature-card.featured .feature-icon svg { stroke: #f5a461; }
.feature-card h3 {
  font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text-dark); margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem; color: var(--text-gray); line-height: 1.65;
}
.feature-badge {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px;
  background: rgba(230,126,34,0.1);
  border: 1px solid rgba(230,126,34,0.3);
  color: var(--orange); font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feature-badge::before {
  content: "★"; font-size: 0.6rem;
}

/* ─── Plans Showcase ───────────────────────────────── */
.plans-section {
  background: linear-gradient(170deg, var(--navy) 0%, #1f3045 100%);
  color: white;
}
.plans-section .section-title { color: white; }
.plans-section .section-sub { color: rgba(255,255,255,0.65); }
.plans-section .section-eyebrow { color: var(--orange-lt); }
.plans-showcase {
  max-width: 1100px; margin: 70px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.plans-device { position: relative; display: flex; justify-content: center; }
.plans-device .phone-frame { animation: float2 5s ease-in-out infinite; }
@keyframes float2 {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
.plans-features { display: flex; flex-direction: column; gap: 24px; }
.plan-feature-row {
  display: flex; gap: 18px; align-items: flex-start;
  opacity: 0; transform: translateX(20px);
  transition: all 0.5s;
}
.plan-feature-row.visible { opacity: 1; transform: translateX(0); }
.pf-icon {
  width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0;
  background: rgba(230,126,34,0.18); display: flex; align-items: center;
  justify-content: center;
}
.pf-icon svg { width: 22px; height: 22px; stroke: #f5a461; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.pf-text h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 4px; }
.pf-text p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* ─── Plan Wizard ──────────────────────────────────── */
.wizard-section {
  background: var(--off-white);
  overflow: hidden;
}
.wizard-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.wizard-content .section-eyebrow { color: var(--orange); }
.wizard-steps {
  margin-top: 36px; display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.wizard-steps::before {
  content: '';
  position: absolute; left: 18px; top: 20px; bottom: 20px;
  width: 2px; background: linear-gradient(180deg, var(--orange), rgba(230,126,34,0.1));
  border-radius: 1px;
}
.wizard-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 0 0 24px 0;
  opacity: 0; transform: translateX(-16px);
  transition: all 0.5s;
}
.wizard-step.visible { opacity: 1; transform: translateX(0); }
.wizard-step:last-child { padding-bottom: 0; }
.ws-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
  box-shadow: 0 4px 14px rgba(230,126,34,0.35);
  position: relative; z-index: 1;
}
.ws-text h4 { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.ws-text p { font-size: 0.85rem; color: var(--text-gray); line-height: 1.5; }
.wizard-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
  padding: 20px;
}
.wizard-phone-wrap {
  position: relative;
  z-index: 0;
}
.wizard-phone-wrap .phone-frame {
  animation: float3 5s ease-in-out infinite;
}
@keyframes float3 {
  0%,100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}
.wizard-badge {
  position: absolute; top: 20px; right: -28px;
  z-index: 10;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: white; font-size: 0.75rem; font-weight: 800;
  padding: 10px 18px; border-radius: 22px;
  box-shadow: 0 12px 32px rgba(230,126,34,0.55), 0 2px 8px rgba(0,0,0,0.18);
  letter-spacing: 0.03em;
  opacity: 0; transform: rotate(6deg) scale(0.85);
  transition: all 0.5s 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.wizard-badge.visible { opacity: 1; transform: rotate(6deg) scale(1); }

/* ─── AI Highlight ─────────────────────────────────── */
.ai-section {
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.ai-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.ai-visual {
  position: relative; padding: 40px;
  display: flex; align-items: center; justify-content: center;
}
.ai-card {
  background: linear-gradient(135deg, #1a2433, #2c1a0e);
  border: 1px solid rgba(230,126,34,0.25);
  border-radius: var(--radius-lg); padding: 28px;
  width: 100%; max-width: 360px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  position: relative;
  opacity: 0; transform: scale(0.95);
  transition: all 0.6s var(--transition);
}
.ai-card.visible { opacity: 1; transform: scale(1); }
.ai-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.ai-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  display: flex; align-items: center; justify-content: center;
}
.ai-avatar svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.ai-label { font-size: 0.75rem; font-weight: 700; color: white; }
.ai-sublabel { font-size: 0.65rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
.ai-message {
  font-size: 0.85rem; line-height: 1.65;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05); border-radius: 14px; padding: 14px;
  border-left: 3px solid var(--orange);
}
.ai-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.ai-tag svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.45); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ai-content { }
.ai-content .section-eyebrow { margin-top: 0; }
.ai-points { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.ai-point { display: flex; gap: 14px; align-items: flex-start; }
.ai-point-check {
  width: 36px; height: 36px; border-radius: 11px; flex-shrink: 0;
  background: rgba(230,126,34,0.12); border: 1px solid rgba(230,126,34,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.ai-point-check svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.ai-point h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.ai-point p { font-size: 0.85rem; color: var(--text-gray); margin-top: 3px; line-height: 1.5; }

/* ─── Charts / Progress ────────────────────────────── */
.progress-section { background: white; }
.progress-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.chart-demo {
  background: var(--navy-mid); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 25px 70px rgba(0,0,0,0.18);
  opacity: 0; transform: translateX(-30px);
  transition: all 0.6s var(--transition);
}
.chart-demo.visible { opacity: 1; transform: translateX(0); }
.chart-title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.chart-title { font-size: 0.82rem; font-weight: 700; color: white; }
.chart-pill { background: rgba(230,126,34,0.2); color: var(--orange-lt); font-size: 0.65rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.chart-bars { display: flex; gap: 6px; align-items: flex-end; height: 120px; }
.chart-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.chart-bar {
  width: 100%; border-radius: 6px 6px 0 0;
  transition: height 1s cubic-bezier(0.34,1.56,0.64,1);
}
.chart-bar.bar-build { background: linear-gradient(180deg, #3498db, #2980b9); }
.chart-bar.bar-rest { background: linear-gradient(180deg, #27ae60, #1e8449); }
.chart-bar.bar-taper { background: linear-gradient(180deg, #e74c3c, #c0392b); }
.chart-bar.bar-race { background: linear-gradient(180deg, var(--orange), #d35400); }
.chart-bar-lbl { font-size: 0.45rem; color: rgba(255,255,255,0.4); }
.chart-legend {
  display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap;
}
.cl-item { display: flex; align-items: center; gap: 5px; font-size: 0.65rem; color: rgba(255,255,255,0.6); }
.cl-dot { width: 8px; height: 8px; border-radius: 50%; }
.progress-content { }
.progress-features { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pf-mini {
  background: var(--off-white); border-radius: var(--radius-md); padding: 18px;
  border: 1px solid rgba(0,0,0,0.06);
}
.pf-mini-icon { margin-bottom: 10px; display: flex; }
.pf-mini-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.pf-mini h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.pf-mini p { font-size: 0.78rem; color: var(--text-gray); margin-top: 3px; line-height: 1.5; }

/* ─── Events Directory ──────────────────────────────── */
.events-section { padding: 100px 5%; background: var(--navy); }
.events-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 80px;
}
.events-device { flex-shrink: 0; }
.events-content { flex: 1; }
.events-section .section-eyebrow { color: var(--orange-lt); }
.events-section .section-title { color: white; }
.events-section .section-sub { color: rgba(255,255,255,0.65); }
.events-features { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.ef-item { display: flex; align-items: flex-start; gap: 16px; }
.ef-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(230,126,34,0.15); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.ef-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ef-item h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 4px; }
.ef-item p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
@media (max-width: 860px) {
  .events-inner { flex-direction: column; gap: 48px; align-items: center; }
  .events-content { text-align: center; }
  .ef-item { text-align: left; }
}

/* ─── Widgets ──────────────────────────────────────── */
.widgets-section { padding: 100px 5%; background: var(--off-white); }
.widgets-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 780px; margin: 56px auto 0;
}
.widget-card {
  background: white; border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
}
.widget-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.widget-mockup {
  background: linear-gradient(145deg, var(--navy), #1a2a3a);
  padding: 28px 24px 24px;
  display: flex; justify-content: center; align-items: center;
  height: 190px;
}
.wm-inner {
  background: #1c2b3a; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px; width: 130px; height: 130px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.wm-ring-wrap { display: flex; justify-content: center; align-items: center; flex: 1; }
.wm-ring { position: relative; width: 80px; height: 80px; }
.wm-ring svg { width: 80px; height: 80px; transform: rotate(-90deg); }
.wm-ring-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.wm-ring-text span { font-size: 1.1rem; font-weight: 700; color: var(--orange); line-height: 1; }
.wm-ring-text small { font-size: 0.45rem; color: rgba(255,255,255,0.45); }
.wm-label { font-size: 0.5rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.wm-footer { display: flex; justify-content: space-between; }
.wm-footer span { font-size: 0.48rem; color: rgba(255,255,255,0.35); }
.wm-countdown { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; gap: 2px; }
.wm-days { font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; }
.wm-days-label { font-size: 0.45rem; font-weight: 500; color: rgba(255,255,255,0.45); }
.wm-race-name { font-size: 0.55rem; font-weight: 700; color: rgba(255,255,255,0.9); text-align: center; }
.wm-race-dist { font-size: 0.48rem; color: var(--orange); text-align: center; }
/* medium widget mockup */
.wm-inner.medium { width: auto; height: auto; padding: 10px 12px; }
.wm-medium { width: 260px; height: 118px; display: flex; flex-direction: row; gap: 10px; }
.wm-med-panel { display: flex; flex-direction: column; justify-content: space-between; }
.wm-med-panel.week { flex: 1.4; }
.wm-med-panel.plan { flex: 1; }
.wm-med-divider { width: 1px; background: rgba(255,255,255,0.12); margin: 4px 0; }
.wm-med-label { font-size: 0.42rem; font-weight: 800; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; }
.wm-med-ring-row { display: flex; align-items: center; gap: 8px; }
.wm-med-ring { position: relative; width: 50px; height: 50px; flex-shrink: 0; }
.wm-med-ring svg { width: 50px; height: 50px; transform: rotate(-90deg); }
.wm-med-ring-pct { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 700; color: #30994b; }
.wm-med-km { font-size: 1.05rem; font-weight: 700; color: rgba(255,255,255,0.92); line-height: 1; }
.wm-med-km-unit { font-size: 0.42rem; font-weight: 500; color: rgba(255,255,255,0.4); }
.wm-med-km-target { font-size: 0.42rem; color: rgba(255,255,255,0.35); }
.wm-med-runs { display: flex; align-items: center; gap: 3px; font-size: 0.42rem; color: rgba(255,255,255,0.35); }
.wm-med-bar { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.1); overflow: hidden; }
.wm-med-bar-fill { height: 100%; border-radius: 2px; }
.wm-med-pct-big { font-size: 1.6rem; font-weight: 900; color: var(--orange); line-height: 1; }
.wm-med-pct-pct { font-size: 0.6rem; font-weight: 700; color: rgba(230,126,34,0.7); }
.wm-med-complete { font-size: 0.42rem; color: rgba(255,255,255,0.35); }
.wm-med-weeks { font-size: 0.42rem; font-weight: 500; color: rgba(255,255,255,0.35); }
.wm-med-pill { display: inline-flex; align-items: center; gap: 3px; font-size: 0.42rem; font-weight: 600; color: var(--orange); background: rgba(230,126,34,0.15); border-radius: 10px; padding: 2px 6px; }
.wm-phase-pill { font-size: 0.42rem; font-weight: 700; color: #30994b; background: rgba(48,153,75,0.18); border: 0.5px solid rgba(48,153,75,0.35); border-radius: 10px; padding: 2px 6px; }
.widget-info { padding: 20px 22px 22px; }
.widget-info h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.widget-info p { font-size: 0.82rem; color: var(--text-gray); line-height: 1.5; margin: 0; }
.widget-pro-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(230,126,34,0.1); border: 1px solid rgba(230,126,34,0.25);
  color: var(--orange); font-size: 0.65rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
@media(max-width:768px) {
  .widgets-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ─── Pricing ──────────────────────────────────────── */
.pricing-section {
  background: linear-gradient(165deg, #f5f5f7, #ececec);
}
.pricing-grid {
  max-width: 820px; margin: 60px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.pricing-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1px solid rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card-body { flex: 1; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.pricing-card.pro {
  background: linear-gradient(145deg, var(--navy), var(--navy-lt));
  border: 2px solid var(--orange);
  position: relative; overflow: hidden;
}
.pricing-tier {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--orange); margin-bottom: 10px;
}
.pricing-card.pro .pricing-tier { color: var(--orange-lt); }
.pricing-price {
  font-size: 3rem; font-weight: 800; letter-spacing: -0.04em;
  color: var(--text-dark); line-height: 1;
}
.pricing-card.pro .pricing-price { color: white; }
.pricing-period { font-size: 0.85rem; color: var(--text-gray); margin-top: 4px; }
.pricing-card.pro .pricing-period { color: rgba(255,255,255,0.55); }
.pricing-alt { font-size: 0.8rem; color: var(--text-gray); margin-top: 6px; }
.pricing-card.pro .pricing-alt { color: rgba(255,255,255,0.5); }
.pricing-divider {
  height: 1px; background: rgba(0,0,0,0.07);
  margin: 24px 0;
}
.pricing-card.pro .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; }
.pf-row { display: flex; gap: 10px; align-items: flex-start; }
.pf-check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(230,126,34,0.15); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; margin-top: 2px;
}
.pricing-card.pro .pf-check { background: rgba(230,126,34,0.25); }
.pf-row span { font-size: 0.88rem; color: var(--text-dark); line-height: 1.45; }
.pricing-card.pro .pf-row span { color: rgba(255,255,255,0.85); }
.pricing-cta {
  display: block; text-align: center; margin-top: 30px;
  padding: 14px; border-radius: 50px; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-cta.free { background: var(--off-white); color: var(--text-dark); border: 1px solid rgba(0,0,0,0.1); }
.pricing-cta.free:hover { background: #e8e8ea; transform: translateY(-2px); }
.pricing-cta.paid {
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  color: white; box-shadow: 0 8px 25px rgba(230,126,34,0.4);
}
.pricing-cta.paid:href { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(230,126,34,0.55); }
.pricing-note { text-align: center; margin-top: 20px; font-size: 0.8rem; color: var(--text-gray); }
.savings-badge {
  display: inline-block; background: linear-gradient(90deg, #27ae60, #2ecc71);
  color: white; font-size: 0.7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 20px; margin-left: 8px; vertical-align: middle;
}

/* ─── Testimonials / Social Proof ──────────────────── */
.social-section { background: white; }
.testimonials-grid {
  max-width: 1000px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 28px; border: 1px solid rgba(0,0,0,0.06);
  opacity: 0; transform: translateY(20px);
  transition: all 0.5s;
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.stars { color: var(--orange-lt); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 0.9rem; color: var(--text-dark); line-height: 1.6; font-style: italic;
}
.testimonial-meta { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-lt), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: white; font-weight: 700;
}
.testimonial-name { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.testimonial-role { font-size: 0.74rem; color: var(--text-gray); }

/* ─── App Icon ─────────────────────────────────────── */
.app-icon-badge {
  width: 100px; height: 100px;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  display: block; margin: 0 auto 28px;
}

/* ─── CTA Banner ───────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #2d1a0e 100%);
  text-align: center; padding: 100px 5%;
}
.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -0.03em; color: white; line-height: 1.1;
}
.cta-section h2 span { color: var(--orange); }
.cta-section p { margin: 20px auto 0; max-width: 520px; font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.cta-section .hero-actions { margin-top: 40px; }
.appstore-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: black; color: white;
  padding: 12px 22px; border-radius: 14px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.appstore-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.asb-icon { display: flex; align-items: center; }
.asb-icon svg { width: 26px; height: 26px; fill: white; }
.asb-text-top { font-size: 0.6rem; color: rgba(255,255,255,0.7); display: block; }
.asb-text-main { font-size: 1rem; font-weight: 700; display: block; line-height: 1.2; }

/* ─── Footer ───────────────────────────────────────── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.5);
  padding: 50px 5% 30px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-size: 1.1rem; font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 10px;
}
.footer-brand-name span { color: var(--orange); }
.footer-brand-desc { font-size: 0.82rem; line-height: 1.65; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── Animations ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Privacy Section ──────────────────────────────── */
.privacy-section {
  background: linear-gradient(165deg, var(--navy) 0%, #121e2c 100%);
  padding: 100px 5%;
}
.privacy-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: center;
}
.privacy-icon-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px;
}
.privacy-shield {
  width: 140px; height: 140px; border-radius: 40px;
  background: rgba(230,126,34,0.1); border: 1px solid rgba(230,126,34,0.2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 80px rgba(230,126,34,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: shieldPulse 4s ease-in-out infinite;
}
@keyframes shieldPulse {
  0%,100% { box-shadow: 0 0 40px rgba(230,126,34,0.15), inset 0 1px 0 rgba(255,255,255,0.06); }
  50% { box-shadow: 0 0 90px rgba(230,126,34,0.3), inset 0 1px 0 rgba(255,255,255,0.06); }
}
.privacy-content .section-title { color: white; }
.privacy-content .section-sub { color: rgba(255,255,255,0.6); }
.privacy-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}
.privacy-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 22px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  opacity: 0; transform: translateY(20px);
}
.privacy-pillar.visible {
  opacity: 1; transform: translateY(0);
}
.privacy-pillar:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(230,126,34,0.3);
  transform: translateY(-4px);
}
.pp-icon { margin-bottom: 12px; display: flex; }
.pp-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.privacy-pillar h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 6px; }
.privacy-pillar p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .plans-showcase { grid-template-columns: 1fr; }
  .plans-device { order: -1; }
  .wizard-inner { grid-template-columns: 1fr; }
  .wizard-visual { order: -1; }
  .privacy-inner { grid-template-columns: 1fr; gap: 40px; }
  .privacy-icon-wrap { display: none; }
  .ai-inner { grid-template-columns: 1fr; }
  .ai-visual { order: -1; }
  .progress-inner { grid-template-columns: 1fr; }
  .chart-demo { order: -1; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  section { padding: 70px 4%; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .progress-features { grid-template-columns: 1fr; }
  .privacy-pillars { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
