 :root {
      --text: #2f3340;
      --muted: rgba(70, 75, 87, 0.9);
      --gold: #c9a765;
      --gold-dark: #8a6b3d;
      --teal-1: #2f7c86;
      --teal-2: #6f978f;
      --white-glass: rgba(255, 255, 255, 0.22);
      --page-max: 1440px;
      --side-pad: clamp(28px, 5vw, 72px);
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      min-height: 100%;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #e8ebf1;
      color: var(--text);
    }

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

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

    .hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      isolation: isolate;
      background: #e8ebf1;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: -3;
      background: url("hero-bg.jpg") center center / cover no-repeat;
    }

    .hero__veil {
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(circle at 16% 22%, rgba(255,255,255,0.28), transparent 30%),
        radial-gradient(circle at 84% 24%, rgba(255,255,255,0.12), transparent 28%),
        linear-gradient(to bottom, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
      pointer-events: none;
    }

    .shell {
      width: min(var(--page-max), 100%);
      margin: 0 auto;
      padding-inline: var(--side-pad);
    }

    .header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding-top: clamp(22px, 3vw, 38px);
      position: relative;
      z-index: 3;
    }

    .logo {
      width: 480px;
      margin-top: 6px;
      margin-left: 8px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 56px;
      padding-top: 18px;
      margin-right: 8px;
    }

    .nav a {
      font-size: 24px;
      font-weight: 400;
      color: rgba(53, 58, 69, 0.94);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav a:hover {
      opacity: 0.72;
      transform: translateY(-1px);
    }

    .nav__cta {
      min-width: 210px;
      height: 64px;
      padding: 0 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      border: 1px solid rgba(197, 162, 101, 0.78);
      background: linear-gradient(to bottom, rgba(255,255,255,0.22), rgba(255,255,255,0.10));
      box-shadow: inset 0 0 0 1px rgba(255, 243, 219, 0.16);
      color: #7d6240;
      letter-spacing: 0.01em;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      min-height: calc(100vh - 110px);
      display: grid;
      grid-template-columns: 520px 1fr;
      align-items: start;
      padding-top: 0px; /* remove extra vertical gap */
      padding-bottom: 40px;
    }

    .copy {
      padding-top: 0px;
      max-width: 500px;
      padding-left: clamp(0px, 6vw, 80px);
    }

    .copy h1 {
      margin: 0;
      font-size: 62px;
      line-height: 1.06;
      font-weight: 400;
      letter-spacing: 0.005em;
      color: #303441;
    }

    .copy p {
      margin: 34px 0 0;
      font-size: 18px;
      line-height: 1.95;
      color: var(--muted);
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 28px;
    }

    .btn {
      min-width: 238px;
      height: 54px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0.01em;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

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

    .btn--primary {
      color: rgba(255,255,255,0.96);
      border: 1px solid rgba(200, 164, 104, 0.65);
      background: linear-gradient(135deg, rgba(38,112,124,0.95), rgba(91,137,123,0.82) 62%, rgba(123,152,137,0.72));
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.12),
        0 0 22px rgba(201, 167, 101, 0.18);
    }

    .btn--secondary {
      color: rgba(74, 67, 60, 0.96);
      border: 1px solid rgba(197, 162, 101, 0.72);
      background: linear-gradient(to bottom, rgba(255,255,255,0.34), rgba(255,255,255,0.14));
      box-shadow:
        inset 0 0 0 1px rgba(255,244,221,0.18),
        0 0 18px rgba(201, 167, 101, 0.12);
    }

    .visual {
      position: relative;
      min-height: 760px;
    }

    .athlete {
      position: absolute;
      right: 42px;
      top: -150px; /* move athlete up */
      width: clamp(400px, 35vw, 600px);
      pointer-events: none;
      filter: drop-shadow(0 18px 30px rgba(195, 166, 122, 0.12));
    }

    @media (max-width: 1180px) {
      .logo {
        width: 390px;
      }

      .nav {
        gap: 36px;
      }

      .nav a {
        font-size: 20px;
      }

      .nav__cta {
        min-width: 180px;
        height: 58px;
      }

      .hero__content {
        grid-template-columns: 460px 1fr;
      }

      .copy h1 {
        font-size: 54px;
      }
    }

    @media (max-width: 980px) {
      .header {
        flex-direction: column;
        gap: 18px;
      }

      .nav {
        padding-top: 0;
        flex-wrap: wrap;
      }

      .hero__content {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 10px;
      }

      .visual {
        min-height: 420px;
      }

      .athlete {
        position: relative;
        top: auto;
        right: auto;
        width: min(88vw, 520px);
        margin: 16px 0 0 auto;
      }
    }

    @media (max-width: 640px) {
      .shell {
        padding-inline: 20px;
      }

      .logo {
        width: min(76vw, 340px);
      }

      .nav {
        gap: 18px;
      }

      .nav a {
        font-size: 17px;
      }

      .nav__cta {
        min-width: 158px;
        height: 50px;
        padding: 0 20px;
        border-radius: 10px;
      }

      .copy h1 {
        font-size: clamp(42px, 12vw, 58px);
      }

      .copy p {
        font-size: 18px;
      }

      .actions {
        gap: 14px;
      }

      .btn {
        width: 100%;
      }
    }
    .lifecraft-footer {
  margin-top: 120px;
  padding: 60px 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;

  /* subtle separation from content above */
  border-top: 1px solid rgba(210, 163, 90, 0.15);
}

.lifecraft-link {
  display: inline-block;
  position: relative;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.lifecraft-link img {
  display: block;
  width: 150px;
  height: auto;

  /* slight glow to match your aesthetic */
  filter: drop-shadow(0 0 8px rgba(200, 120, 40, 0.15));
}

/* hover = activation */
.lifecraft-link:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
}

.lifecraft-link:hover img {
  filter: drop-shadow(0 0 14px rgba(220, 130, 40, 0.35));
}
/* =========================
   METHOD PAGE
========================= */

.method-page .hero {
  min-height: 84vh;
}

.method-hero__content {
  min-height: calc(84vh - 110px);
  grid-template-columns: 560px 1fr;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 36px;
}

.method-copy {
  max-width: 540px;
  padding-top: 20px;
}

.method-copy h1 {
  margin: 0;
  font-size: 62px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #303441;
}

.method-lead {
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 520px;
}

.method-visual {
  min-height: 660px;
}

.method-athlete {
  position: absolute;
  right: 30px;
  top: -110px;
  width: clamp(370px, 33vw, 560px);
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 18px 30px rgba(195, 166, 122, 0.12));
}

