:root {
  color-scheme: dark;
  background: #050814;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background:
    radial-gradient(circle at 78% 4%, rgba(78, 51, 116, 0.18), transparent 28rem),
    #050814;
  color: #d8d7dd;
}

.page {
  width: min(100% - 3rem, 82rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 4rem) 0 clamp(4rem, 8vw, 8rem);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #c7bfd6;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.back-link::before {
  content: "←";
  font-size: 1rem;
}

.back-link:hover,
.back-link:focus-visible {
  color: #f0eaff;
}

.page-header {
  max-width: 44rem;
  padding: clamp(4rem, 11vw, 9rem) 0 clamp(3.5rem, 8vw, 6rem);
}

.page-title {
  margin: 0;
  color: #f0edf3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 9vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.page-intro {
  max-width: 33rem;
  margin: 2rem 0 0;
  color: #aaa8b0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(16rem, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.video-space {
  position: relative;
  width: min(100%, 28rem);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(83, 59, 120, 0.24), rgba(7, 12, 28, 0.08));
  box-shadow: inset 0 0 0 1px rgba(192, 171, 224, 0.16);
}

.video-space::after {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(205, 188, 235, 0.12);
  content: "";
  pointer-events: none;
}

.video-placeholder {
  position: absolute;
  right: 1.8rem;
  bottom: 1.7rem;
  margin: 0;
  color: rgba(232, 225, 242, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

.editorial-space {
  max-width: 33rem;
  padding-top: clamp(0rem, 7vw, 5rem);
}

.section-label {
  margin: 0 0 1.2rem;
  color: #a38abf;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-placeholder {
  margin: 0;
  color: #85838d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.36;
}

@media (max-width: 44rem) {
  .page {
    width: min(100% - 2.5rem, 82rem);
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .video-space {
    width: min(100%, 25rem);
  }

  .editorial-space {
    padding-top: 0;
  }
}
