/* ==========================================================================
   STAR LABS Entertainment — v2 "Weltensprung"
   One fixed code-driven universe behind a free-scrolling journey.
   ========================================================================== */

/* ---- Fonts (self-hosted, GDPR-safe) ------------------------------------ */

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cinzel-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin-600.woff2') format('woff2');
}

/* ---- Tokens -------------------------------------------------------------- */

:root {
  --space-0: #04050c;
  --space-1: #0a0e1e;
  --star-gold: #e8c98a;
  --star-gold-bright: #f6e2b8;
  --text: #eef1fa;
  --text-dim: #9aa3bd;
  --line: rgba(238, 241, 250, 0.14);
  --glass: rgba(16, 20, 38, 0.55);
  --accent: var(--star-gold);
  --accent-soft: rgba(232, 201, 138, 0.16);

  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --shell-pad-x: clamp(1.25rem, 5vw, 4.5rem);
  --shell-max: 74rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Base ----------------------------------------------------------------- */

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

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

body {
  margin: 0;
  background: var(--space-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

::selection {
  background: rgba(232, 201, 138, 0.32);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--star-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--space-1);
  color: var(--text);
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ---- Universe (fixed backdrop) -------------------------------------------- */

.universe {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% -10%, var(--space-1) 0%, var(--space-0) 62%),
    var(--space-0);
  overflow: hidden;
}

.universe__nebula {
  position: absolute;
  inset: -12%;
  opacity: 0;
  transition: opacity 1600ms ease;
  will-change: opacity;
}
.universe__nebula.is-active {
  opacity: 1;
}

.universe__stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1200ms ease 200ms;
}
html[data-page-ready="true"] .universe__stars {
  opacity: 1;
}

/* faint film grain via repeating gradient — keeps flat gradients from banding */
.universe__grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-conic-gradient(rgba(255, 255, 255, 0.08) 0% 0.0001%, transparent 0.0002% 0.05%);
  background-size: 157px 157px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ---- Header ---------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--shell-pad-x);
  transition: background 400ms ease, box-shadow 400ms ease, backdrop-filter 400ms ease;
}
.site-header.is-scrolled {
  background: rgba(6, 8, 18, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(238, 241, 250, 0.08);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}
.brand-lockup__primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--star-gold-bright);
}
.brand-lockup__secondary {
  font-size: 0.58rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.site-nav {
  display: flex;
  gap: 1.75rem;
}
.site-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  transition: color 250ms ease;
}
.site-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.language-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
}
.language-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.66rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease;
}
.language-toggle button[aria-pressed="true"] {
  background: rgba(238, 241, 250, 0.12);
  color: var(--text);
}

/* ---- Buttons ----------------------------------------------------------------- */

.primary-button,
.ghost-button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.78rem 1.7rem;
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease, background 300ms ease, border-color 300ms ease, color 300ms ease;
  will-change: transform;
}

.primary-button {
  color: #191305;
  background: linear-gradient(135deg, var(--star-gold-bright), var(--star-gold) 55%, #caa25e);
  box-shadow: 0 8px 30px -10px rgba(232, 201, 138, 0.55);
}
.primary-button:hover {
  box-shadow: 0 12px 40px -10px rgba(232, 201, 138, 0.75);
}

.ghost-button {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(238, 241, 250, 0.04);
}
.ghost-button:hover {
  border-color: color-mix(in srgb, var(--accent) 65%, transparent);
  background: var(--accent-soft);
}

.header-cta {
  padding: 0.5rem 1.15rem;
  font-size: 0.8rem;
  color: #191305;
  background: linear-gradient(135deg, var(--star-gold-bright), var(--star-gold));
}

/* ---- Shell / sections ------------------------------------------------------ */

.section-shell {
  position: relative;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding: clamp(5rem, 14vh, 9rem) var(--shell-pad-x);
}

.section-kicker {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 85%, white 10%);
  margin-bottom: 1.1rem;
}