.method-main {
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.42), transparent 28%),
    linear-gradient(to bottom, rgba(255,255,255,0.26), rgba(255,255,255,0.08)),
    #edf0f5;
}

.method-section {
  position: relative;
  padding: 92px 0;
}

.method-section--alt {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.24),
    rgba(255,255,255,0.12)
  );
  border-top: 1px solid rgba(201, 167, 101, 0.10);
  border-bottom: 1px solid rgba(201, 167, 101, 0.10);
}

.method-section--closing {
  padding-bottom: 60px;
}

.method-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.method-shell--narrow {
  width: min(860px, 100%);
}

.method-section h2 {
  margin: 0 0 26px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #303441;
}

.method-section p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.95;
  color: var(--muted);
}

.method-highlight {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.7;
  color: #7d6240;
}

.method-grid {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

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

.method-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-card {
  padding: 28px 26px;
  border-radius: 18px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.34),
    rgba(255,255,255,0.16)
  );
  border: 1px solid rgba(197, 162, 101, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255,244,221,0.08),
    0 10px 28px rgba(110, 118, 135, 0.07);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.method-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: #303441;
}

.method-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
}

.method-center {
  text-align: center;
}

.actions--center {
  justify-content: center;
}

@media (max-width: 1180px) {
  .method-hero__content {
    grid-template-columns: 500px 1fr;
  }

  .method-copy h1 {
    font-size: 54px;
  }

  .method-section h2 {
    font-size: 40px;
  }

  .method-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .method-hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 12px;
  }

  .method-copy {
    max-width: 100%;
  }

  .method-visual {
    min-height: 420px;
  }

  .method-athlete {
    position: relative;
    top: auto;
    right: auto;
    width: min(84vw, 500px);
    margin: 10px 0 0 auto;
  }

  .method-grid--2,
  .method-grid--3 {
    grid-template-columns: 1fr;
  }

  .method-section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .method-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .method-lead,
  .method-section p {
    font-size: 17px;
    line-height: 1.85;
  }

  .method-section h2 {
    font-size: 34px;
  }

  .method-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .method-highlight {
    font-size: 20px;
    line-height: 1.6;
  }
}
/* =========================
   ABOUT PAGE
========================= */

