:root {
  --bg-top: #1c120f;
  --bg-mid: #2c1b16;
  --bg-soft: #f5ecdf;
  --surface: rgba(255, 249, 241, 0.9);
  --surface-strong: rgba(255, 251, 245, 0.96);
  --ink: #211714;
  --ink-soft: #5d5048;
  --line: rgba(194, 155, 93, 0.16);
  --gold-soft: #f9e4b6;
  --shadow: 0 24px 64px rgba(22, 10, 8, 0.18);
  --shadow-soft: 0 14px 34px rgba(39, 19, 14, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shell: 1180px;
  --section-space: 80px;
  --type-h2: clamp(2.1rem, 7vw, 4rem);
  --type-h3: clamp(1.7rem, 3vw, 2.3rem);
  --type-h4: clamp(1.35rem, 2.2vw, 1.8rem);
  --type-subtitle: clamp(1.4rem, 5vw, 2.1rem);
  --type-body: 1rem;
  --type-body-lg: 1.04rem;
  --type-label: 0.82rem;
  --panel-light-border: rgba(205, 168, 120, 0.2);
  --panel-light-bg:
    radial-gradient(circle at 14% 18%, rgba(249, 231, 198, 0.9), transparent 20rem),
    radial-gradient(circle at 84% 14%, rgba(255, 248, 234, 0.94), transparent 20rem),
    radial-gradient(circle at 50% 100%, rgba(242, 217, 186, 0.54), transparent 18rem),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 239, 228, 0.92));
  --panel-dark-border: rgba(255, 228, 184, 0.14);
  --panel-dark-bg:
    radial-gradient(circle at 14% 18%, rgba(255, 214, 132, 0.14), transparent 18rem),
    radial-gradient(circle at 84% 12%, rgba(255, 186, 82, 0.18), transparent 16rem),
    radial-gradient(circle at 52% 100%, rgba(255, 245, 222, 0.08), transparent 18rem),
    linear-gradient(150deg, rgba(64, 39, 31, 0.98), rgba(28, 17, 14, 0.99) 56%, rgba(14, 9, 8, 1));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 215, 140, 0.14), transparent 22rem),
    radial-gradient(circle at 82% 14%, rgba(255, 226, 170, 0.12), transparent 18rem),
    radial-gradient(circle at 50% 24%, rgba(255, 244, 225, 0.1), transparent 24rem),
    linear-gradient(180deg, #21120f 0%, #34201a 12%, #4a2e23 20%, #f4ebdf 34%, #f7f1e7 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 219, 145, 0.08), transparent 15rem),
    radial-gradient(circle at 82% 26%, rgba(255, 240, 204, 0.1), transparent 20rem);
  mix-blend-mode: screen;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 24px));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(84px);
  opacity: 0.34;
}

.page-glow--left {
  top: 6rem;
  left: -12rem;
  width: 28rem;
  height: 28rem;
  background: rgba(255, 194, 87, 0.24);
}

.page-glow--right {
  right: -11rem;
  top: 24rem;
  width: 30rem;
  height: 30rem;
  background: rgba(255, 239, 204, 0.28);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #2b150d;
  background: linear-gradient(180deg, #f4d28f 0%, #d9a95d 100%);
  box-shadow: 0 14px 28px rgba(94, 56, 15, 0.24);
}

.button--secondary,
.button--ghost {
  color: #fff5e5;
  background:
    radial-gradient(circle at top, rgba(255, 203, 104, 0.14), transparent 120%),
    linear-gradient(180deg, rgba(68, 42, 30, 0.58), rgba(27, 17, 14, 0.52));
  border-color: rgba(255, 226, 172, 0.18);
}

.button--wide {
  width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.6rem, 14vw, 7rem);
  color: #fff6e8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2 {
  font-size: var(--type-h2);
  line-height: 0.98;
  font-weight: 600;
}

h3 {
  font-size: var(--type-h3);
  font-weight: 600;
}

h4 {
  font-size: var(--type-h4);
  font-weight: 600;
  line-height: 1.02;
}

p,
li {
  line-height: 1.34;
}

.section,
.final-cta {
  padding: 0 0 var(--section-space);
  position: relative;
}

