:root {
  --milk: #f9f4ec;
  --sand: #f2e7d6;
  --sage: #b7d2c5;
  --sage-deep: #6c9c8b;
  --sky: #7ec7e9;
  --sky-deep: #4a9fcf;
  --sun: #f7c978;
  --gold: #d8aa4d;
  --gold-deep: #b7842e;
  --peach: #f6b59a;
  --text: #1c2a2a;
  --muted: #5d6a6a;
  --line: #e0d6c8;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(54, 67, 62, 0.18);
  --bg-gradient: linear-gradient(180deg, #f4e9dc 0%, #f9f4ec 48%, #fdfaf4 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg-gradient);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}


body.menu-open {
  overflow: hidden;
}

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

a:hover {
  color: var(--sage-deep);
}

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  mix-blend-mode: multiply;
  animation: float 16s ease-in-out infinite;
}

.orb--mint {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(183, 210, 197, 0.8), transparent 70%);
  top: -60px;
  left: -80px;
  animation-duration: 18s;
}

.orb--sky {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(126, 199, 233, 0.7), transparent 70%);
  right: -140px;
  top: 120px;
  animation-duration: 22s;
}

.orb--sun {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(247, 201, 120, 0.8), transparent 70%);
  bottom: -200px;
  left: 30%;
  animation-duration: 20s;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(249, 244, 236, 0.86);
  border-bottom: 1px solid rgba(224, 214, 200, 0.6);
  z-index: 10;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
  position: relative;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f1e1f;
}


.nav {
  display: flex;
  gap: 14px;
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2d3b3b;
}


.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(224, 214, 200, 0.8);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  padding: 8px;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #2a3b3b;
  border-radius: 999px;
}


.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 42, 42, 0.32);
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.header-cta {
  margin-left: auto;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--sage);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(108, 156, 139, 0.25);
  color: var(--text);
}

.hero {
  padding: 30px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -140px;
  top: -180px;
  background: radial-gradient(circle, rgba(247, 201, 120, 0.35), transparent 70%);
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 380px;
  left: -200px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(126, 199, 233, 0.3), transparent 70%);
  opacity: 0.12;
  filter: blur(60px);
}

.hero--center {
  padding-top: 20px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: -12px;
}

@media (min-width: 961px) {
  .hero {
    padding-top: 40px;
  }

  .hero--center {
    padding-top: 28px;
  }

  .hero-top {
    margin-top: -4px;
    align-items: center;
    text-align: center;
  }

  .hero-system,
  .hero-intro {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.hero-system {
  text-transform: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #233232;
  max-width: 680px;
  display: grid;
  gap: 6px;
  line-height: 1.25;
}

.hero-system-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-system-ornament {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(216, 170, 77, 0.4);
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 170, 77, 0.3) 0 6px, transparent 7px),
    conic-gradient(from 0deg, rgba(216, 170, 77, 0.35), rgba(126, 199, 233, 0.3), rgba(183, 210, 197, 0.35), rgba(216, 170, 77, 0.35));
  box-shadow: 0 8px 18px rgba(90, 104, 96, 0.16);
  flex: 0 0 auto;
}

.hero-system span {
  display: block;
  white-space: nowrap;
}

.hero-intro {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.hero-launch {
  background: linear-gradient(90deg, #ffd9a8, #f7b36b, #f39d7e);
  color: #4a2a1a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(240, 167, 90, 0.35), 0 0 18px rgba(240, 167, 90, 0.45);
  animation: glow 3.5s ease-in-out infinite;
}

.hero-lead {
  font-size: 18px;
  color: #2b3b3b;
  line-height: 1.55;
  margin-top: 6px;
}


.hero-lead::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(216, 170, 77, 0.75), rgba(126, 199, 233, 0.6), transparent);
}

.meta-item {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(224, 214, 200, 0.7);
  font-size: 13px;
  font-weight: 600;
  color: #233232;
  display: grid;
  gap: 4px;
  position: relative;
}

