/* === Variables === */
:root {
  --accent: #0ED2AF;
  --accent-dark: #0BB899;
  --accent-light: #E8FAF6;
  --bg: #FFF9F5;
  --bg-warm: #FFF3EB;
  --bg-white: #FFFFFF;
  --text-dark: #2D1810;
  --text-body: #5C4033;
  --text-muted: #9B8578;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === Nav === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 249, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 24, 16, 0.06);
}

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

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  color: var(--text-dark);
  font-family: 'Nunito', 'SF Pro Rounded', ui-rounded, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--accent);
}

.logo-icon {
  flex-shrink: 0;
}

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

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

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

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid var(--accent);
  border-radius: 100px;
  transition: all 0.2s ease;
}

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

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(14, 210, 175, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 28px rgba(14, 210, 175, 0.4);
  transform: translateY(-1px);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 180px 24px 120px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--text-dark);
  margin-bottom: 24px;
  max-width: 550px;
}

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

/* === Hero Image === */
.hero-image {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 45%;
  height: 75%;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 30%),
    linear-gradient(to left, var(--bg) 0%, transparent 25%),
    linear-gradient(to top, var(--bg) 0%, transparent 20%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 25%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* === Showcase (Zigzag) === */
.showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 100px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.showcase-item.reverse {
  flex-direction: row-reverse;
}

.showcase-img {
  flex: 0 0 480px;
  border-radius: 20px;
  overflow: hidden;
}

.showcase-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.showcase-text {
  flex: 1;
}

.showcase-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.showcase-text h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.showcase-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}

/* === How It Works === */
.how-it-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.how-it-works h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 60px;
}

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

.step {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 24, 16, 0.06);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

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

.step p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

/* === Features === */
.features {
  background: var(--bg-warm);
  padding: 100px 24px;
}

.features h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 16px;
}

.features-sub {
  font-size: 18px;
  color: var(--text-body);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(45, 24, 16, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 24, 16, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

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

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

/* === Workout Types === */
.workout-types {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.workout-types h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 16px;
}

.workout-types-sub {
  font-size: 18px;
  color: var(--text-body);
  text-align: center;
  margin-bottom: 48px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.type-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.type-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.type-card:hover img {
  transform: scale(1.05);
}

.type-card.type-large {
  grid-row: span 2;
  height: 100%;
}

.type-card.type-large img {
  height: 100%;
}

.type-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.type-overlay span {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

/* === Comparison === */
.comparison {
  background: var(--bg-warm);
  padding: 100px 24px;
}

.comparison h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 48px;
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(45, 24, 16, 0.06);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.comparison-header {
  border-bottom: 2px solid rgba(45, 24, 16, 0.08);
}

.comparison-header .comp-col {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
}

.comp-others {
  color: var(--text-muted);
  text-align: center;
}

.comp-us {
  color: var(--accent-dark);
  text-align: center;
  background: var(--accent-light);
}

.comparison-row {
  border-bottom: 1px solid rgba(45, 24, 16, 0.04);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row .comp-col {
  padding: 18px 24px;
  font-size: 15px;
}

.comparison-row .comp-label {
  font-weight: 600;
  color: var(--text-dark);
}

.comparison-row .comp-others {
  font-weight: 400;
  color: var(--text-muted);
}

.comparison-row .comp-us {
  font-weight: 600;
}

/* === Social Proof === */
.social-proof {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.social-proof h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 48px;
}

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

.proof-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(45, 24, 16, 0.06);
}

.proof-stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.proof-quote {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

.proof-author {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* === Stats === */
.stats {
  background: var(--accent);
  padding: 60px 24px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* === Waitlist === */
.waitlist {
  background: var(--text-dark);
  padding: 100px 24px;
  text-align: center;
}

.waitlist h2 {
  font-size: 48px;
  font-weight: 900;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.waitlist > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}

.waitlist-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.waitlist-form input:focus {
  border-color: var(--accent);
}

.waitlist-form .btn-primary {
  white-space: nowrap;
}

.waitlist-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}

/* === Footer === */
.footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(45, 24, 16, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* === Legal Pages === */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.legal-page h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-page section {
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 16px 0 8px;
}

.legal-page p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-page li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* === FAQ Page === */
.faq-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.faq-page h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 40px;
}

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

.faq-item {
  background: var(--bg-white);
  border: 1px solid rgba(45, 24, 16, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

.faq-item a {
  color: var(--accent-dark);
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

.faq-cta p {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 16px;
}

.btn-outline {
  padding: 14px 28px;
  border: 2px solid var(--accent);
  color: var(--accent-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

/* === Support Page === */
.support-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.support-page h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.support-sub {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 48px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.support-card {
  background: var(--bg-white);
  border: 1px solid rgba(45, 24, 16, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.support-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

.support-email {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 8px 0;
}

.support-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.support-form-wrapper {
  background: var(--bg-white);
  border: 1px solid rgba(45, 24, 16, 0.06);
  border-radius: var(--radius);
  padding: 32px;
}

.support-form-wrapper h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 2px solid rgba(45, 24, 16, 0.1);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
}

.form-status {
  font-size: 14px;
  margin-top: 12px;
}

/* === Responsive === */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 120px 24px 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -1.5px;
    max-width: none;
  }

  .hero-sub {
    font-size: 17px;
    margin: 0 auto 32px;
  }

  .hero-image {
    display: none;
  }

  .showcase-item,
  .showcase-item.reverse {
    flex-direction: column;
    gap: 32px;
  }

  .showcase-img {
    flex: none;
    width: 100%;
  }

  .showcase-text h2 {
    font-size: 28px;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .type-card.type-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .type-card.type-large img {
    height: 220px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .comparison-header .comp-col,
  .comparison-row .comp-col {
    padding: 14px 12px;
    font-size: 13px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .how-it-works h2,
  .features h2,
  .waitlist h2,
  .workout-types h2,
  .comparison h2,
  .social-proof h2 {
    font-size: 36px;
  }

  .waitlist-form {
    flex-direction: column;
  }

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

  .footer-links {
    justify-content: center;
    gap: 16px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

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

  .legal-page h1,
  .faq-page h1,
  .support-page h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }

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

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

  .comparison-header .comp-col,
  .comparison-row .comp-col {
    padding: 12px 8px;
    font-size: 12px;
  }
}
