:root {
  --bg: #08101d;
  --bg-soft: #0d1729;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.11);
  --text: #f8fbff;
  --muted: rgba(228, 236, 247, 0.74);
  --soft: rgba(191, 206, 228, 0.74);
  --line: rgba(255, 255, 255, 0.08);
  --accent: #92d9ff;
  --accent-strong: #dfeaff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 211, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(200, 16, 46, 0.14), transparent 25%),
    linear-gradient(180deg, #07101d 0%, #09111f 45%, #0d1729 100%);
}

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

a {
  color: inherit;
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.atmosphere__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.25;
}

.atmosphere__orb--cyan {
  top: 24px;
  right: 8%;
  width: 360px;
  height: 360px;
  background: rgba(47, 211, 255, 0.22);
}

.atmosphere__orb--crimson {
  bottom: -60px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: rgba(200, 16, 46, 0.18);
}

.atmosphere__orb--gold {
  top: 38%;
  left: 48%;
  width: 220px;
  height: 220px;
  background: rgba(255, 210, 122, 0.12);
}

.atmosphere__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
}

.site-header,
main,
.site-footer {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 0;
}

.site-brand {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(233, 240, 250, 0.8);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 40px;
  align-items: center;
  min-height: min(92vh, 920px);
  padding: 48px 0 32px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(163, 201, 255, 0.76);
}

h1,
h2,
h3,
.hero-stack__meta strong {
  margin: 0;
  font-family: "Fraunces", serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 9vw, 7.3rem);
  line-height: 0.9;
  color: #f7fbff;
}

.hero__lede,
.section-head p,
.feature__summary,
.approach__grid p,
.future p,
.site-footer p {
  color: rgba(233, 240, 250, 0.8);
  line-height: 1.72;
}

.hero__lede {
  max-width: 38rem;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.hero__actions,
.future__actions,
.feature__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, #e6efff, #99ddff);
  color: #08101d;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(222, 232, 246, 0.86);
}

.hero-stack {
  position: relative;
  min-height: 540px;
}

.hero-stack__card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.hero-stack__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stack__card--front {
  inset: 10% 2% 6% 16%;
  z-index: 3;
}

.hero-stack__card--left {
  inset: 0 44% 28% 0;
  z-index: 1;
  transform: rotate(-8deg);
}

.hero-stack__card--right {
  inset: 22% 0 0 50%;
  z-index: 2;
  transform: rotate(8deg);
}

.hero-stack__meta {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(8, 16, 29, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stack__meta span {
  color: var(--soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.studio-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(8, 16, 29, 0.8);
  box-shadow: var(--shadow);
}

.studio-strip__label,
.feature__kicker,
.feature__meta dt,
.approach__index {
  display: block;
  margin-bottom: 6px;
  color: rgba(163, 201, 255, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-strip strong {
  color: #f5f9ff;
}

.lineup,
.emerging,
.approach,
.future {
  padding: 110px 0 0;
}

.section-head {
  max-width: 46rem;
  margin-bottom: 40px;
}

.section-head h2,
.future h2 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 0.94;
}

.feature {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.feature--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}

.feature--reverse .feature__art {
  order: 2;
}

.feature--reverse .feature__copy {
  order: 1;
}

.feature__art {
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.feature__copy h3 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.feature__summary {
  margin: 18px 0 0;
  max-width: 38rem;
  font-size: 1.04rem;
}

.feature__list {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--text);
  display: grid;
  gap: 10px;
}

.feature__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 0;
}

.feature__actions {
  margin-top: 24px;
}

.emerging-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.emerging-card {
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(8, 16, 29, 0.8);
  box-shadow: var(--shadow);
}

.emerging-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.emerging-card__body {
  padding: 20px 20px 24px;
}

.emerging-card__body h3 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 0.96;
}

.emerging-card__body p:last-of-type {
  color: rgba(233, 240, 250, 0.8);
  line-height: 1.72;
}

.feature__meta div,
.approach__grid article {
  padding: 18px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
}

.feature__meta dd {
  margin: 0;
  font-size: 1rem;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.approach__grid h3 {
  font-size: 1.6rem;
}

.future {
  padding-bottom: 110px;
}

.future p {
  max-width: 42rem;
  margin: 18px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
}

body.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.has-motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .feature,
  .feature--reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-stack {
    min-height: 420px;
  }

  .hero-stack__card--front {
    inset: 12% 4% 6% 12%;
  }

  .feature--reverse .feature__art,
  .feature--reverse .feature__copy {
    order: initial;
  }

  .studio-strip,
  .emerging-grid,
  .approach__grid,
  .feature__meta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 720px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 1240px);
  }

  .site-header {
    padding-top: 18px;
  }

  .site-nav {
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
    max-width: 8ch;
  }

  .hero__actions,
  .future__actions,
  .feature__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stack {
    min-height: 300px;
  }

  .hero-stack__card--front {
    inset: 4% 2% 0 8%;
  }

  .hero-stack__card--left {
    inset: 0 48% 24% -2%;
  }

  .hero-stack__card--right {
    inset: 18% -1% 0 54%;
  }
}