.about-page .hero {
  min-height: 84vh;
}

.about-hero__content {
  min-height: calc(84vh - 110px);
  grid-template-columns: 560px 1fr;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 36px;
}

.about-copy {
  max-width: 540px;
  padding-top: 20px;
}

.about-copy h1 {
  margin: 0;
  font-size: 62px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #303441;
}

.about-lead {
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 520px;
}

.about-visual {
  min-height: 660px;
}

.about-athlete {
  position: absolute;
  right: 30px;
  top: -110px;
  width: clamp(370px, 33vw, 560px);
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 18px 30px rgba(195, 166, 122, 0.12));
}

.about-main {
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.42), transparent 28%),
    linear-gradient(to bottom, rgba(255,255,255,0.26), rgba(255,255,255,0.08)),
    #edf0f5;
}

.about-section {
  position: relative;
  padding: 92px 0;
}

.about-section--alt {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.24),
    rgba(255,255,255,0.12)
  );
  border-top: 1px solid rgba(201, 167, 101, 0.10);
  border-bottom: 1px solid rgba(201, 167, 101, 0.10);
}

.about-section--closing {
  padding-bottom: 60px;
}

.about-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-shell--narrow {
  width: min(860px, 100%);
}

.about-section h2 {
  margin: 0 0 26px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #303441;
}

.about-section p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.95;
  color: var(--muted);
}

.about-highlight {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.7;
  color: #7d6240;
}

.about-grid {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

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

.about-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card {
  padding: 28px 26px;
  border-radius: 18px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.34),
    rgba(255,255,255,0.16)
  );
  border: 1px solid rgba(197, 162, 101, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255,244,221,0.08),
    0 10px 28px rgba(110, 118, 135, 0.07);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.about-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: #303441;
}

.about-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
}

.about-center {
  text-align: center;
}

@media (max-width: 1180px) {
  .about-hero__content {
    grid-template-columns: 500px 1fr;
  }

  .about-copy h1 {
    font-size: 54px;
  }

  .about-section h2 {
    font-size: 40px;
  }

  .about-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .about-hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 12px;
  }

  .about-copy {
    max-width: 100%;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-athlete {
    position: relative;
    top: auto;
    right: auto;
    width: min(84vw, 500px);
    margin: 10px 0 0 auto;
  }

  .about-grid--2,
  .about-grid--3 {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .about-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .about-lead,
  .about-section p {
    font-size: 17px;
    line-height: 1.85;
  }

  .about-section h2 {
    font-size: 34px;
  }

  .about-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .about-highlight {
    font-size: 20px;
    line-height: 1.6;
  }
}
/* =========================
   START PAGE
========================= */

.start-page .hero {
  min-height: 84vh;
}

.start-hero__content {
  min-height: calc(84vh - 110px);
  grid-template-columns: 560px 1fr;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 36px;
}

.start-copy {
  max-width: 540px;
  padding-top: 20px;
}

.start-copy h1 {
  margin: 0;
  font-size: 62px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #303441;
}

.start-lead {
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 520px;
}

.start-visual {
  min-height: 660px;
}

.start-athlete {
  position: absolute;
  right: 30px;
  top: -110px;
  width: clamp(370px, 33vw, 560px);
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 18px 30px rgba(195, 166, 122, 0.12));
}

.start-main {
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.42), transparent 28%),
    linear-gradient(to bottom, rgba(255,255,255,0.26), rgba(255,255,255,0.08)),
    #edf0f5;
}