#about,
#goar,
#join,
#for-you {
  background: var(--panel-light-bg);
}

#themes,
#video-reviews,
.final-cta {
  background: var(--panel-dark-bg);
}

#about .shell,
#themes .shell,
#for-you .shell,
#goar .shell,
#join .shell,
#video-reviews .shell,
.final-cta .shell {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-text {
  color: var(--ink-soft);
  font-size: var(--type-body);
}

.section-text--light {
  color: rgba(255, 243, 226, 0.82);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 22px 0 40px;
  display: flex;
  align-items: end;
  background: url("./assets/visuals/lions-gate-goar-hero.png") center 18% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 202, 93, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(18, 10, 8, 0) 0%, rgba(18, 10, 8, 0.04) 34%, rgba(18, 10, 8, 0.24) 48%, rgba(18, 10, 8, 0.78) 70%, rgba(18, 10, 8, 0.94) 100%),
    linear-gradient(90deg, rgba(18, 10, 8, 0.22) 0%, rgba(18, 10, 8, 0.06) 34%, rgba(18, 10, 8, 0.08) 74%, rgba(18, 10, 8, 0.3) 100%);
}

.hero .shell {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: grid;
  gap: 18px;
  width: min(100%, 580px);
  padding: min(56svh, 460px) 0 8px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.hero__subtitle {
  color: #f2d59b;
  font-family: "Cormorant Garamond", serif;
  font-size: var(--type-subtitle);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__text {
  color: rgba(255, 242, 224, 0.86);
  font-size: var(--type-body-lg);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 360px);
}

.hero__meta--floating {
  position: absolute;
  top: clamp(18px, 4vw, 32px);
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  padding-inline: clamp(14px, 4vw, 30px);
}

.meta-pill {
  padding: 14px 16px;
  border: 1px solid rgba(255, 225, 166, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 237, 0.08);
  backdrop-filter: blur(8px);
}

.hero__meta--floating .meta-pill {
  width: auto;
  min-width: 0;
}

.hero__meta--floating .meta-pill:last-child {
  text-align: right;
}

.meta-pill span,
.meta-pill strong {
  display: block;
}

.meta-pill span {
  color: rgba(255, 233, 202, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-pill strong {
  color: #fff7ec;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.08;
}

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

.hero__actions .button {
  min-width: 200px;
}

.section--soft .about-grid,
.section--soft .offer-layout {
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

.topics-grid,
.audience-grid,
.results-grid {
  display: grid;
  gap: 14px;
}

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

.topic-card,
.audience-card,
.result-card {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.about-cosmos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  overflow: hidden;
}

.about-cosmos__swirl {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 0;
  width: min(48vw, 520px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(96, 58, 43, 0.88) 0 13%, transparent 14%),
    conic-gradient(from 200deg, rgba(96, 58, 43, 0.9), rgba(232, 209, 184, 0.18) 16%, rgba(255, 246, 235, 0.82) 28%, rgba(118, 75, 56, 0.92) 42%, rgba(255, 245, 230, 0.86) 56%, rgba(120, 76, 56, 0.92) 70%, rgba(255, 245, 230, 0.84) 84%, rgba(96, 58, 43, 0.9) 100%);
  filter: blur(1px);
  opacity: 0.72;
  pointer-events: none;
  mask: radial-gradient(circle at center, transparent 0 12%, #000 18% 100%);
}

.about-cosmos__label {
  margin: 0 0 8px;
  color: #7a5a49;
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-cosmos__column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.about-cosmos__item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.about-cosmos__item--featured {
  margin-bottom: 6px;
}

.about-cosmos__icon {
  display: grid;
  place-items: center;
  width: 92px;
  min-height: 92px;
}

.about-cosmos__icon svg {
  width: 74px;
  height: 74px;
  stroke: #7d5642;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.about-cosmos__copy h3 {
  margin: 0 0 8px;
  color: #4b2b1d;
}

.about-cosmos__copy p {
  color: var(--ink-soft);
  font-size: var(--type-body);
}

.about-cosmos__footer {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  grid-column: 1 / -1;
}

.about-cosmos__footer span {
  width: min(100%, 620px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 159, 94, 0.56), transparent);
}

.themes-journey {
  position: relative;
  padding: 34px 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.themes-journey::before,
.themes-journey::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.themes-journey::before {
  inset: -16% -10% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 232, 188, 0.12) 0%, rgba(255, 202, 104, 0.08) 30%, rgba(255, 202, 104, 0.02) 56%, transparent 72%);
  filter: blur(12px);
}

.themes-journey::after {
  display: none;
}

.themes-journey__heading {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.themes-journey__heading h2 {
  color: #fff3df;
}

.themes-journey__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.themes-column {
  display: grid;
  gap: 24px;
}

.themes-column__title {
  max-width: 360px;
  color: #fff0d2;
  font-size: clamp(1.85rem, 3vw, 2.3rem);
  text-shadow: 0 10px 26px rgba(9, 5, 4, 0.28);
}

.themes-column--result {
  padding-top: 0;
}

.themes-column--result .themes-column__title {
  max-width: 320px;
}

.themes-journey__divider {
  display: none;
}

.theme-step {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.theme-step__icon {
  display: grid;
  place-items: center;
  width: 132px;
  min-height: 120px;
  border: 1px solid rgba(255, 231, 192, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(255, 208, 107, 0.12), transparent 120%),
    linear-gradient(180deg, rgba(255, 248, 238, 0.06), rgba(255, 248, 238, 0.02));
}

.theme-step__icon svg {
  width: 108px;
  height: 108px;
  stroke: #f2d7ae;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 8px 16px rgba(9, 5, 4, 0.18));
}

.theme-step__copy h4 {
  margin: 0 0 8px;
  color: #fff2da;
}

.theme-step__copy p {
  color: rgba(255, 239, 213, 0.82);
  font-size: var(--type-body);
}

.topic-card,
.result-card {
  border: 1px solid rgba(214, 176, 113, 0.18);
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(249, 238, 220, 0.9));
  box-shadow: var(--shadow-soft);
}

.topic-card,
.result-card {
  position: relative;
  min-height: 124px;
}

.topic-card::before,
.result-card::before {
  content: "";
  position: absolute;
  inset: 16px auto auto 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe6ae 0%, #d7a04d 100%);
  box-shadow: 0 0 16px rgba(215, 160, 77, 0.46);
}

.topic-card p,
.result-card p {
  padding-top: 16px;
  color: var(--ink);
  font-size: var(--type-body);
}

.section--contrast .shell {
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section--contrast h2,
.section--contrast .audience-card p {
  color: #fff3df;
}

.abundance-map {
  position: relative;
  padding: 0;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.abundance-map::before,
.abundance-map::after {
  display: none;
}

.abundance-map__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.abundance-map__stream {
  display: none;
}

.abundance-map__column {
  position: relative;
  display: grid;
  gap: 24px;
  padding-block: 34px;
  padding-inline: max(22px, calc((100vw - var(--shell)) / 2 + 28px));
  border-radius: 0;
  text-align: left;
}

.abundance-map__column::after {
  display: none;
}

.abundance-map__column--current {
  background: var(--panel-light-bg);
  box-shadow: none;
}

.abundance-map__column--result {
  background: var(--panel-dark-bg);
  box-shadow: none;
}

.abundance-map__eyebrow {
  position: relative;
  z-index: 1;
  color: #4f2918;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  font-weight: 600;
  text-align: center;
}

.abundance-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  text-align: left;
}

.abundance-item__icon {
  display: grid;
  place-items: center;
  width: 92px;
  min-height: 92px;
}

.abundance-item__icon svg {
  width: 96px;
  height: 96px;
  stroke: #6a3a21;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.abundance-item__copy {
  display: grid;
  gap: 8px;
  max-width: none;
  padding-top: 6px;
}

.abundance-item__copy h3 {
  color: #4f2617;
  font-size: clamp(1.55rem, 2.25vw, 1.95rem);
  line-height: 1.08;
}

.abundance-item__copy p {
  color: #2d2521;
  font-size: 1.05rem;
  line-height: 1.46;
}

.abundance-map__column--result .abundance-map__eyebrow,
.abundance-map__column--result .abundance-item__copy h3 {
  color: #fff0d3;
}

.abundance-map__column--result .abundance-item__copy p {
  color: rgba(255, 239, 213, 0.82);
}

.abundance-map__column--result .abundance-item__icon svg {
  stroke: #f0c980;
  filter: drop-shadow(0 10px 18px rgba(12, 6, 5, 0.18));
}

.audience-card {
  border: 1px solid rgba(255, 229, 187, 0.1);
  background:
    radial-gradient(circle at top left, rgba(255, 216, 137, 0.08), transparent 120%),
    linear-gradient(180deg, rgba(255, 248, 238, 0.08), rgba(255, 248, 238, 0.04));
}

.audience-card--wide {
  grid-column: span 3;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 20px;
  align-items: center;
}

.offer-copy {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.offer-card {
  padding: 24px;
  border: 1px solid rgba(211, 172, 108, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 202, 93, 0.18), transparent 38%),
    radial-gradient(circle at bottom left, rgba(255, 238, 205, 0.08), transparent 34%),
    linear-gradient(155deg, rgba(63, 39, 31, 0.97), rgba(27, 16, 13, 0.98) 58%, rgba(16, 10, 9, 1));
  box-shadow: var(--shadow);
}

.offer-card__price {
  margin-bottom: 18px;
  color: #fff3dd;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  line-height: 0.9;
}

.offer-card__price small {
  font-size: 2rem;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 243, 223, 0.88);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe6b0, #d9a357);
}

.offer-card .button + .button {
  margin-top: 10px;
}

.video-testimonials {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.video-testimonials::before {
  display: none;
}

.video-testimonials__heading {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.video-testimonials__heading h2,
.video-testimonials__heading p {
  color: #fff3df;
}

.gallery-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.gallery-hint__text {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-hint--dark .gallery-hint__text {
  color: rgba(255, 235, 201, 0.76);
}

.gallery-hint--light .gallery-hint__text {
  color: rgba(91, 63, 44, 0.78);
}

.gallery-hint__button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 226, 172, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at top, rgba(255, 203, 104, 0.14), transparent 120%),
    linear-gradient(180deg, rgba(68, 42, 30, 0.78), rgba(27, 17, 14, 0.82));
  color: #fff5e5;
  box-shadow: 0 14px 24px rgba(16, 8, 7, 0.22);
  cursor: pointer;
}

.gallery-hint--light .gallery-hint__button {
  border-color: rgba(194, 155, 93, 0.2);
  background:
    radial-gradient(circle at top, rgba(255, 211, 126, 0.3), transparent 120%),
    linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(236, 219, 196, 0.96));
  color: #5d3823;
  box-shadow: 0 12px 22px rgba(139, 98, 69, 0.16);
}

.gallery-hint__button span {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.gallery-shell {
  position: relative;
}

.gallery-shell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
}

.gallery-shell--dark::after {
  background: linear-gradient(90deg, rgba(24, 14, 12, 0), rgba(24, 14, 12, 0.96));
}

.gallery-shell--light::after {
  background: linear-gradient(90deg, rgba(247, 239, 228, 0), rgba(247, 239, 228, 0.98));
}

.video-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 36vw);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-gallery::-webkit-scrollbar {
  display: none;
}

.video-card {
  scroll-snap-align: start;
  display: grid;
  gap: 12px;
}

.video-card__frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 231, 192, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 206, 100, 0.12), transparent 120%),
    linear-gradient(180deg, rgba(255, 248, 238, 0.09), rgba(255, 248, 238, 0.04));
  box-shadow: 0 18px 32px rgba(15, 8, 7, 0.28);
  text-decoration: none;
}

.video-card__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.video-card__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 9, 8, 0.08), rgba(16, 9, 8, 0.18) 58%, rgba(16, 9, 8, 0.48)),
    radial-gradient(circle at center, rgba(16, 9, 8, 0.02), rgba(16, 9, 8, 0.3));
}

