/* =========================================================
   DREAM BOY$ — Tier 3 Hardening Landing
   Brand identity: black bg · psychedelic swirl gradient
   (magenta · orange · yellow · teal · purple) · baby-mafia
   Framework: JEFÈ (corner ticks · marquee · mono labels · grain)
   ========================================================= */

:root {
  --bg: #050505;
  --bg-2: #0c0a0a;
  --ink: #f5efe6;            /* warm off-white text */
  --ink-soft: #d8d2c6;
  --ink-dim: #8a8278;
  --ink-mute: #5a544a;
  --line: rgba(245, 239, 230, 0.10);

  --c-magenta: #ff3aa0;
  --c-orange:  #ff7a1f;
  --c-yellow:  #ffd400;
  --c-teal:    #2ce6c7;
  --c-purple:  #a86bff;
  --c-red:     #ff3838;

  /* Hero psychedelic gradient — pulled from the logo swirl */
  --grad-psy: linear-gradient(
    100deg,
    #ff3aa0 0%,
    #ff7a1f 22%,
    #ffd400 42%,
    #2ce6c7 62%,
    #a86bff 82%,
    #ff3aa0 100%
  );

  --font-display: "Bungee", "Cabinet Grotesk", "Archivo", sans-serif;
  --font-headline: "Clash Display", "Bungee", system-ui, sans-serif;
  --font-body: "Archivo", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --pad-x: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 58, 160, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 0%, rgba(168, 107, 255, 0.10), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(44, 230, 199, 0.04), transparent 70%),
    linear-gradient(180deg, #0a0808 0%, #050404 100%);
  min-height: 100vh;
  position: relative;
}

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

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ink-dim);
  letter-spacing: 0.28em;
}

.dollar {
  background: var(--grad-psy);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-style: italic;
  padding: 0 0.05em;
}

.hl {
  background: var(--grad-psy);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad-text {
  background: var(--grad-psy);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: gradShift 12s linear infinite;
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---- film grain ---- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grainShift 1.6s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2%, 1%); }
  40%  { transform: translate(1%, -2%); }
  60%  { transform: translate(-1%, 2%); }
  80%  { transform: translate(2%, 1%); }
  100% { transform: translate(0, 0); }
}

/* ============= TOP NAV ============= */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px var(--pad-x);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topnav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.topnav__mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-psy);
  background-size: 200% 200%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 14px rgba(255, 58, 160, 0.45), inset 0 0 8px rgba(0, 0, 0, 0.4);
  animation: gradShift 10s linear infinite;
  flex-shrink: 0;
}
.topnav__wordmark {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.topnav__pills {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: "Cabinet Grotesk", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
button.pill { appearance: none; -webkit-appearance: none; }
.pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}
.pill--active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.pill--active:hover { background: var(--ink); border-color: var(--ink); }

@media (max-width: 640px) {
  .topnav { padding: 10px 14px; }
  .topnav__mark { width: 24px; height: 24px; }
  .topnav__wordmark { font-size: 10px; letter-spacing: 0.04em; }
  .topnav__pills { gap: 4px; }
  .pill { padding: 7px 9px; font-size: 9px; letter-spacing: 0.04em; }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: clamp(32px, 5vw, 64px) var(--pad-x) clamp(48px, 8vw, 96px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.tick {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--ink-mute);
  z-index: 2;
}
.tick--tl { top: 18px;    left: 18px;    border-right: none; border-bottom: none; }
.tick--tr { top: 18px;    right: 18px;   border-left: none;  border-bottom: none; }
.tick--bl { bottom: 18px; left: 18px;    border-right: none; border-top: none;    }
.tick--br { bottom: 18px; right: 18px;   border-left: none;  border-top: none;    }

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 32px;
  padding: 0 8px;
}
.hero__meta .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-magenta);
  margin-right: 8px;
  box-shadow: 0 0 12px var(--c-magenta);
  animation: blink 1.4s infinite;
  vertical-align: middle;
}
@keyframes blink {
  0%, 60%, 100% { opacity: 1; }
  61%, 99% { opacity: 0.2; }
}