.start-section {
  position: relative;
  padding: 92px 0;
}

.start-section--alt {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.24),
    rgba(255,255,255,0.12)
  );
  border-top: 1px solid rgba(201, 167, 101, 0.10);
  border-bottom: 1px solid rgba(201, 167, 101, 0.10);
}

.start-section--closing {
  padding-bottom: 60px;
}

.start-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.start-shell--narrow {
  width: min(860px, 100%);
}

.start-section h2 {
  margin: 0 0 26px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #303441;
}

.start-section p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.95;
  color: var(--muted);
}

.start-highlight {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.7;
  color: #7d6240;
}

.start-grid {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

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

.start-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.start-card {
  padding: 28px 26px;
  border-radius: 18px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.34),
    rgba(255,255,255,0.16)
  );
  border: 1px solid rgba(197, 162, 101, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255,244,221,0.08),
    0 10px 28px rgba(110, 118, 135, 0.07);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.start-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: #303441;
}

.start-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
}

.start-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.start-list li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.7;
}

.start-center {
  text-align: center;
}

@media (max-width: 1180px) {
  .start-hero__content {
    grid-template-columns: 500px 1fr;
  }

  .start-copy h1 {
    font-size: 54px;
  }

  .start-section h2 {
    font-size: 40px;
  }

  .start-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .start-hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 12px;
  }

  .start-copy {
    max-width: 100%;
  }

  .start-visual {
    min-height: 420px;
  }

  .start-athlete {
    position: relative;
    top: auto;
    right: auto;
    width: min(84vw, 500px);
    margin: 10px 0 0 auto;
  }

  .start-grid--2,
  .start-grid--3 {
    grid-template-columns: 1fr;
  }

  .start-section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .start-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .start-lead,
  .start-section p {
    font-size: 17px;
    line-height: 1.85;
  }

  .start-section h2 {
    font-size: 34px;
  }

  .start-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .start-highlight {
    font-size: 20px;
    line-height: 1.6;
  }
}
/* =========================
   LEVEL 1 PAGE
========================= */

.level-page .hero {
  min-height: 84vh;
}

.level-hero__content {
  min-height: calc(84vh - 110px);
  grid-template-columns: 560px 1fr;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 36px;
}

.level-copy {
  max-width: 560px;
  padding-top: 20px;
}

.level-copy h1 {
  margin: 0;
  font-size: 62px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #303441;
}

.level-lead {
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 540px;
}

.level-visual {
  min-height: 660px;
}

.level-athlete {
  position: absolute;
  right: 30px;
  top: -110px;
  width: clamp(370px, 33vw, 560px);
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 18px 30px rgba(195, 166, 122, 0.12));
}

.level-main {
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.42), transparent 28%),
    linear-gradient(to bottom, rgba(255,255,255,0.26), rgba(255,255,255,0.08)),
    #edf0f5;
}

.level-section {
  position: relative;
  padding: 92px 0;
}

.level-section--alt {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.24),
    rgba(255,255,255,0.12)
  );
  border-top: 1px solid rgba(201, 167, 101, 0.10);
  border-bottom: 1px solid rgba(201, 167, 101, 0.10);
}

.level-section--closing {
  padding-bottom: 60px;
}

.level-section--cta {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.26), transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,0.20), rgba(255,255,255,0.10));
  border-top: 1px solid rgba(201, 167, 101, 0.14);
  border-bottom: 1px solid rgba(201, 167, 101, 0.14);
}

.level-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.level-shell--narrow {
  width: min(860px, 100%);
}

.level-section h2 {
  margin: 0 0 26px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #303441;
}

.level-section p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.95;
  color: var(--muted);
}

.level-highlight {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.7;
  color: #7d6240;
}

.level-grid {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

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

.level-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.level-card {
  padding: 28px 26px;
  border-radius: 18px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.34),
    rgba(255,255,255,0.16)
  );
  border: 1px solid rgba(197, 162, 101, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255,244,221,0.08),
    0 10px 28px rgba(110, 118, 135, 0.07);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.level-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: #303441;
}

.level-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
}

