/* ============================================================
   Heka° Landing Page — styles.css
   Dark luxury wellness aesthetic — Premium polish
   ============================================================ */

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

:root {
  --navy: #1a1a2e;
  --navy-deep: #141e26;
  --teal: #4ecdc4;
  --teal-dim: rgba(78, 205, 196, 0.15);
  --teal-glow: rgba(78, 205, 196, 0.3);
  --offwhite: #f4f2ee;
  --offwhite-alt: #edeae4;
  --card: #ffffff;
  --gold: #ffd700;
  --text-light: rgba(240, 236, 228, 0.7);
  --text-light-strong: rgba(240, 236, 228, 0.92);
  --text-dark: #444444;
  --text-dark-heading: #1a1a2e;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-teal: 0 8px 32px rgba(78, 205, 196, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--navy-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Focus States (Accessibility) ---------- */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section--dark {
  background: var(--navy-deep);
}

.section--navy {
  background: linear-gradient(180deg, var(--navy) 0%, #1d1d35 100%);
}

.section--light {
  background: linear-gradient(180deg, var(--offwhite) 0%, var(--offwhite-alt) 100%);
  color: var(--text-dark);
}

/* Section dividers */
.section__divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  border-radius: 2px;
}

.section__divider--light {
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.4), transparent);
}

.section__heading {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-light-strong);
  line-height: 1.15;
}

.section__heading--dark {
  color: var(--text-dark-heading);
}

.section__sub {
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
  position: relative;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--teal {
  background: var(--teal);
  color: var(--navy);
}

.btn--teal:hover {
  box-shadow: 0 8px 32px rgba(78, 205, 196, 0.4), 0 0 0 1px rgba(78, 205, 196, 0.2);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(78, 205, 196, 0.4);
  color: var(--teal);
}

.btn--outline:hover {
  border-color: var(--teal);
  background: var(--teal-dim);
  box-shadow: 0 8px 24px rgba(78, 205, 196, 0.15);
}

.btn--dark {
  background: var(--navy);
  color: var(--teal);
}

.btn--dark:hover {
  background: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 30, 38, 0.75);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(78, 205, 196, 0.08);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.nav.nav--scrolled {
  background: rgba(20, 30, 38, 0.95);
  border-bottom-color: rgba(78, 205, 196, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.nav__logo {
  border-radius: 8px;
}

.nav__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light-strong);
  letter-spacing: -0.5px;
}

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

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  letter-spacing: 0.5px;
  position: relative;
}

.nav__links a:not(.btn):hover {
  color: var(--teal);
}

.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__links a:not(.btn):hover::after {
  transform: scaleX(1);
}

.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-light-strong);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  background: var(--teal);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(78, 205, 196, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, box-shadow var(--transition);
  pointer-events: none;
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-cta:hover {
  box-shadow: 0 12px 40px rgba(78, 205, 196, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-cta.visible:hover {
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--navy-deep);
  overflow: hidden;
}

/* Animated gradient mesh */
.hero__mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero__mesh-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
  top: 10%;
  left: 15%;
  animation: meshFloat1 12s ease-in-out infinite;
}

.hero__mesh-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 178, 172, 0.15) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
  animation: meshFloat2 15s ease-in-out infinite;
}

.hero__mesh-orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: meshFloat3 10s ease-in-out infinite;
}

@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.1); }
  66%      { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 20px) scale(1.05); }
  66%      { transform: translate(20px, -30px) scale(1.1); }
}

@keyframes meshFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50%      { transform: translate(-50%, -50%) scale(1.3); opacity: 0.6; }
}

.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, rgba(78, 205, 196, 0.05) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50%      { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__icon {
  margin: 0 auto 24px;
  border-radius: 96px;
  width: 480px;
  height: 480px;
  max-width: 60vw;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero__title {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -3px;
  color: var(--text-light-strong);
  margin-bottom: 16px;
  line-height: 1;
}

.hero__headline {
  font-size: 28px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero__sub {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ---------- Waitlist Form ---------- */
.waitlist {
  max-width: 500px;
  margin: 0 auto 32px;
}

.waitlist__group {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(78, 205, 196, 0.15);
}

.waitlist__input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light-strong);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  border: 1.5px solid rgba(78, 205, 196, 0.2);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}

.waitlist__input::placeholder {
  color: rgba(240, 236, 228, 0.4);
}

.waitlist__input:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.12);
}

.waitlist__btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 28px;
  font-size: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.waitlist__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.waitlist__status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  min-height: 20px;
}

.waitlist__status--success {
  color: var(--teal);
}

.waitlist__status--error {
  color: #e74c3c;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  transition: opacity var(--transition);
  z-index: 1;
}

.hero__scroll:hover {
  opacity: 0.8;
}

.hero__scroll-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero__scroll-chevron {
  animation: scrollBounce 2s ease-in-out infinite;
  color: var(--teal);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.08) 0%, rgba(78, 205, 196, 0.03) 100%);
  border-top: 1px solid rgba(78, 205, 196, 0.1);
  border-bottom: 1px solid rgba(78, 205, 196, 0.1);
  padding: 28px 0;
}

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

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stats-bar__number {
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -1px;
  line-height: 1.1;
}

.stats-bar__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stats-bar__divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(78, 205, 196, 0.3), transparent);
}

