/* ============================
   FITCYCLE – styles.css
   Dark mode · Neon green · Modern
   ============================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-base: #060e09;
  --bg-card: #0d1f12;
  --bg-card-2: #112217;
  --green: #22ff66;
  --green-dim: #1adb53;
  --green-dark: #0d8c33;
  --green-glow: rgba(34, 255, 102, 0.18);
  --green-glow-strong: rgba(34, 255, 102, 0.35);
  --text-primary: #f0fff4;
  --text-secondary: #8ba895;
  --text-muted: #4a6655;
  --border: rgba(34, 255, 102, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px var(--green-glow);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, #00ffaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin: 12px 0 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: rgba(34, 255, 102, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 255, 102, 0.25);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #060e09;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 24px var(--green-glow-strong), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px var(--green-glow-strong), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover::before {
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(34, 255, 102, 0.5);
  background: rgba(34, 255, 102, 0.06);
  transform: translateY(-2px);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 14, 9, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(6, 14, 9, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 20px;
  text-decoration: none;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.logo-icon {
  font-size: 22px;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.btn-nav {
  background: rgba(34, 255, 102, 0.1);
  color: var(--green) !important;
  border: 1.5px solid rgba(34, 255, 102, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}

.btn-nav:hover {
  background: rgba(34, 255, 102, 0.18) !important;
  box-shadow: 0 0 16px var(--green-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(6, 14, 9, 0.98);
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

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

.nav-mobile .btn-nav {
  border-bottom: none !important;
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(34, 255, 102, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #060e09 0%, #071209 100%);
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(34, 255, 102, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(34, 255, 102, 0.08);
  border: 1px solid rgba(34, 255, 102, 0.2);
  color: var(--green);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 450px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
}

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

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

/* ---- PHONE MOCKUP ---- */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 290px;
  background: #0a1a0f;
  border-radius: 40px;
  border: 2px solid rgba(34, 255, 102, 0.2);
  box-shadow: 0 0 60px rgba(34, 255, 102, 0.12), 0 24px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
}

.phone-frame::before {
  content: '';
  display: block;
  width: 80px;
  height: 22px;
  background: #0a1a0f;
  border: 2px solid rgba(34, 255, 102, 0.15);
  margin: 12px auto 0;
  border-radius: 50px;
}

.phone-screen {
  padding: 12px 16px 16px;
}

.phone-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.circle-progress-wrap {
  position: relative;
  width: 150px;
  margin: 0 auto 16px;
}

.circle-svg {
  width: 150px;
  height: 150px;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: rgba(34, 255, 102, 0.1);
  stroke-width: 10;
}

.circle-fg {
  fill: none;
  stroke: var(--green);
  stroke-width: 10;
  transition: stroke-dashoffset 1.5s ease;
}

.circle-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle-day {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.circle-pct {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.phone-btn-start {
  width: 100%;
  background: var(--green);
  color: #060e09;
  font-weight: 800;
  font-size: 12px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.phone-focus {
  font-size: 9px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 12px;
}

.phone-streak-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.streak-label {
  font-size: 9px;
  color: var(--green);
  font-weight: 700;
}

.streak-val {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin: 2px 0 6px;
}

.streak-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 255, 102, 0.1);
  border: 1.5px solid rgba(34, 255, 102, 0.12);
}

.dot.done {
  background: var(--green);
  border-color: var(--green);
}

.dot.done::after {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #060e09;
  font-weight: 900;
  height: 100%;
}

.streak-icon {
  font-size: 24px;
}

.phone-coming-up {
  margin-bottom: 12px;
}

.coming-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
}

.coming-cards {
  display: flex;
  gap: 6px;
}

.coming-card {
  flex: 1;
  background: var(--bg-card);
  border-radius: 10px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--border);
  font-size: 8px;
}

.active-coming {
  border-color: rgba(34, 255, 102, 0.4);
  background: rgba(34, 255, 102, 0.05);
}