.video-card__frame:hover img,
.video-card__frame:focus-visible img {
  transform: scale(1.03);
  opacity: 0.96;
}

.video-card__play,
.video-card__cta {
  position: absolute;
  z-index: 1;
}

.video-card__play {
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 241, 215, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at top, rgba(255, 221, 155, 0.3), rgba(100, 54, 20, 0.72));
  box-shadow: 0 18px 28px rgba(14, 7, 6, 0.34);
  transform: translate(-50%, -50%);
}

.video-card__play::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 24px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid #fff4e4;
}

.video-card__cta {
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 233, 194, 0.16);
  border-radius: 999px;
  background: rgba(24, 14, 12, 0.72);
  color: #fff2da;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.video-card__label {
  padding: 0 6px;
  color: rgba(255, 235, 201, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 5, 4, 0.78);
  backdrop-filter: blur(10px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: grid;
  gap: 18px;
}

.video-modal__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.video-modal__back {
  min-width: 132px;
}

.video-modal__counter {
  color: #fff0d5;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-modal__viewer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.video-modal__nav {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 226, 172, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at top, rgba(255, 203, 104, 0.14), transparent 120%),
    linear-gradient(180deg, rgba(68, 42, 30, 0.78), rgba(27, 17, 14, 0.82));
  color: #fff6e8;
  box-shadow: 0 16px 28px rgba(16, 8, 7, 0.3);
  cursor: pointer;
}