.meta-item--accent {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(247, 201, 120, 0.18);
  border-color: rgba(240, 181, 91, 0.5);
}

.meta-item--inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 1;
  color: #c79a3a;
}

.meta-icon {
  font-size: 15px;
  color: #c79a3a;
  text-shadow: 0 0 10px rgba(240, 181, 91, 0.4);
}

.meta-text {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #233232;
  line-height: 1.2;
}

.meta-text--big {
  font-size: 14px;
  letter-spacing: 0.12em;
}

.meta-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #6b5a3a;
}

.meta-info {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(199, 154, 58, 0.7);
  background: rgba(255, 255, 255, 0.85);
  color: #7a5b2b;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(240, 181, 91, 0.25);
}

.meta-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(220px, 70vw);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(224, 214, 200, 0.8);
  box-shadow: 0 18px 40px rgba(54, 67, 62, 0.16);
  font-size: 12px;
  line-height: 1.4;
  color: #2b3b3b;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 3;
}

.meta-item.is-open .meta-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(2px);
}

.hero-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  margin-top: 24px;
  gap: 26px;
}

.hero-steps {
  width: min(220px, 70vw);
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hero-steps::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 170, 77, 0.6), rgba(126, 199, 233, 0.45), transparent);
  transform: translateY(-50%);
}

.hero-steps span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(216, 170, 77, 0.85);
  box-shadow: 0 0 10px rgba(216, 170, 77, 0.35);
  position: relative;
  z-index: 1;
}
.hero-name {
  position: absolute;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 8vw, 120px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(32, 45, 45, 0.9);
  text-align: center;
  line-height: 0.9;
  pointer-events: none;
  top: 68px;
  left: 50%;
  transform: translate(-50%, -64%);
  white-space: nowrap;
}


.hero-photo-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.hero-side {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(216, 170, 77, 0.45);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.85), rgba(247, 201, 120, 0.25) 60%, transparent 72%);
  box-shadow: 0 16px 34px rgba(90, 104, 96, 0.16);
  z-index: 0;
  pointer-events: none;
}

.hero-side::before {
  content: "";
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-side--left {
  left: -70px;
}

.hero-side--left::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b7842e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3c2 3 2 6 0 9-2-3-2-6 0-9z'/><path d='M5 10c3 1 5 3 6 6-3-1-5-3-6-6z'/><path d='M19 10c-3 1-5 3-6 6 3-1 5-3 6-6z'/></svg>");
}

.hero-side--right {
  right: -70px;
}

.hero-side--right::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b7842e' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M2 12s4-6 10-6 10 6 10 6-4 6-10 6-10-6-10-6z'/><circle cx='12' cy='12' r='2.5'/></svg>");
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  width: clamp(320px, 60vw, 520px);
  height: clamp(320px, 60vw, 520px);
  border-radius: 50%;
  border: 1px solid rgba(216, 170, 77, 0.35);
  box-shadow: 0 0 0 10px rgba(216, 170, 77, 0.06), 0 24px 60px rgba(90, 104, 96, 0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  width: clamp(360px, 66vw, 560px);
  height: clamp(360px, 66vw, 560px);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(216, 170, 77, 0.2) 55%, transparent 72%);
  opacity: 0.6;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

.hero-om {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  font-family: "Noto Serif Devanagari", "Cormorant Garamond", serif;
  font-size: 240px;
  line-height: 1;
  color: rgba(216, 170, 77, 0.55);
  text-shadow: 0 0 32px rgba(216, 170, 77, 0.35);
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
}