.coming-day {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coming-name {
  color: var(--text-primary);
  font-weight: 700;
  text-align: center;
  font-size: 8px;
}

.phone-nav-bar {
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.nav-item {
  font-size: 7px;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
}

.nav-item.active {
  color: var(--green);
}

.nav-item small {
  display: block;
  margin-top: 2px;
}

/* ---- FLOAT BADGES ---- */
.float-badge {
  position: absolute;
  background: rgba(13, 31, 18, 0.95);
  border: 1px solid rgba(34, 255, 102, 0.3);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.float-badge span {
  margin-right: 4px;
}

.float-badge-1 {
  top: 80px;
  right: -30px;
  animation-delay: 0s;
}

.float-badge-2 {
  bottom: 100px;
  left: -40px;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  background: linear-gradient(180deg, transparent 0%, rgba(34, 255, 102, 0.02) 50%, transparent 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--green-glow);
  border-color: rgba(34, 255, 102, 0.35);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover::before {
  opacity: 1;
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(34, 255, 102, 0.08);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.step-icon-wrap {
  font-size: 36px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- FEATURES ---- */
.features {
  background: var(--bg-base);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  min-height: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 0 20px var(--green-glow);
  border-color: rgba(34, 255, 102, 0.3);
}

.feature-card-large {
  border-color: rgba(34, 255, 102, 0.2);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(34, 255, 102, 0.03) 100%);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.feature-pill {
  display: inline-block;
  margin-top: 14px;
  background: rgba(34, 255, 102, 0.1);
  border: 1px solid rgba(34, 255, 102, 0.25);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---- APP PREVIEW ---- */
.app-preview {
  overflow: hidden;
}

.preview-screens {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
}

.preview-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preview-phone-center {
  margin-top: -30px;
}

.preview-phone-inner {
  width: 220px;
  background: #0a1a0f;
  border-radius: 32px;
  border: 1.5px solid rgba(34, 255, 102, 0.2);
  box-shadow: var(--shadow-card), 0 0 40px rgba(34, 255, 102, 0.08);
  overflow: hidden;
  padding: 16px 14px;
}

.preview-phone-center .preview-phone-inner {
  width: 240px;
  border-color: var(--green);
  box-shadow: var(--shadow-card), 0 0 50px rgba(34, 255, 102, 0.18);
}

.preview-caption {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pp-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 10px;
  color: var(--text-secondary);
}

.pp-tag {
  background: rgba(34, 255, 102, 0.12);
  border: 1px solid rgba(34, 255, 102, 0.2);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.pp-tag-plain {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.pp-timer-wrap {
  position: relative;
  width: 120px;
  margin: 0 auto 14px;
}

.pp-timer-svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.pp-timer-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pp-time {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.pp-phase {
  font-size: 8px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pp-exercise-label {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 4px;
}

.pp-exercise-name {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.pp-next {
  font-size: 9px;
  color: var(--text-secondary);
  text-align: center;
  background: var(--bg-card-2);
  padding: 5px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.pp-progress-bar-wrap {
  margin-bottom: 12px;
}

.pp-pb-label {
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 700;
}

.pp-pb-pct {
  float: right;
  font-size: 8px;
  color: var(--green);
  font-weight: 700;
}

.pp-progress-bar {
  height: 4px;
  background: rgba(34, 255, 102, 0.1);
  border-radius: 50px;
  margin-top: 6px;
  overflow: hidden;
}

.pp-progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 50px;
}

.pp-controls {
  display: flex;
  gap: 8px;
}

.pp-btn-skip {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: none;
  border-radius: 10px;
  padding: 9px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.pp-btn-pause {
  flex: 2;
  background: var(--green);
  color: #060e09;
  border: none;
  border-radius: 10px;
  padding: 9px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.pp-stats-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.pp-stat-card {
  flex: 1;
  background: var(--bg-card-2);
  border-radius: 10px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
}

.pps-label {
  font-size: 7px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pps-val {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin: 2px 0;
}

.pps-delta {
  font-size: 8px;
  color: var(--green);
  font-weight: 600;
}

.pp-consistency-card {
  background: var(--bg-card-2);
  border-radius: 12px;
  padding: 12px 10px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.ppc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.ppc-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.ppc-pct {
  font-size: 16px;
  font-weight: 900;
  color: var(--green);
}

.ppc-sub {
  font-size: 8px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.ppc-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}

.ppc-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ppc-bar {
  width: 100%;
  min-height: 4px;
  background: rgba(34, 255, 102, 0.15);
  border-radius: 3px;
}

.ppc-bar-active {
  background: var(--green) !important;
}

.ppc-bar-wrap span {
  font-size: 7px;
  color: var(--text-muted);
}

.pp-hist-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.pp-hist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.pp-hist-item:last-child {
  border-bottom: none;
}

.pp-hist-icon {
  width: 28px;
  height: 28px;
  background: rgba(34, 255, 102, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.pp-hist-icon-b {
  background: rgba(34, 255, 102, 0.08);
}

.pp-hist-info {
  flex: 1;
}

.pp-hist-info p {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.pp-hist-info small {
  font-size: 8px;
  color: var(--text-muted);
}

.pp-hist-pct {
  font-size: 12px;
  font-weight: 900;
  color: var(--green);
}

.pp-hist-pct-b {
  color: #66ffcc;
}

.pp-cycle-card {
  background: var(--bg-card-2);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.pcc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.pcc-name {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.pcc-sub {
  font-size: 8px;
  color: var(--text-muted);
}

.pcc-right {
  text-align: right;
}

.pcc-pct-green {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: var(--green);
}

.pcc-right small {
  font-size: 7px;
  color: var(--text-muted);
}

.pcc-bar {
  height: 4px;
  background: rgba(34, 255, 102, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.pcc-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 50px;
}

.pp-plan-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pp-plan-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg-card-2);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.pp-plan-item.today {
  border-color: var(--green);
  background: rgba(34, 255, 102, 0.05);
}

.pp-plan-item p {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.pp-plan-item small {
  font-size: 8px;
  color: var(--text-muted);
}

.ppi-icon {
  width: 24px;
  height: 24px;
  background: rgba(34, 255, 102, 0.12);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.ppi-today {
  background: var(--green);
  color: #060e09;
}

.ppi-locked {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.ppi-chevron {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 14px;
}

/* ---- BENEFITS ---- */
.benefits {
  background: linear-gradient(180deg, transparent 0%, rgba(34, 255, 102, 0.025) 50%, transparent 100%);
}

.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  margin: 12px 0 18px;
  letter-spacing: -0.5px;
}

.benefits-intro {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.benefits-list li {
  display: flex;
  gap: 16px;
}

.benefit-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(34, 255, 102, 0.12);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  margin-top: 2px;
}

.benefits-list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefits-list p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.benefits-card-glow {
  background: var(--bg-card);
  border: 1px solid rgba(34, 255, 102, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 60px rgba(34, 255, 102, 0.08), var(--shadow-card);
}

.big-circle-wrap {
  position: relative;
  width: 200px;
  margin: 0 auto 32px;
}

.big-circle-svg {
  width: 200px;
  height: 200px;
  transform: rotate(-90deg);
}

.big-circle-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bci-day {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-primary);
}

.bci-pct {
  font-size: 40px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -2px;
}

.bci-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.animated-circle {
  transition: stroke-dashoffset 2s ease;
}

.benefit-mini-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bms-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card-2);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.bms-icon {
  font-size: 24px;
}

.bms-item>div {
  display: flex;
  flex-direction: column;
}

.bms-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
}

.bms-label {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--bg-base);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.testimonial-card-accent {
  border-color: rgba(34, 255, 102, 0.35);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(34, 255, 102, 0.04) 100%);
  box-shadow: 0 0 30px var(--green-glow);
}

.testimonial-stars {
  color: var(--green);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: #060e09;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- FINAL CTA ---- */
.final-cta {
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(34, 255, 102, 0.07) 0%, transparent 70%);
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(34, 255, 102, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.final-badge {
  display: inline-block;
  background: rgba(34, 255, 102, 0.1);
  border: 1px solid rgba(34, 255, 102, 0.25);
  color: var(--green);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.final-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.final-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.final-store-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.store-btn:hover {
  background: rgba(34, 255, 102, 0.1);
  border-color: rgba(34, 255, 102, 0.4);
  transform: translateY(-2px);
}

.store-text {
  text-align: left;
}

.store-text small {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
}

.store-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

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

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 17px;
  font-weight: 800;
  gap: 6px;
}

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

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-sub {
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-mockup {
    order: -1;
  }

  .float-badge-1 {
    right: -10px;
  }

  .float-badge-2 {
    left: -10px;
  }

  .benefits-inner {
    grid-template-columns: 1fr;
  }

  .benefits-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .preview-screens {
    flex-direction: column;
    align-items: center;
  }

  .preview-phone-center {
    margin-top: 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

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

  .feature-card-large {
    grid-column: span 1;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .final-store-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .phone-frame {
    width: 260px;
  }
}