.video-modal__nav span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.video-modal__player-shell {
  padding: 18px;
  border: 1px solid rgba(255, 228, 184, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 214, 132, 0.14), transparent 18rem),
    radial-gradient(circle at 84% 10%, rgba(255, 184, 74, 0.16), transparent 18rem),
    linear-gradient(160deg, rgba(58, 35, 28, 0.98), rgba(22, 14, 12, 0.99) 58%, rgba(13, 8, 8, 1));
  box-shadow: 0 28px 60px rgba(10, 5, 4, 0.34);
}

.video-modal__player {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #120c0a;
}

.video-modal__player img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-modal__player::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 9, 8, 0.08), rgba(16, 9, 8, 0.18) 58%, rgba(16, 9, 8, 0.48)),
    radial-gradient(circle at center, rgba(16, 9, 8, 0.02), rgba(16, 9, 8, 0.3));
}

.video-modal__play,
.video-modal__open {
  position: absolute;
  z-index: 1;
}

.video-modal__play {
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 241, 215, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at top, rgba(255, 221, 155, 0.32), rgba(100, 54, 20, 0.76));
  box-shadow: 0 18px 28px rgba(14, 7, 6, 0.34);
  transform: translate(-50%, -50%);
}

.video-modal__play::before {
  content: "";
  position: absolute;
  left: 37px;
  top: 28px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 22px solid #fff4e4;
}