.level-step {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6b3d;
}

.level-meta {
  margin-top: 16px !important;
  font-size: 15px !important;
  letter-spacing: 0.03em;
  color: #7d6240 !important;
}

.level-center {
  text-align: center;
}

.level-micro {
  margin-top: -4px;
  margin-bottom: 34px !important;
  font-size: 17px !important;
  color: #7d6240 !important;
}

.level-offer {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  margin: 0 auto 34px;
  padding: 34px 32px;
  border-radius: 22px;
  max-width: 760px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.40),
    rgba(255,255,255,0.18)
  );
  border: 1px solid rgba(197, 162, 101, 0.20);
  box-shadow:
    inset 0 0 0 1px rgba(255,244,221,0.08),
    0 16px 38px rgba(110, 118, 135, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.level-price-wrap {
  text-align: center;
  padding-right: 8px;
  border-right: 1px solid rgba(197, 162, 101, 0.18);
}

.level-price {
  margin: 0 !important;
  font-size: 62px !important;
  line-height: 1 !important;
  font-weight: 400;
  color: #303441 !important;
}

.level-price-note {
  margin: 10px 0 0 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #7d6240 !important;
  letter-spacing: 0.03em;
}

.level-includes {
  text-align: left;
}

.level-includes p {
  margin: 0 0 12px !important;
  font-size: 18px !important;
  color: #303441 !important;
}

.level-includes-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.level-includes-list li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .level-hero__content {
    grid-template-columns: 500px 1fr;
  }

  .level-copy h1 {
    font-size: 54px;
  }

  .level-section h2 {
    font-size: 40px;
  }

  .level-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .level-hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 12px;
  }

  .level-copy {
    max-width: 100%;
  }

  .level-visual {
    min-height: 420px;
  }

  .level-athlete {
    position: relative;
    top: auto;
    right: auto;
    width: min(84vw, 500px);
    margin: 10px 0 0 auto;
  }

  .level-grid--2,
  .level-grid--3 {
    grid-template-columns: 1fr;
  }

  .level-offer {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .level-price-wrap {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(197, 162, 101, 0.18);
  }

  .level-includes {
    text-align: center;
  }

  .level-includes-list {
    display: inline-block;
    text-align: left;
  }

  .level-section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .level-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .level-lead,
  .level-section p {
    font-size: 17px;
    line-height: 1.85;
  }

  .level-section h2 {
    font-size: 34px;
  }

  .level-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .level-highlight {
    font-size: 20px;
    line-height: 1.6;
  }

  .level-price {
    font-size: 52px !important;
  }
}
/* =========================
   CHECKOUT PAGE
========================= */

.checkout-page .hero {
  min-height: 82vh;
}

.checkout-hero__content {
  min-height: calc(82vh - 110px);
  grid-template-columns: 560px 1fr;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 36px;
}

.checkout-copy {
  max-width: 560px;
  padding-top: 20px;
}

.checkout-copy h1 {
  margin: 0;
  font-size: 62px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #303441;
}

.checkout-lead {
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 540px;
}

.checkout-visual {
  min-height: 660px;
}

.checkout-athlete {
  position: absolute;
  right: 30px;
  top: -110px;
  width: clamp(370px, 33vw, 560px);
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 18px 30px rgba(195, 166, 122, 0.12));
}

.checkout-main {
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.42), transparent 28%),
    linear-gradient(to bottom, rgba(255,255,255,0.26), rgba(255,255,255,0.08)),
    #edf0f5;
}

.checkout-section {
  position: relative;
  padding: 92px 0;
}

.checkout-section--closing {
  padding-top: 30px;
  padding-bottom: 60px;
}

.checkout-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.checkout-shell--narrow {
  width: min(860px, 100%);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.checkout-left,
.checkout-right {
  display: grid;
  gap: 24px;
}

.checkout-panel {
  padding: 34px 32px;
  border-radius: 22px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.36),
    rgba(255,255,255,0.18)
  );
  border: 1px solid rgba(197, 162, 101, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255,244,221,0.08),
    0 12px 34px rgba(110, 118, 135, 0.07);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.checkout-panel--soft {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.28),
    rgba(255,255,255,0.14)
  );
}