/* ---------- Problem / Solution ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.problem-card__icon {
  margin-bottom: 24px;
}

.problem-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark-heading);
  margin-bottom: 12px;
}

.problem-card__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  opacity: 0.8;
}

/* ---------- How It Works ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 960px;
  margin: 56px auto 0;
}

.step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  width: 48px;
}

.step__connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-dim), var(--teal), var(--teal-dim));
  border-radius: 1px;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-dim);
  color: var(--teal);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  border: 1.5px solid rgba(78, 205, 196, 0.3);
}

.step__icon {
  margin-bottom: 20px;
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light-strong);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step__text {
  font-size: 15px;
  color: var(--text-light);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Programs Grid ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.program-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  border-top: 3px solid var(--teal);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
  min-height: 140px;
  justify-content: flex-end;
}

.program-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  transition: opacity var(--transition);
}

.program-card:hover .program-card__bg {
  opacity: 0.22;
}

.program-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(78, 205, 196, 0.12), 0 0 0 1px rgba(78, 205, 196, 0.15);
}

.program-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light-strong);
  position: relative;
  z-index: 1;
}

.program-card__badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--teal-dim);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(78, 205, 196, 0.1);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark-heading);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: 15px;
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.8;
}

/* ---------- About ---------- */
.about__content {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about__photo-wrap {
  flex-shrink: 0;
}

.about__photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-dim);
  letter-spacing: 2px;
  box-shadow: 0 0 40px rgba(78, 205, 196, 0.15);
}

.about__name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light-strong);
  margin-bottom: 4px;
}

.about__credentials {
  font-size: 16px;
  color: var(--teal);
  margin-bottom: 16px;
  font-weight: 500;
}

.about__bio {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--teal-dim);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(78, 205, 196, 0.2);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid var(--teal);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial__quote {
  font-size: 64px;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -8px;
  font-family: Georgia, 'Times New Roman', serif;
}

.testimonial__text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__author strong {
  color: var(--text-dark-heading);
  font-size: 15px;
}

.testimonial__author span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(78, 205, 196, 0.08);
}

.pricing-card--popular {
  border: 2px solid var(--teal);
  background: rgba(78, 205, 196, 0.06);
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(78, 205, 196, 0.12), 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card--popular:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 0 60px rgba(78, 205, 196, 0.2), 0 16px 48px rgba(0, 0, 0, 0.2);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 20px;
  background: var(--teal);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(78, 205, 196, 0.3);
}

.pricing-card__tier {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light-strong);
  margin-bottom: 20px;
}

.pricing-card__price {
  margin-bottom: 28px;
}

.pricing-card__amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light-strong);
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-card__cents {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.7;
}

.pricing-card__period {
  font-size: 16px;
  color: var(--text-light);
  margin-left: 2px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card__features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1.5px solid var(--teal);
}

/* ---------- CTA ---------- */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal), #38b2ac, #45c4bc);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta__inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.15;
}

.cta__sub {
  font-size: 18px;
  color: rgba(26, 26, 46, 0.7);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  padding: 56px 0 36px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--teal), transparent) 1;
  position: relative;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer__logo {
  border-radius: 8px;
}

.footer__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light-strong);
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-light);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--teal);
}

.footer__copy {
  font-size: 13px;
  color: rgba(240, 236, 228, 0.35);
}

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .hero__glow,
  .hero__mesh-orb {
    animation: none;
    opacity: 0.4;
  }

  .hero__scroll-chevron {
    animation: none;
  }

  .floating-cta {
    transition: none;
  }

  .floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .section__heading,
  .cta__title {
    font-size: 36px;
  }

  .hero__title {
    font-size: 60px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-card--popular {
    transform: none;
  }

  .pricing-card--popular:hover {
    transform: translateY(-4px);
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .step__connector {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section__heading,
  .cta__title {
    font-size: 32px;
  }

  .section__sub {
    margin-bottom: 40px;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero__title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .hero__headline {
    font-size: 22px;
  }

  .hero__sub {
    font-size: 16px;
  }

  .waitlist__group {
    flex-direction: column;
    border-radius: var(--radius-sm);
  }

  .waitlist__input {
    border-right: 1.5px solid rgba(78, 205, 196, 0.2);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border-bottom: none;
  }

  .waitlist__btn {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 14px 28px;
  }

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

  .hero__scroll {
    display: none;
  }

  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  /* Stats bar */
  .stats-bar__inner {
    gap: 24px;
  }

  .stats-bar__number {
    font-size: 24px;
  }

  .stats-bar__label {
    font-size: 11px;
  }

  .stats-bar__divider {
    height: 32px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .step__connector {
    display: none;
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .about__content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .about__badges {
    justify-content: center;
  }

  .about__name {
    font-size: 24px;
  }

  /* Floating CTA */
  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 13px;
  }

  /* Mobile nav */
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(20, 30, 38, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 18px;
  }

  .nav__links a:not(.btn)::after {
    display: none;
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .cta {
    padding: 56px 0;
  }

  .hero__glow {
    width: 350px;
    height: 350px;
  }

  .hero__mesh-orb--1 {
    width: 250px;
    height: 250px;
  }

  .hero__mesh-orb--2 {
    width: 200px;
    height: 200px;
  }

  .hero__mesh-orb--3 {
    width: 180px;
    height: 180px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero__title {
    font-size: 40px;
  }

  .section__heading {
    font-size: 28px;
  }

  .pricing-card__amount {
    font-size: 36px;
  }

  .pricing-card__cents {
    font-size: 20px;
  }

  .problem-card,
  .feature-card,
  .testimonial {
    padding: 28px 22px;
  }

  .container {
    padding: 0 16px;
  }

  .stats-bar__inner {
    gap: 16px;
  }

  .stats-bar__number {
    font-size: 20px;
  }

  .stats-bar__label {
    font-size: 10px;
  }
}