.section-intro {
  max-width: 46rem;
}
.section-intro h2 {
  font-size: clamp(1.5rem, 1rem + 2.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.section-intro p:not(.section-kicker) {
  margin-top: 1.1rem;
  color: var(--text-dim);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.12rem);
  max-width: 38rem;
}

/* ---- Hero ---------------------------------------------------------------------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 7rem;
}

.hero__kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: hero-fade 900ms var(--ease-out) 150ms both;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.7rem, 2vh, 1.2rem);
  margin-top: 1.6rem;
  font-weight: 700;
}
.hero__title-main {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1rem + 9vw, 6.5rem);
  line-height: 1.04;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(160deg, #fdf4dd 15%, var(--star-gold) 48%, #a3781f 82%, var(--star-gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 34px rgba(232, 201, 138, 0.28));
  animation: hero-title 1300ms var(--ease-out) 250ms both;
}
.hero__title-rule {
  width: clamp(9rem, 34vw, 22rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--star-gold) 22%, var(--star-gold-bright) 50%, var(--star-gold) 78%, transparent);
  animation: hero-rule 1200ms var(--ease-out) 650ms both;
}
.hero__title-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(0.72rem, 0.5rem + 1.1vw, 1.05rem);
  letter-spacing: clamp(0.42em, 0.3em + 0.5vw, 0.72em);
  text-indent: clamp(0.42em, 0.3em + 0.5vw, 0.72em); /* recenters tracked caps */
  text-transform: uppercase;
  color: var(--star-gold-bright);
  animation: hero-fade 900ms var(--ease-out) 800ms both;
}

.hero__thesis {
  margin-top: 2.1rem;
  max-width: 36rem;
  color: var(--text-dim);
  font-size: clamp(1rem, 0.94rem + 0.4vw, 1.16rem);
  text-wrap: balance;
  animation: hero-fade 900ms var(--ease-out) 1000ms both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.4rem;
  animation: hero-fade 900ms var(--ease-out) 1150ms both;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1.2rem, 4vh, 2.6rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  animation: hero-fade 900ms var(--ease-out) 1500ms both;
}
.scroll-cue__line {
  width: 1px;
  height: 2.6rem;
  background: linear-gradient(var(--star-gold), transparent);
  animation: cue-drop 2200ms ease-in-out infinite;
  transform-origin: top;
}

@keyframes hero-fade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-title {
  from { opacity: 0; transform: translateY(18px) scale(0.985); letter-spacing: 0.3em; }
  to   { opacity: 1; transform: none; letter-spacing: 0.14em; }
}
@keyframes hero-rule {
  from { opacity: 0; transform: scaleX(0.15); }
  to   { opacity: 1; transform: none; }
}
@keyframes cue-drop {
  0%, 100% { transform: scaleY(0.35); opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ---- Worlds ---------------------------------------------------------------------- */

.world {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.world--orb-left {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}
.world--orb-left .world__copy { order: 2; }
.world--orb-left .world__visual { order: 1; }

.world__index {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.world__numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: color-mix(in srgb, var(--world-accent, var(--star-gold)) 90%, white 10%);
}
.world__numeral::after {
  content: '';
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  margin-left: 0.9rem;
  vertical-align: 0.32em;
  background: color-mix(in srgb, var(--world-accent, var(--star-gold)) 55%, transparent);
}
.world__category {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.world__title {
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  hyphens: auto;
  text-wrap: balance;
}

.world__summary {
  margin-top: 1.2rem;
  max-width: 34rem;
  color: var(--text-dim);
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.15rem);
}

.world__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.world__chips li {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--text) 82%, var(--world-accent, var(--star-gold)) 18%);
  border: 1px solid color-mix(in srgb, var(--world-accent, var(--star-gold)) 32%, transparent);
  background: color-mix(in srgb, var(--world-accent, var(--star-gold)) 9%, transparent);
  border-radius: 999px;
  padding: 0.32rem 0.78rem;
  white-space: nowrap;
}

.world__cta {
  margin-top: 2rem;
}
.world .ghost-button:hover {
  border-color: color-mix(in srgb, var(--world-accent, var(--star-gold)) 70%, transparent);
  background: color-mix(in srgb, var(--world-accent, var(--star-gold)) 13%, transparent);
}

/* orb visual */

.world__visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 100%;
  max-width: min(30rem, 100%);
  margin-inline: auto;
}