.checkout-panel--form {
  position: sticky;
  top: 26px;
}

.checkout-panel__header {
  margin-bottom: 24px;
}

.checkout-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6b3d;
}

.checkout-panel__header h2,
.checkout-section h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #303441;
}

.checkout-panel__header p,
.checkout-section p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
}

.checkout-product {
  padding: 22px 0 18px;
  border-top: 1px solid rgba(197, 162, 101, 0.14);
  border-bottom: 1px solid rgba(197, 162, 101, 0.14);
  margin-bottom: 24px;
}

.checkout-product__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 18px;
  line-height: 1.7;
  color: #303441;
}

.checkout-product__row strong {
  font-weight: 500;
}

.checkout-product__row + .checkout-product__row {
  margin-top: 10px;
}

.checkout-product__row--muted {
  color: #7d6240;
  font-size: 15px;
}

.checkout-includes h3,
.checkout-panel h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: #303441;
}

.checkout-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 162, 101, 0.12);
}

.checkout-note p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #7d6240;
}

.checkout-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.checkout-list li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.7;
}

.checkout-list--tight li:last-child {
  margin-bottom: 0;
}

.checkout-steps {
  display: grid;
  gap: 18px;
}

.checkout-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.checkout-step__num {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.10em;
  color: #7d6240;
  border: 1px solid rgba(197, 162, 101, 0.20);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.30),
    rgba(255,255,255,0.14)
  );
}

.checkout-step h4 {
  margin: 4px 0 8px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: #303441;
}

.checkout-step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.purchase-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field label {
  font-size: 15px;
  line-height: 1.4;
  color: #4a4e5b;
}

.form-field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(197, 162, 101, 0.18);
  background: rgba(255,255,255,0.58);
  color: #303441;
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255,244,221,0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input::placeholder {
  color: rgba(90, 95, 108, 0.65);
}

.form-field input:focus {
  border-color: rgba(138, 107, 61, 0.44);
  box-shadow:
    0 0 0 3px rgba(201, 167, 101, 0.10),
    inset 0 0 0 1px rgba(255,244,221,0.08);
  background: rgba(255,255,255,0.72);
}

.checkout-summary-mini {
  margin-top: 4px;
  padding: 18px 0 2px;
  border-top: 1px solid rgba(197, 162, 101, 0.14);
}

.checkout-summary-mini__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #303441;
}

.checkout-summary-mini__row + .checkout-summary-mini__row {
  margin-top: 8px;
}

.checkout-summary-mini__row--total {
  padding-top: 10px;
  border-top: 1px solid rgba(197, 162, 101, 0.10);
  font-size: 19px;
}

.btn--full {
  width: 100%;
}

.checkout-security {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #7d6240;
  text-align: center;
}

.checkout-center {
  text-align: center;
}

@media (max-width: 1180px) {
  .checkout-hero__content {
    grid-template-columns: 500px 1fr;
  }

  .checkout-copy h1 {
    font-size: 54px;
  }

  .checkout-panel__header h2,
  .checkout-section h2 {
    font-size: 38px;
  }

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

  .checkout-panel--form {
    position: relative;
    top: auto;
  }
}

@media (max-width: 980px) {
  .checkout-hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 12px;
  }

  .checkout-copy {
    max-width: 100%;
  }

  .checkout-visual {
    min-height: 420px;
  }

  .checkout-athlete {
    position: relative;
    top: auto;
    right: auto;
    width: min(84vw, 500px);
    margin: 10px 0 0 auto;
  }

  .checkout-section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .checkout-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .checkout-lead,
  .checkout-panel__header p,
  .checkout-section p {
    font-size: 17px;
    line-height: 1.85;
  }

  .checkout-panel__header h2,
  .checkout-section h2 {
    font-size: 34px;
  }

  .checkout-panel {
    padding: 26px 20px;
    border-radius: 16px;
  }

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

  .checkout-step {
    grid-template-columns: 1fr;
  }

  .checkout-step__num {
    width: 48px;
    height: 48px;
  }
}