/* ══════════════════════════════════════════════════════
   SECTION 09 — "Getting Started / What would your life look like
                 if you had a Magnetic Brand?"

   Frame 181:4612 — x=281, y=9129 (within Landingpage), w=878, h=489
   Content is 878px wide centred (not 1128px) — (1128-878)/2=125px side margins

   Background: #150d00 (continuous). Star grain texture. Left-bottom amber orb.

   Layout:
     .s9__inner — 878px centred, flex-col, gap 30px, items-center, text-center
       .s9__header   — eyebrow + headline (878px)
       .s9__offer    — "Take the first two sessions free." (24px bold, 822px)
       .s9__desc     — body copy (18px, 752px)
       .s9__cta      — button + guarantee line
   ══════════════════════════════════════════════════════ */


/* ── Section shell ── */
.s9 {
  position: relative;
  width: 100%;
  background: #150d00;
  padding: 120px 0 160px;
  isolation: isolate;
  overflow: hidden;
}

/* ── Star/grain texture — color-dodge at 60% ── */
.s9__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: color-dodge;
  opacity: 0.6;
  overflow: hidden;
}
.s9__texture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── Left-bottom amber orb (CSS, same family as s6 planet) ── */
.s9__orb {
  position: absolute;
  left: -180px;
  bottom: 50px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 65% 35%,
    rgba(232, 193, 122, 0.65) 0%,
    rgba(213, 153, 62, 0.35) 30%,
    rgba(213, 153, 62, 0.10) 55%,
    transparent 75%
  );
  box-shadow:
    0px 0px 80px 0px rgba(213, 153, 62, 0.45),
    0px 0px 160px 0px rgba(213, 153, 62, 0.18),
    0px 0px 280px 0px rgba(213, 153, 62, 0.07);
  z-index: 0;
  pointer-events: none;
}


/* ════════════════════════════════════════
   CONTENT WRAPPER — 878px centred
   ════════════════════════════════════════ */
.s9__inner {
  position: relative;
  z-index: 1;
  width: 878px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}


/* ── Header: eyebrow + headline ── */
.s9__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.s9__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.264px;
  line-height: 16.32px;
  color: var(--color-gold);
  margin: 0;
}

.s9__headline {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 86px;
  letter-spacing: -4px;
  background: linear-gradient(to bottom, #ffffff 19.478%, #c0c0c0 93.976%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  width: 878px;
}

.s9__hl-gold {
  -webkit-text-fill-color: var(--color-gold);
  color: var(--color-gold);
}


/* ── Offer line — "Take the first two sessions free." ── */
.s9__offer {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
  width: 822px;
}


/* ── Description copy ── */
.s9__desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  width: 752px;
}


/* ════════════════════════════════════════
   CTA — button + guarantee line
   ════════════════════════════════════════ */
.s9__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 547px;
}

.s9__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  padding: 16px 36px;
  background: #d5993e;
  border: 1px solid #c98724;
  border-radius: 12px;
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0px 2px 8.5px 0px rgba(213, 153, 62, 0.25),
    inset 0px 0px 11.1px 0px rgba(69, 43, 5, 0.8);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.s9__btn:hover {
  background: #e8aa50;
  box-shadow:
    0px 4px 16px 0px rgba(213, 153, 62, 0.4),
    inset 0px 0px 11.1px 0px rgba(69, 43, 5, 0.8);
}

.s9__guarantee {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.14px;
  color: rgba(255, 255, 255, 0.54);
  margin: 0;
  white-space: nowrap;
}
