:root {
  --bg: #0C0F0E;
  --bg-alt: #131614;
  --card: #161A17;
  --text: #E8EDE8;
  --text-dim: rgba(232, 237, 232, 0.65);
  --text-faint: rgba(232, 237, 232, 0.5);
  --border: #252A26;
  --btn-bg: #E8EDE8;
  --btn-text: #0C0F0E;
  --btn-bg-hover: #C9D2CD;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

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

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  border: 1px solid var(--btn-bg);
  background: var(--btn-bg);
  color: var(--btn-text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover {
  background: var(--btn-bg-hover);
  border-color: var(--btn-bg-hover);
}

.btn-red,
.btn-outline {
  background: var(--btn-bg);
  color: var(--btn-text);
  border-color: var(--btn-bg);
}

.btn-red:hover,
.btn-outline:hover {
  background: var(--btn-bg-hover);
  border-color: var(--btn-bg-hover);
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.8rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 15, 14, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:not(.btn) {
  position: relative;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-links a:not(.btn):hover {
  opacity: 1;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg) url("Hero.jpg") center 20% / cover no-repeat;
  padding: 140px 24px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: #FFFFFF;
  max-width: 620px;
  margin: 0 auto 44px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About */
.about {
  background: var(--bg-alt);
  padding: 110px 0;
  text-align: center;
}

.about-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto;
  color: var(--text);
}

/* Section titles */
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 60px;
}

/* Coaching */
.coaching {
  background: var(--bg);
  padding: 110px 0;
}

.coaching-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 90px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  padding: 40px 36px;
  border-radius: 4px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #33392f;
}

.card-tag {
  display: inline-block;
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.card p {
  color: var(--text-dim);
  font-size: 0.97rem;
}

/* Form */
.apply-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 50px;
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 32px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: 3px;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--text);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E8EDE8' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
}

.form-confirm {
  display: none;
  margin-top: 18px;
  text-align: center;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.form-confirm.visible {
  display: block;
}

/* Products */
.products {
  background: var(--bg-alt);
  padding: 110px 0;
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.product-card {
  position: relative;
  text-align: left;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text);
  margin: 18px 0 22px;
}

.badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.waitlist-form input {
  flex: 1;
  min-width: 160px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  padding: 13px 16px;
  border-radius: 3px;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--text);
}

.waitlist-form .btn {
  padding: 13px 26px;
}

/* Footer */
.footer {
  background: var(--bg);
  padding: 60px 0 50px;
}

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

.footer-social {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-social a {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* Responsive */
@media (max-width: 860px) {
  .coaching-cards,
  .product-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .apply-form-wrap {
    padding: 32px 24px;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(12, 15, 14, 0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 320px;
  }

  .nav-links a {
    width: 100%;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a.btn {
    width: calc(100% - 48px);
    margin: 16px 24px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 120px;
  }

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

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