/* DREAM BOY$ logo hero — official 1024×1024 mark with halo */
.hero__logo-wrap {
  position: relative;
  margin: 0 auto;
  width: clamp(300px, 56vw, 680px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__halo {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background: var(--grad-psy);
  background-size: 250% 250%;
  filter: blur(70px);
  opacity: 0.5;
  border-radius: 50%;
  animation: haloShift 14s ease-in-out infinite;
  pointer-events: none;
}
.hero__logo-pic {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.hero__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 60px rgba(255, 58, 160, 0.18));
  animation: logoFloat 6s ease-in-out infinite;
  border-radius: 12px;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero__wordmark--fallback { display: none; }
.hero__logo-wrap--fallback .hero__logo-pic { display: none; }
.hero__logo-wrap--fallback .hero__wordmark--fallback {
  display: block;
  position: absolute;
  z-index: 2;
}
@keyframes haloShift {
  0%, 100% { background-position: 0% 50%; transform: scale(0.95); }
  50%      { background-position: 100% 50%; transform: scale(1.05); }
}

.hero__wordmark {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400; /* Bungee is single weight */
  line-height: 0.92;
  letter-spacing: 0.04em;
  font-size: clamp(64px, 13.5vw, 200px);
  text-align: center;
  color: var(--ink);
  white-space: nowrap;
  background: var(--grad-psy);
  background-size: 220% 220%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(255, 58, 160, 0.35))
          drop-shadow(0 0 80px rgba(168, 107, 255, 0.25));
  animation: gradShift 14s linear infinite, wordmarkFloat 6s ease-in-out infinite;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
}
.hero__wordmark-line { display: block; }
.hero__wordmark-line--two {
  margin-top: clamp(-8px, -1vw, -4px);
}
.hero__wordmark-dollar {
  display: inline-block;
  font-family: "Clash Display", "Cabinet Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-style: italic;
  margin-left: 0.08em;
}
@keyframes wordmarkFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* hero CTA */
.hero__cta {
  margin: clamp(24px, 4vw, 48px) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 700px;
}

/* gradient pill button — chunky like the wordmark in the logo */
.grad-pill {
  position: relative;
  display: inline-block;
  padding: 3px;
  border-radius: 999px;
  background: var(--grad-psy);
  background-size: 200% 200%;
  box-shadow: 0 10px 32px rgba(255, 58, 160, 0.25), 0 4px 14px rgba(168, 107, 255, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: gradShift 10s linear infinite;
}
.grad-pill__inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease;
}
.grad-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255, 58, 160, 0.35), 0 8px 22px rgba(168, 107, 255, 0.3);
}
.grad-pill:hover .grad-pill__inner {
  background: transparent;
  color: var(--bg);
}
.grad-pill__arrow {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.1em;
}

.hero__sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.55;
  max-width: 560px;
}

.hero__strap {
  margin-top: clamp(36px, 5vw, 64px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-dim);
}

/* ============= TAPE / MARQUEE ============= */
.tape {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  border-block: 1px solid var(--ink);
  overflow: hidden;
  z-index: 5;
}
.tape__track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.tape__sep {
  background: var(--grad-psy);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.85em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============= INTRO ============= */
.intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--pad-x) clamp(40px, 6vw, 64px);
  text-align: left;
}

.section-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ink);
}

.lede {
  margin: 0;
  max-width: 720px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============= ROADMAP — STEP BY STEP ============= */
.roadmap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(80px, 12vw, 140px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
}

.step {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  transition: transform 0.22s cubic-bezier(.16,1,.3,1), border-color 0.22s ease, background 0.22s ease;
  overflow: hidden;
}
.step::before {
  /* accent bar tinted by the step's --accent */
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent, var(--c-magenta));
  box-shadow: 0 0 24px var(--accent, var(--c-magenta));
}
.step:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.20);
}

.step__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: clamp(16px, 3vw, 28px);
  margin-bottom: 18px;
}

.step__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--accent, var(--c-magenta));
  letter-spacing: 0;
  text-shadow: 0 0 28px color-mix(in srgb, var(--accent, var(--c-magenta)) 50%, transparent);
}

.step__heads { padding-top: 6px; }

.step__title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}

.step__role {
  margin: 0;
  color: var(--ink-dim);
  letter-spacing: 0.18em;
}

.step__price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 4px;
  white-space: nowrap;
}
.step__cost {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  color: var(--bg);
  background: var(--accent, var(--c-magenta));
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent, var(--c-magenta)) 40%, transparent);
}
.step__per {
  margin-top: 10px;
  color: var(--ink-dim);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.step__body {
  margin: 0 0 18px;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 760px;
}

.step__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.step__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.5;
  color: var(--ink-soft);
}
.step__bullets li::before {
  content: "▸";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent, var(--c-magenta));
  font-weight: 700;
}