.flower-life {
  position: absolute;
  width: 420px;
  height: 420px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'><g stroke='%23D4AF37' stroke-width='2' fill='none'><circle cx='94.00' cy='250.00' r='78'/><circle cx='133.00' cy='317.55' r='78'/><circle cx='172.00' cy='385.10' r='78'/><circle cx='133.00' cy='182.45' r='78'/><circle cx='172.00' cy='250.00' r='78'/><circle cx='211.00' cy='317.55' r='78'/><circle cx='250.00' cy='385.10' r='78'/><circle cx='172.00' cy='114.90' r='78'/><circle cx='211.00' cy='182.45' r='78'/><circle cx='250.00' cy='250.00' r='78'/><circle cx='289.00' cy='317.55' r='78'/><circle cx='328.00' cy='385.10' r='78'/><circle cx='250.00' cy='114.90' r='78'/><circle cx='289.00' cy='182.45' r='78'/><circle cx='328.00' cy='250.00' r='78'/><circle cx='367.00' cy='317.55' r='78'/><circle cx='328.00' cy='114.90' r='78'/><circle cx='367.00' cy='182.45' r='78'/><circle cx='406.00' cy='250.00' r='78'/><circle cx='250' cy='250' r='234.00'/><circle cx='250' cy='250' r='242.00'/></g></svg>") center/contain no-repeat;
  opacity: 0.65;
  z-index: 0;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.35));
  animation: star-spin 30s linear infinite, star-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.hero-flower {
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  z-index: 0;
  clip-path: circle(48% at 50% 50%);
}

.hero-orbit {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(126, 199, 233, 0.35), rgba(247, 201, 120, 0.35), rgba(183, 210, 197, 0.35), rgba(126, 199, 233, 0.35));
  clip-path: circle(50% at 50% 50%);
  filter: blur(0.5px);
  animation: spin 18s linear infinite;
  z-index: 0;
  top: 50%;
  left: 50%;
}

.hero-photo {
  width: min(620px, 92vw);
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.hero-cta-row {
  width: min(760px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: -8px;
}

.hero-duration {
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(224, 214, 200, 0.8);
  box-shadow: 0 16px 36px rgba(54, 67, 62, 0.12);
  min-width: 180px;
}


.hero-duration__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b5a3a;
}

.hero-duration__value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: #233232;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.hero-cta {
  padding: 20px 48px;
  font-size: 18px;
  box-shadow: 0 20px 46px rgba(47, 143, 198, 0.5);
  animation: cta-pulse 3.6s ease-in-out infinite;
}

.video-label {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #2b3b3b;
  font-size: 13px;
}

.video-label__text {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(224, 214, 200, 0.8);
}
.video-cta {
  border: none;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: grid;
  gap: 8px;
  justify-items: center;
  box-shadow: 0 16px 40px rgba(54, 67, 62, 0.12);
  margin-top: -18px;
}

.video-arrows {
  display: grid;
  gap: 4px;
}

.video-arrows span {
  width: 10px;
  height: 10px;
  border-right: 2px solid #8a6b34;
  border-bottom: 2px solid #8a6b34;
  transform: rotate(45deg);
  animation: arrow 1.8s ease-in-out infinite;
}

.video-arrows span:nth-child(2) {
  animation-delay: 0.2s;
}

.video-arrows span:nth-child(3) {
  animation-delay: 0.4s;
}

.video-section {
  padding: 0 0 60px;
  margin-top: -120px;
}