.world__glow,
.world__ring,
.world__portal {
  display: block;
}

.world__glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, color-mix(in srgb, var(--world-accent, var(--star-gold)) 34%, transparent), transparent 66%);
  filter: blur(18px);
}

.world__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--world-accent, var(--star-gold)) 30%, transparent);
}
.world__ring--far {
  inset: -3%;
  transform: rotate(-14deg) scaleY(0.94);
  border-style: dashed;
  opacity: 0.4;
  animation: ring-spin 90s linear infinite;
}
.world__ring--near {
  inset: 5%;
  opacity: 0.65;
  box-shadow:
    inset 0 0 40px -18px color-mix(in srgb, var(--world-accent, var(--star-gold)) 55%, transparent),
    0 0 60px -30px color-mix(in srgb, var(--world-accent, var(--star-gold)) 80%, transparent);
}
@keyframes ring-spin {
  to { transform: rotate(346deg) scaleY(0.94); }
}

.world__logo {
  position: relative;
  width: 58%;
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.55));
}
.world--cover .world__logo {
  width: 62%;
  border-radius: 1.4rem;
  box-shadow:
    0 24px 70px -22px color-mix(in srgb, var(--world-accent, var(--star-gold)) 60%, black 20%),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}
.world--badge .world__logo {
  width: 56%;
  border-radius: 50%;
  background: #fff;
  padding: 6%;
  box-shadow:
    0 24px 70px -24px color-mix(in srgb, var(--world-accent, var(--star-gold)) 70%, black 15%),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

.world__portal {
  position: relative;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.22), transparent 42%),
    radial-gradient(circle at 62% 68%, color-mix(in srgb, var(--world-accent, #b7a4f5) 55%, transparent), transparent 70%),
    radial-gradient(circle, rgba(12, 14, 30, 0.9), rgba(12, 14, 30, 0.55));
  box-shadow:
    inset 0 0 60px -18px color-mix(in srgb, var(--world-accent, #b7a4f5) 75%, transparent),
    0 0 90px -30px color-mix(in srgb, var(--world-accent, #b7a4f5) 85%, transparent);
  animation: portal-breathe 5.5s ease-in-out infinite;
}
@keyframes portal-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.045); }
}

/* ---- Constellation (services) ------------------------------------------------ */

.constellation {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.2rem;
}

.constellation__lines {
  position: absolute;
  inset: -4% -2%;
  width: 104%;
  height: 108%;
  pointer-events: none;
}
.constellation__lines path {
  fill: none;
  stroke: color-mix(in srgb, var(--star-gold) 22%, transparent);
  stroke-width: 0.18;
  stroke-dasharray: 2 1.2;
}

.glass-panel {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.constellation__node {
  position: relative;
  padding: 1.5rem 1.4rem 1.4rem;
  transition: transform 350ms var(--ease-out), border-color 350ms ease, box-shadow 350ms ease;
}
.constellation__node::before {
  content: '';
  position: absolute;
  top: 1.55rem;
  right: 1.4rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--star-gold);
  box-shadow: 0 0 12px 2px rgba(232, 201, 138, 0.55);
}
.constellation__node:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 201, 138, 0.45);
  box-shadow: 0 18px 50px -24px rgba(232, 201, 138, 0.4);
}
.constellation__node h3 {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  padding-right: 1.4rem;
  hyphens: auto;
}

/* ---- Contact -------------------------------------------------------------------- */

.homepage-contact__inner {
  padding: clamp(1.8rem, 5vw, 3.5rem);
}
.homepage-contact__title {
  font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 30ch;
  text-wrap: balance;
}
.homepage-contact__text {
  margin-top: 1rem;
  color: var(--text-dim);
  max-width: 38rem;
}
.homepage-contact__forms {
  margin-top: 2.2rem;
}

/* FluentForm, dressed for deep space */
.homepage-contact .ff-el-form-control,
.homepage-contact textarea.ff-el-form-control {
  background: rgba(238, 241, 250, 0.05);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  color: var(--text);
  transition: border-color 250ms ease, background 250ms ease;
}
.homepage-contact .ff-el-form-control:focus {
  background: rgba(238, 241, 250, 0.08);
  border-color: rgba(232, 201, 138, 0.6);
  box-shadow: none;
  outline: none;
}
.homepage-contact .ff-el-input--label label {
  color: var(--text);
  font-weight: 500;
}
.homepage-contact .ff-btn-submit:not(.ff_btn_no_style) {
  background: linear-gradient(135deg, var(--star-gold-bright), var(--star-gold) 55%, #caa25e) !important;
  color: #191305 !important;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.8rem 1.9rem;
  box-shadow: 0 8px 30px -10px rgba(232, 201, 138, 0.55);
}
.contact-form-fallback {
  color: var(--text-dim);
}

/* ---- Footer ---------------------------------------------------------------------- */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding: 2.4rem var(--shell-pad-x) 3rem;
  border-top: 1px solid rgba(238, 241, 250, 0.08);
  color: var(--text-dim);
  font-size: 0.86rem;
}
.site-footer__copy p {
  margin: 0 0 0.2rem;
  color: var(--text);
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.site-footer__links a {
  text-decoration: none;
  color: var(--text-dim);
  transition: color 250ms ease;
}
.site-footer__links a:hover {
  color: var(--text);
}

/* ---- Inner pages (imprint / privacy) ---------------------------------------------- */

.page-content {
  max-width: 46rem;
  margin-inline: auto;
  padding: 9rem var(--shell-pad-x) 4rem;
}
.page-article__header h1 {
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.page-article__body {
  color: var(--text-dim);
}
.page-article__body a {
  color: var(--star-gold-bright);
}

/* ---- Reveal system ------------------------------------------------------------------ */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 900ms var(--ease-out) calc(var(--d, 0) * 90ms),
    transform 900ms var(--ease-out) calc(var(--d, 0) * 90ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---- Responsive ---------------------------------------------------------------------- */

@media (max-width: 980px) {
  .constellation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .constellation__lines {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .world,
  .world--orb-left {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 1.4rem;
  }
  .world--orb-left .world__copy { order: 2; }
  .world--orb-left .world__visual,
  .world .world__visual {
    order: 0;
    max-width: min(58vw, 17rem);
    margin-inline: 0;
  }
  .world__copy {
    order: 1;
  }
  .world__title {
    overflow-wrap: break-word;
  }
  .section-shell {
    padding-block: clamp(3.2rem, 9vh, 5rem);
  }
}

@media (max-width: 560px) {
  .header-cta {
    display: none;
  }
  .hero {
    padding-top: 5.5rem;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
  }
  .hero__actions a {
    width: 100%;
  }
  .constellation {
    grid-template-columns: minmax(0, 1fr);
  }
  .world__chips li {
    white-space: normal;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- Reduced motion -------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__kicker,
  .hero__title-main,
  .hero__title-rule,
  .hero__title-sub,
  .hero__thesis,
  .hero__actions,
  .scroll-cue {
    animation: none;
  }
  .scroll-cue__line,
  .world__ring--far,
  .world__portal {
    animation: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .universe__nebula {
    transition: none;
  }
  .universe__stars {
    transition: none;
  }
}
