@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;700;800&display=swap");

:root {
  --obsidian: #070808;
  --ink: #f7efe1;
  --gold: #e6ad53;
  --copper: #b9632f;
  --amber: #f0a83e;
  --ember: #8d2e26;
  --teal: #38bda6;
  --indigo: #506ee7;
  --amethyst: #8d6beb;
  --white-blue: #dfe9ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(141, 107, 235, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(56, 189, 166, 0.1), transparent 24rem),
    linear-gradient(180deg, #090a0d 0%, #0c0b09 44%, #150d0a 100%);
  color: var(--ink);
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero-section {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(80, 110, 231, 0.16), transparent 30rem),
    radial-gradient(circle at 50% 84%, rgba(240, 168, 62, 0.16), transparent 28rem),
    #030404;
}

.hero-frame {
  width: min(100vw, calc((100svh - 170px) * 16 / 9));
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.44);
}

.hero-image {
  width: 100%;
  height: auto;
}

.hero-content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  pointer-events: none;
}

.hero-copy {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(230, 173, 83, 0.24);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(135deg, rgba(5, 6, 7, 0.96), rgba(14, 10, 7, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: #fff8eb;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5.2vw, 5.15rem);
  font-weight: 700;
  line-height: 0.94;
}

.hero-lede {
  max-width: 560px;
  margin: 0;
  color: rgba(247, 239, 225, 0.84);
  font-size: clamp(0.88rem, 1.1vw, 1.02rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.primary-cta,
.secondary-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-cta {
  background: linear-gradient(135deg, #ffe0a0, var(--gold) 42%, var(--copper));
  color: #160c05;
  box-shadow: 0 18px 52px rgba(230, 173, 83, 0.24);
}

.secondary-cta {
  border: 1px solid rgba(247, 239, 225, 0.28);
  color: rgba(247, 239, 225, 0.9);
  background: rgba(255, 255, 255, 0.04);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band,
.method-band,
.practice-band,
.purchase-section {
  padding: 96px 0;
}

.intro-layout,
.axis-layout,
.inside-layout,
.practice-layout,
.purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.intro-layout p,
.axis-copy p,
.inside-layout p,
.purchase-layout p {
  margin: 0;
  color: rgba(247, 239, 225, 0.73);
  font-size: 1.05rem;
  line-height: 1.8;
}

.axis-section {
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(80, 110, 231, 0.12), transparent 34%, rgba(240, 168, 62, 0.1)),
    rgba(7, 8, 8, 0.66);
}

.axis-visual {
  position: relative;
  min-height: 610px;
  border-left: 1px solid rgba(230, 173, 83, 0.22);
  border-right: 1px solid rgba(230, 173, 83, 0.22);
}

.axis-line {
  position: absolute;
  inset: 34px 50% 34px auto;
  width: 2px;
  translate: 1px 0;
  background: linear-gradient(
    180deg,
    var(--white-blue),
    var(--amethyst) 18%,
    var(--indigo) 34%,
    var(--teal) 50%,
    var(--amber) 68%,
    var(--copper) 83%,
    var(--ember)
  );
  box-shadow: 0 0 28px rgba(223, 233, 255, 0.2), 0 0 38px rgba(240, 168, 62, 0.28);
}

.node {
  position: absolute;
  left: 50%;
  width: 54px;
  height: 54px;
  translate: -50% -50%;
  border-radius: 50%;
  border: 1px solid rgba(247, 239, 225, 0.34);
  box-shadow: 0 0 34px currentColor;
}

.node::before,
.node::after {
  content: "";
  position: absolute;
  inset: -34px;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: 0.18;
}

.node::after {
  inset: -78px;
  opacity: 0.08;
}

.crown { top: 10%; color: var(--white-blue); background: rgba(223, 233, 255, 0.22); }
.throat { top: 25%; color: var(--amethyst); background: rgba(141, 107, 235, 0.18); }
.heart { top: 43%; color: var(--teal); background: rgba(56, 189, 166, 0.2); }
.solar { top: 60%; color: var(--amber); background: rgba(240, 168, 62, 0.2); }
.sacral { top: 76%; color: var(--copper); background: rgba(185, 99, 47, 0.2); }
.root { top: 91%; color: var(--ember); background: rgba(141, 46, 38, 0.25); }

.axis-copy {
  display: grid;
  gap: 22px;
}

.method-band {
  background:
    radial-gradient(circle at 14% 0%, rgba(141, 107, 235, 0.12), transparent 20rem),
    radial-gradient(circle at 84% 100%, rgba(185, 99, 47, 0.16), transparent 22rem);
}

.section-heading {
  max-width: 790px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.pillar-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(230, 173, 83, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.pillar-card span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.pillar-card p {
  margin: 28px 0 0;
  color: rgba(247, 239, 225, 0.72);
  line-height: 1.7;
}

.inside-section {
  padding: 112px 0;
  background: rgba(10, 10, 9, 0.72);
}

.cover-wrap {
  max-width: 430px;
  justify-self: center;
  perspective: 900px;
}

.cover-wrap img {
  border-radius: 4px;
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.48), 0 0 46px rgba(230, 173, 83, 0.12);
  transform: rotateY(-7deg) rotateX(2deg);
}

.module-list,
.practice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.module-list span,
.practice-list span {
  border: 1px solid rgba(247, 239, 225, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(247, 239, 225, 0.82);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
}

.practice-band {
  background:
    linear-gradient(135deg, rgba(80, 110, 231, 0.1), rgba(56, 189, 166, 0.08) 42%, rgba(185, 99, 47, 0.12)),
    #0b0c0c;
}

.quote-band {
  padding: 88px 0;
  border-top: 1px solid rgba(230, 173, 83, 0.12);
  border-bottom: 1px solid rgba(230, 173, 83, 0.12);
}

.quote-layout {
  max-width: 960px;
}

.quote-layout p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4.75rem);
  line-height: 1.05;
  color: #fff2dc;
}

.purchase-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 173, 83, 0.12), transparent 32rem),
    #080808;
}

.purchase-layout {
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
    padding: 0;
  }

  .hero-frame {
    width: 100%;
    box-shadow: none;
  }

  .hero-content {
    display: block;
    padding: 0 20px 42px;
    background: linear-gradient(180deg, #060706 0%, #0b0908 100%);
  }

  .hero-copy {
    width: min(100%, 680px);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
    border-top: 1px solid rgba(230, 173, 83, 0.24);
    border-radius: 8px;
  }

  .intro-layout,
  .axis-layout,
  .inside-layout,
  .practice-layout,
  .purchase-layout {
    grid-template-columns: 1fr;
  }

  .axis-visual {
    min-height: 500px;
    order: 2;
  }

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

  .purchase-layout {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .hero-content {
    padding: 0 14px 36px;
  }

  .hero-copy {
    width: 100%;
    padding: 18px;
  }

  .hero-actions,
  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .primary-cta,
  .secondary-cta {
    min-height: 54px;
    padding: 0 16px;
    text-align: center;
  }

  .intro-band,
  .method-band,
  .practice-band,
  .purchase-section,
  .inside-section,
  .axis-section,
  .quote-band {
    padding: 64px 0;
  }

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

  .pillar-card {
    min-height: 180px;
  }
}