@media (max-width: 760px) {
  .step__head {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num heads"
      "price price";
  }
  .step__num { grid-area: num; font-size: 48px; }
  .step__heads { grid-area: heads; }
  .step__price {
    grid-area: price;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    align-self: start;
  }
  .step__per { margin-top: 0; }
  .step__bullets { grid-template-columns: 1fr; }
}

/* ============= TOTALS ============= */
.totals {
  position: relative;
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 58, 160, 0.18), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(168, 107, 255, 0.14), transparent 55%),
    var(--bg);
  border-block: 1px solid var(--line);
}

.totals__grid {
  margin: clamp(40px, 6vw, 64px) auto 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.totals__card {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  text-align: left;
  overflow: hidden;
}
.totals__card--accent {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad-psy) border-box;
  background-size: 100% 100%, 250% 250%;
  animation: gradBorder 14s ease-in-out infinite;
}
@keyframes gradBorder {
  0%, 100% { background-position: 0% 0%, 0% 50%; }
  50%      { background-position: 0% 0%, 100% 50%; }
}
.totals__card--accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-psy);
  opacity: 0.08;
  pointer-events: none;
}

.totals__label {
  margin: 0 0 18px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  position: relative;
  z-index: 1;
}

.totals__monthly {
  margin: 0 0 8px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.totals__card--accent .totals__monthly {
  background: var(--grad-psy);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.totals__per {
  font-size: 0.32em;
  font-weight: 600;
  color: var(--ink-dim);
  margin-left: 4px;
  -webkit-text-fill-color: var(--ink-dim);
}

.totals__annual {
  margin: 0;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  position: relative;
  z-index: 1;
}

.totals__note {
  margin: clamp(40px, 5vw, 56px) auto 0;
  max-width: 1100px;
  text-align: left;
  line-height: 1.9;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
}

@media (max-width: 760px) {
  .totals__grid { grid-template-columns: 1fr; }
}

/* ============= ACCESS / TALLY CTA ============= */
.access {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

.access .section-title { margin-bottom: 24px; }
.access .lede { margin-bottom: clamp(40px, 5vw, 56px); }

.tally-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.tally-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 44px;
  background: var(--grad-psy);
  background-size: 250% 250%;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 16px 48px rgba(255, 58, 160, 0.30), 0 8px 22px rgba(168, 107, 255, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: gradBorder 12s ease-in-out infinite;
}
.tally-cta:hover,
.tally-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(255, 58, 160, 0.40), 0 12px 28px rgba(168, 107, 255, 0.34);
  outline: none;
}
.tally-cta:active {
  transform: translateY(1px);
  box-shadow: 0 8px 24px rgba(255, 58, 160, 0.30), 0 4px 12px rgba(168, 107, 255, 0.20);
}
.tally-cta__arrow {
  font-family: var(--font-body);
  font-weight: 900;
}
.tally-cta__hint {
  margin: 0;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}

/* ============= FOOTER ============= */
.footer {
  background: #000;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(32px, 5vw, 48px) var(--pad-x);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.04em;
  color: var(--ink);
}
.footer__top .mono { color: var(--ink-mute); }

.footer__bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink-mute);
  font-size: 10px;
  letter-spacing: 0.3em;
}

/* ============= RESPONSIVE TIDY ============= */
@media (max-width: 760px) {
  .hero { padding-top: 24px; }
  .hero__meta { font-size: 9px; margin-bottom: 20px; }
  .hero__meta span:last-child { display: none; }
  .hero__logo-wrap { width: clamp(260px, 82vw, 480px); }
  .totals__monthly { font-size: clamp(52px, 14vw, 80px); }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .tape__track, .hero__meta .dot,
  .grad-text, .grad-pill, .totals__card--accent,
  .hero__halo, .hero__wordmark, .topnav__mark,
  .tally-cta { animation: none !important; }
}

/* ============= $OUNDSCAPE — Spotify embed panel ============= */
.soundscape {
  padding: 0 var(--pad-x) clamp(48px, 8vw, 96px);
  display: flex;
  justify-content: center;
}
.soundscape__frame {
  width: 100%;
  max-width: 720px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #0a0a0a;
  box-shadow:
    0 0 0 1px rgba(255, 58, 160, 0.10),
    0 30px 80px rgba(168, 107, 255, 0.18);
  display: block;
}