.video-shell {
  width: min(920px, 92vw);
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.video-shell img {
  width: 100%;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 36px;
  color: #1c2a2a;
  background: rgba(255, 255, 255, 0.2);
}


.hero-copy > * {
  animation: rise 0.8s ease forwards;
  opacity: 0;
  transform: translateY(18px);
  animation-delay: var(--delay, 0s);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe7ba, #f7c978, #f5b8a2);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.badge::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 60%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: shimmer 5s ease-in-out infinite;
}

.eyebrow {
  margin-top: 12px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #233232;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 8.4vw, 104px);
  line-height: 1.05;
  margin-top: 6px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 18px;
  margin-top: 20px;
  max-width: 520px;
  color: var(--muted);
}

.hero-meta {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(126, 199, 233, 0.2);
  font-weight: 700;
  font-size: 14px;
}

.pill svg {
  width: 18px;
  height: 18px;
}

.pill--ghost {
  background: rgba(183, 210, 197, 0.35);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.btn:hover {
  color: #1c2a2a;
}

.btn-primary {
  background: linear-gradient(120deg, #5eb6e6, #2f8fc6);
  color: #0b2a33;
  box-shadow: 0 18px 45px rgba(47, 143, 198, 0.45);
}

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

.btn-pulse {
  position: relative;
  animation: pulse-ring 2.8s ease-in-out infinite;
  box-shadow: 0 18px 45px rgba(47, 143, 198, 0.55), 0 0 0 0 rgba(94, 182, 230, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid var(--sage-deep);
  color: #1e4a40;
}

.btn-secondary:hover {
  background: rgba(183, 210, 197, 0.35);
  color: var(--text);
}

.play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-size: 13px;
}

.video-card {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(224, 214, 200, 0.6);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(8px);
}

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

.video-preview {
  border-radius: 14px;
  overflow: hidden;
}

.video-title {
  font-weight: 600;
  font-size: 16px;
}

.video-caption {
  color: var(--muted);
  margin-top: 6px;
  font-size: 14px;
}

.hero-visual {
  display: grid;
  gap: 24px;
  justify-items: center;
  animation: rise 1s ease forwards;
  opacity: 0;
  transform: translateY(-28px) translateX(-12px);
  animation-delay: var(--delay, 0s);
  position: relative;
  transform-origin: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.75), transparent 60%),
    conic-gradient(from 20deg, rgba(126, 199, 233, 0.3), rgba(247, 201, 120, 0.25), rgba(183, 210, 197, 0.3), rgba(255, 255, 255, 0));
  top: 8%;
  left: 48%;
  transform: translate(-50%, -50%);
  filter: blur(1px);
  opacity: 0.8;
  z-index: 0;
}

.hero-frame {
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(183, 210, 197, 0.65), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow);
  animation: float 9s ease-in-out infinite;
  width: min(560px, 100%);
  position: relative;
  z-index: 1;
}

.hero-frame img {
  border-radius: 26px;
  width: 100%;
}

.hero-note {
  padding: 16px 24px;
  border-radius: 999px;
  background: rgba(247, 201, 120, 0.35);
  font-weight: 600;
  text-align: center;
  box-shadow: 0 12px 24px rgba(247, 201, 120, 0.25);
  position: relative;
  z-index: 1;
}

.why {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(224, 214, 200, 0.7);
  box-shadow: 0 14px 30px rgba(90, 104, 96, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(90, 104, 96, 0.18);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.results {
  padding: 80px 0;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.results-copy .btn {
  margin-top: 20px;
}

.results-list {
  display: grid;
  gap: 16px;
}

.results-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(224, 214, 200, 0.6);
  box-shadow: 0 12px 26px rgba(90, 104, 96, 0.1);
}

.results-icon {
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(126, 199, 233, 0.25);
  display: grid;
  place-items: center;
}

.results-item h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.path {
  padding: 80px 0;
}

.path-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.path-map {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(224, 214, 200, 0.7);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  align-content: start;
  overflow: hidden;
  min-height: 420px;
}

.path-map > *:not(.flower-life) {
  position: relative;
  z-index: 1;
}

.path-svg {
  width: 100%;
  height: auto;
  display: block;
}

.path-line {
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
}

.path-node {
  fill: var(--gold);
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(216, 170, 77, 0.35));
}

.path-legend {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--muted);
}

.path-rituals {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(247, 201, 120, 0.2);
  border: 1px solid rgba(224, 214, 200, 0.6);
}

.path-rituals__title {
  font-weight: 600;
  margin-bottom: 10px;
}

.path-rituals ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.path-rituals li::before {
  content: "•";
  color: var(--gold-deep);
  margin-right: 8px;
}

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

.path-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(224, 214, 200, 0.6);
  box-shadow: 0 12px 26px rgba(90, 104, 96, 0.1);
}

.path-step__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  line-height: 1;
}

.path-step h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.path-flower {
  width: 360px;
  height: 360px;
  top: -80px;
  right: -120px;
  opacity: 0.35;
}