.video-modal__open {
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 233, 194, 0.16);
  border-radius: 999px;
  background: rgba(24, 14, 12, 0.72);
  color: #fff2da;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.video-modal__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
}

.video-modal__meta h3 {
  color: #fff1da;
}

.video-modal__link {
  color: #f5d08c;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.video-modal-open {
  overflow: hidden;
}

.reviews-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 78vw);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-strip::-webkit-scrollbar {
  display: none;
}

.review-shot {
  position: relative;
  scroll-snap-align: start;
  padding: 12px;
  border: 1px solid rgba(213, 174, 109, 0.28);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 223, 168, 0.34), transparent 72%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 239, 225, 0.92));
  box-shadow:
    0 18px 32px rgba(66, 36, 18, 0.12),
    inset 0 0 0 1px rgba(255, 252, 245, 0.7);
}

.review-shot::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(221, 189, 130, 0.4);
  border-radius: 22px;
  pointer-events: none;
}

.review-shot img {
  width: 100%;
  aspect-ratio: 0.66;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.goar-profile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.goar-profile::after {
  display: none;
}

.goar-profile__visual,
.goar-profile__content {
  position: relative;
  z-index: 1;
}

.goar-profile__visual {
  position: relative;
  margin: 0;
  padding: 0;
}

.goar-profile__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  border: 1px solid rgba(205, 168, 120, 0.28);
  box-shadow: 0 18px 34px rgba(13, 7, 6, 0.16);
}

.goar-profile__content {
  display: grid;
  gap: 16px;
}

.goar-profile__content .section-heading {
  margin-bottom: 0;
}