.story {
  padding: 0 0 80px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--sage-deep);
  margin-bottom: 16px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.section-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 170, 77, 0.95), rgba(243, 215, 166, 0.6));
  box-shadow: 0 0 12px rgba(216, 170, 77, 0.45);
}

.story h2,
.section-head h2,
.price-copy h2,
.site-footer h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.story-block {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(224, 214, 200, 0.6);
  margin-bottom: 16px;
}





.story-tag {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--sage-deep);
}

.benefits {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(247, 201, 120, 0.2);
}

.benefits-title {
  font-weight: 600;
  margin-bottom: 12px;
}

.benefits ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.story-cta {
  margin-top: 22px;
}

.benefits li::before {
  content: "✓";
  color: var(--sage-deep);
  font-weight: 700;
  margin-right: 10px;
}

.story-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.program {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(224, 214, 200, 0.6);
  border-bottom: 1px solid rgba(224, 214, 200, 0.6);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-note {
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.program-includes {
  margin: 48px auto 0;
  max-width: 920px;
  padding: 28px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(224, 214, 200, 0.75);
  box-shadow: 0 10px 22px rgba(90, 104, 96, 0.08);
}

.program-includes__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(224, 214, 200, 0.7);
}

.program-includes__header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.6vw, 34px);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

.program-includes__lead {
  color: var(--muted);
  max-width: 520px;
  font-size: 15px;
}

.program-includes__pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.program-includes .pill {
  background: transparent;
  border: 1px solid rgba(108, 156, 139, 0.4);
  color: var(--sage-deep);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  box-shadow: none;
}

.program-includes .pill--ghost {
  background: transparent;
}

.program-includes__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.includes-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(224, 214, 200, 0.65);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.includes-card:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 156, 139, 0.5);
}

.includes-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: transparent;
  border: 1px solid rgba(224, 214, 200, 0.7);
  color: var(--sage-deep);
}

.includes-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.includes-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.program-card {
  position: relative;
  padding: 24px 22px 26px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid rgba(224, 214, 200, 0.7);
  box-shadow: 0 12px 30px rgba(90, 104, 96, 0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(126, 199, 233, 0.6);
  box-shadow: 0 20px 40px rgba(74, 159, 207, 0.18);
}

.program-card::before {
  content: attr(data-num);
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 46px;
  font-family: "Cormorant Garamond", serif;
  color: rgba(126, 199, 233, 0.25);
}

.program-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.program-card--pending {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.7);
}

.format {
  padding: 80px 0;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.format-item {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(224, 214, 200, 0.7);
  text-align: center;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.format-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(90, 104, 96, 0.12);
}

.format-icon {
  font-size: 28px;
  display: inline-flex;
  margin-bottom: 12px;
}

.author {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(224, 214, 200, 0.6);
  border-bottom: 1px solid rgba(224, 214, 200, 0.6);
}

.author-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.author-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.author-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.author-list li::before {
  content: "•";
  color: var(--sage-deep);
  font-weight: 700;
  margin-right: 8px;
}

.author-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.stat-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(247, 201, 120, 0.2);
  display: grid;
  gap: 6px;
}

.stat-card strong {
  font-size: 18px;
}

.reviews {
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.review-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(224, 214, 200, 0.6);
  box-shadow: 0 12px 30px rgba(90, 104, 96, 0.12);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.review-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(183, 210, 197, 0.4);
  font-weight: 600;
}

.review-rating {
  letter-spacing: 0.2em;
  color: #f0b55b;
}

.review-text {
  margin-bottom: 14px;
}

.review-meta {
  font-weight: 600;
  color: var(--muted);
}

.price {
  padding: 80px 0 90px;
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.price-card {
  background: var(--card);
  padding: 32px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(224, 214, 200, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(54, 67, 62, 0.2);
}

.price-highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.price-highlights span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(126, 199, 233, 0.25);
  font-size: 13px;
  font-weight: 600;
}

.price-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}

.price-old {
  font-size: 22px;
  text-decoration: line-through;
  color: var(--muted);
  margin-top: 8px;
}