.goar-profile__content h2,
.goar-profile__copy p,
.goar-profile__accent {
  color: #4b2b1d;
}

.goar-profile__content .section-text {
  color: var(--ink-soft);
}

.goar-profile__copy {
  display: grid;
  gap: 12px;
}

.goar-profile__copy p {
  color: var(--ink-soft);
  font-size: var(--type-body);
}

.goar-profile__accent {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 600;
  line-height: 1.04;
}

.final-cta__box {
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.final-cta__copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.final-cta__copy h2 {
  color: #fff3df;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.final-cta__start {
  color: rgba(255, 235, 201, 0.82);
  font-weight: 700;
}

.site-footer {
  padding: 0 0 32px;
}

.site-footer__inner {
  padding: 20px 0 0;
  border-top: 1px solid rgba(160, 122, 60, 0.16);
}

.site-footer__title {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.site-footer__text {
  max-width: 680px;
  color: var(--ink-soft);
}

.scroll-top-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 224, 172, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at top, rgba(255, 199, 91, 0.16), transparent 130%),
    linear-gradient(180deg, rgba(54, 34, 27, 0.92), rgba(24, 15, 13, 0.92));
  color: #fff6e8;
  box-shadow: 0 16px 28px rgba(23, 11, 9, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --section-space: 64px;
  }

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

  .audience-card--wide {
    grid-column: span 2;
  }

  .offer-layout {
    grid-template-columns: 1fr;
  }

  .abundance-map__grid {
    grid-template-columns: 1fr;
  }

  .abundance-map__stream {
    display: none;
  }

  .goar-profile {
    grid-template-columns: 1fr;
  }

  .goar-profile__visual {
    max-width: 380px;
    margin-inline: auto;
  }

  .about-cosmos__swirl {
    width: min(58vw, 460px);
    top: 42%;
  }

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

  .about-cosmos__item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }

  .about-cosmos__icon {
    width: 78px;
    min-height: 78px;
  }

  .about-cosmos__icon svg {
    width: 62px;
    height: 62px;
    stroke-width: 2.8;
  }

  .about-cosmos__copy h3 {
    font-size: 1.45rem;
  }

  .themes-journey__grid {
    grid-template-columns: 1fr;
  }

  .themes-column--result {
    padding-top: 0;
  }

  .themes-journey__divider {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --section-space: 52px;
    --type-h2: clamp(2.05rem, 9vw, 2.8rem);
    --type-h3: clamp(1.62rem, 7vw, 1.95rem);
    --type-h4: clamp(1.36rem, 5.8vw, 1.62rem);
    --type-body: 1.03rem;
    --type-body-lg: 1.07rem;
    --type-label: 0.86rem;
  }

  .shell {
    width: min(var(--shell), calc(100% - 18px));
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.5rem);
  }

  h2 {
    font-size: var(--type-h2);
    line-height: 0.98;
  }

  h3 {
    font-size: var(--type-h3);
  }

  h4 {
    font-size: var(--type-h4);
  }

  p,
  li {
    line-height: 1.42;
  }

  .hero {
    min-height: auto;
    padding: 26px 0 30px;
    background-position: 58% top;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(18, 10, 8, 0) 0%, rgba(18, 10, 8, 0.02) 28%, rgba(18, 10, 8, 0.16) 42%, rgba(18, 10, 8, 0.76) 62%, rgba(18, 10, 8, 0.96) 100%),
      linear-gradient(90deg, rgba(18, 10, 8, 0.26), rgba(18, 10, 8, 0.06) 56%, rgba(18, 10, 8, 0.34));
  }

  .hero__content {
    width: 100%;
    gap: 16px;
    padding-top: min(64svh, 500px);
  }

  .hero__subtitle,
  .hero__text,
  .section-text,
  .topic-card p,
  .result-card p,
  .audience-card p,
  .offer-list li {
    font-size: var(--type-body);
  }

  .button {
    min-height: 54px;
    font-size: 1rem;
    padding-inline: 24px;
  }

  .hero__meta {
    width: min(100%, 350px);
  }

  .hero__meta--floating {
    top: 16px;
    width: 100%;
    padding-inline: 14px;
  }

  .hero__actions,
  .final-cta__actions {
    display: grid;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section--soft .about-grid,
  .section--soft .offer-layout,
  .section--contrast .shell,
  .final-cta__box,
  .themes-journey,
  .goar-profile {
    padding: 20px;
    border-radius: 26px;
  }

  .topics-grid,
  .audience-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .audience-card--wide {
    grid-column: auto;
  }

  .topic-card,
  .audience-card,
  .result-card,
  .offer-card {
    padding: 18px;
  }

  .abundance-map__column {
    gap: 20px;
    padding-block: 28px;
    padding-inline: 18px;
  }

  .abundance-map__eyebrow {
    font-size: 2rem;
  }

  .abundance-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .abundance-item__icon {
    width: 72px;
    min-height: 72px;
  }

  .abundance-item__icon svg {
    width: 58px;
    height: 58px;
    stroke-width: 3;
  }

  .abundance-item__copy h3 {
    font-size: 1.38rem;
    line-height: 1.08;
  }

  .abundance-item__copy p {
    font-size: 1.03rem;
  }

  .about-cosmos {
    gap: 20px;
  }

  .about-cosmos__swirl {
    width: min(72vw, 320px);
    top: 36%;
    opacity: 0.5;
  }

  .about-cosmos__column {
    gap: 16px;
  }

  .about-cosmos__label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .about-cosmos__item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .about-cosmos__icon {
    width: 64px;
    min-height: 64px;
  }

  .about-cosmos__icon svg {
    width: 52px;
    height: 52px;
    stroke-width: 2.5;
  }

  .about-cosmos__copy h3 {
    font-size: 1.42rem;
    line-height: 1.06;
  }

  .about-cosmos__copy p {
    font-size: 0.98rem;
  }

  .themes-journey__heading {
    margin-bottom: 22px;
  }

  .themes-column {
    gap: 18px;
  }

  .themes-column__title,
  .themes-column--result .themes-column__title {
    max-width: none;
  }

  .theme-step {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .theme-step__icon {
    width: 80px;
    min-height: 72px;
  }

  .theme-step__icon svg {
    width: 68px;
    height: 68px;
    stroke-width: 3.2;
  }

  .theme-step__copy h4 {
    font-size: 1.32rem;
    line-height: 1.06;
  }

  .theme-step__copy p {
    font-size: 0.98rem;
  }

  .topic-card,
  .result-card {
    min-height: auto;
  }

  .offer-card__price {
    font-size: 3.6rem;
  }

  .video-testimonials {
    padding: 20px;
    border-radius: 26px;
  }

  .goar-profile::after {
    inset: 12px;
    border-radius: 20px;
  }

  .goar-profile__content {
    gap: 14px;
    text-align: center;
    justify-items: center;
  }

  .goar-profile__copy p {
    font-size: 0.99rem;
  }

  .video-testimonials__heading {
    margin-bottom: 18px;
  }

  .gallery-hint {
    margin-bottom: 12px;
  }

  .gallery-hint__text {
    font-size: 0.8rem;
  }

  .gallery-hint__button {
    width: 44px;
    height: 44px;
  }

  .video-gallery {
    grid-auto-columns: 84vw;
    gap: 12px;
  }

  .video-card__frame {
    border-radius: 24px;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal__viewer {
    grid-template-columns: 1fr;
  }

  .video-modal__topbar,
  .video-modal__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-modal__player-shell {
    padding: 12px;
    border-radius: 24px;
  }

  .video-modal__player {
    border-radius: 18px;
  }

  .video-modal__play {
    width: 68px;
    height: 68px;
  }

  .video-modal__play::before {
    left: 28px;
    top: 21px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .video-modal__open {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .video-modal__nav {
    position: absolute;
    bottom: 18px;
    z-index: 2;
    width: 48px;
    height: 48px;
  }

  .video-modal__nav--prev {
    left: 12px;
  }

  .video-modal__nav--next {
    right: 12px;
  }

  .video-card__play {
    width: 68px;
    height: 68px;
  }

  .video-card__play::before {
    left: 28px;
    top: 21px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .video-card__cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .reviews-strip {
    grid-auto-columns: 82vw;
    gap: 12px;
  }
}