.price-new {
  font-size: 40px;
  font-weight: 700;
  color: var(--sage-deep);
  margin-top: 8px;
}

.price-form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.price-form label {
  font-size: 14px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.price-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(224, 214, 200, 0.9);
  font-family: inherit;
  font-size: 14px;
}

.price-form input:focus {
  outline: 2px solid rgba(126, 199, 233, 0.5);
  border-color: rgba(126, 199, 233, 0.8);
}

.price-footnote {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.faq {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(224, 214, 200, 0.6);
  box-shadow: 0 12px 26px rgba(90, 104, 96, 0.1);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  position: relative;
  padding-right: 24px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--sage-deep);
  font-weight: 700;
}

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

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

.final-cta {
  padding: 60px 0 80px;
}

.cta-card {
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(126, 199, 233, 0.25), rgba(247, 201, 120, 0.3));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(224, 214, 200, 0.7);
  box-shadow: var(--shadow);
}

.cta-card p {
  margin-top: 8px;
  color: var(--muted);
}

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

.site-footer {
  padding: 60px 0;
  background: #efe5d6;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 30px;
  align-items: center;
}

.footer-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.copyright {
  font-size: 12px;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal.is-open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 42, 42, 0.6);
}

.modal-body {
  position: relative;
  background: #fffdf7;
  border-radius: 24px;
  padding: 24px;
  width: min(860px, 92vw);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.video-frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8dfd1;
  display: grid;
  place-items: center;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-caption {
  margin-top: 12px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal--left {
  transform: translateX(-26px);
}

.reveal--right {
  transform: translateX(26px);
}

.reveal--scale {
  transform: scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(14px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%) skewX(-20deg);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(220%) skewX(-20deg);
    opacity: 0;
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes arrow {
  0% {
    opacity: 0.2;
    transform: translateY(-2px) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(2px) rotate(45deg);
  }
  100% {
    opacity: 0.2;
    transform: translateY(-2px) rotate(45deg);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 18px 45px rgba(47, 143, 198, 0.55), 0 0 0 0 rgba(94, 182, 230, 0.6);
  }
  70% {
    box-shadow: 0 18px 45px rgba(47, 143, 198, 0.55), 0 0 0 18px rgba(94, 182, 230, 0);
  }
  100% {
    box-shadow: 0 18px 45px rgba(47, 143, 198, 0.55), 0 0 0 0 rgba(94, 182, 230, 0);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 16px 32px rgba(240, 167, 90, 0.32), 0 0 16px rgba(240, 167, 90, 0.3);
  }
  50% {
    box-shadow: 0 22px 40px rgba(240, 167, 90, 0.5), 0 0 22px rgba(240, 167, 90, 0.55);
  }
  100% {
    box-shadow: 0 16px 32px rgba(240, 167, 90, 0.32), 0 0 16px rgba(240, 167, 90, 0.3);
  }
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 18px 42px rgba(47, 143, 198, 0.35);
  }
  50% {
    box-shadow: 0 24px 52px rgba(47, 143, 198, 0.6);
  }
}

@keyframes star-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes star-pulse {
  0%, 100% {
    opacity: 0.45;
    filter: blur(0px);
  }
  50% {
    opacity: 0.7;
    filter: blur(0.5px);
  }
}

@media (max-width: 960px) {
  .results-grid,
  .path-grid,
  .story-grid,
  .author-grid,
  .price-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    display: none;
  }

  .nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(224, 214, 200, 0.8);
    box-shadow: 0 22px 40px rgba(54, 67, 62, 0.18);
    z-index: 9;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }


  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  .menu-toggle {
    display: grid;
  }

  .theme-toggle {
    order: 3;
  }

  .nav-overlay {
    display: block;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-system span {
    white-space: normal;
  }

  .hero-meta-rail {
    justify-content: flex-start;
  }

  .hero-center {
    min-height: 440px;
  }

  .hero-name {
    font-size: clamp(52px, 10vw, 96px);
  }

  .hero-orbit {
    width: 480px;
    height: 480px;
  }

  .hero-om {
    width: 340px;
    height: 340px;
    font-size: 200px;
  }

  .hero-flower {
    width: 440px;
    height: 440px;
  }

  .hero-side {
    width: 70px;
    height: 70px;
  }

  .hero-side--left {
    left: -50px;
  }

  .hero-side--right {
    right: -50px;
  }

  .hero-photo-wrap::before {
    width: clamp(300px, 70vw, 440px);
    height: clamp(300px, 70vw, 440px);
  }

  .hero-photo-wrap::after {
    width: clamp(340px, 76vw, 480px);
    height: clamp(340px, 76vw, 480px);
  }

  .path-map {
    min-height: 360px;
  }

  .path-flower {
    width: 300px;
    height: 300px;
    top: -60px;
    right: -90px;
  }

  .hero-photo {
    width: min(520px, 92vw);
  }


  .hero-cta-row {
    width: min(600px, 92vw);
  }

  .hero-duration__value {
    font-size: 24px;
  }

  .hero-cta {
    padding: 18px 40px;
  }

  .video-section {
    margin-top: -80px;
  }


  .results-copy {
    text-align: center;
  }

  .results-copy .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .program-includes {
    padding: 24px 20px;
  }

  .program-includes__header {
    align-items: flex-start;
  }

  .program-includes__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .orb--sky {
    opacity: 0.18;
    filter: blur(60px);
    mix-blend-mode: normal;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 6px 0;
  }

  .hero {
    padding-top: 8px;
  }

  .hero::after {
    opacity: 0.12;
    filter: blur(60px);
  }

  .hero--center {
    padding-top: 0;
  }

  .hero-top {
    align-items: center;
    text-align: center;
    margin-top: -36px;
  }

  .hero,
  .why,
  .results,
  .program,
  .format,
  .author,
  .reviews,
  .faq,
  .price,
  .path,
  .final-cta {
    padding: 60px 0;
  }

  .hero-system {
    font-size: 11px;
    letter-spacing: 0.06em;
    margin: 0 auto;
  }

  .hero-system span {
    white-space: nowrap;
  }

  .hero-intro {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-center {
    min-height: 360px;
  }

  .hero-name {
    letter-spacing: 0.05em;
    font-size: clamp(44px, 9vw, 72px);
    top: 86px;
    transform: translate(-50%, -78%);
  }

  .hero-orbit {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(126, 199, 233, 0.18), rgba(247, 201, 120, 0.18) 45%, transparent 70%);
    opacity: 0.6;
    filter: blur(1.5px);
  }

  .hero-om {
    width: 260px;
    height: 260px;
    font-size: 160px;
    opacity: 0.8;
  }

  .hero-flower {
    width: 340px;
    height: 340px;
  }

  .hero-side {
    display: none;
  }

  .hero-photo-wrap::before {
    width: clamp(260px, 78vw, 360px);
    height: clamp(260px, 78vw, 360px);
  }

  .hero-photo-wrap::after {
    width: clamp(300px, 84vw, 420px);
    height: clamp(300px, 84vw, 420px);
  }

  .hero-lead::after {
    width: 96px;
    margin-top: 12px;
  }


  .path-map {
    padding: 24px;
  }

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

  .path-flower {
    display: none;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    margin-top: -4px;
  }

  .hero-duration {
    width: min(320px, 92vw);
    text-align: center;
  }

  .hero-cta {
    width: min(320px, 92vw);
    justify-content: center;
  }



  .video-section {
    margin-top: -30px;
  }

  .story {
    padding-bottom: 60px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .program-grid,
  .format-grid {
    gap: 16px;
  }

  .why-grid,
  .reviews-grid {
    gap: 16px;
  }

  .results-item {
    grid-template-columns: 1fr;
  }

  .results-icon {
    justify-self: start;
  }

  .cta-card {
    padding: 26px;
  }

  .price-card {
    padding: 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .hero-top,
  .hero-center,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
