@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Fredoka:wght@600;700&display=swap");


:root {
  --bg: #070707;
  --bg-2: #0d0d0d;
  --panel: #111111;
  --panel-2: #171717;
  --ink: #f7f4ee;
  --muted: #a6a09a;
  --orange: #ff8a1f;
  --orange-hot: #ffa13e;
  --orange-deep: #d76000;
  --blue: #4f9cff;
  --purple: #9a66ff;
  --green: #5bd36c;
  --line: rgba(255,255,255,.09);
  --glass: rgba(20,20,20,.72);
  --shadow: 0 28px 80px rgba(0,0,0,.48);
  --round: 30px;
}


* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(255,138,31,.18), transparent 28rem),
    radial-gradient(circle at 95% 20%, rgba(79,156,255,.11), transparent 30rem),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a { color: inherit; }

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(95px);
  opacity: .16;
  z-index: -1;
  pointer-events: none;
}
.ambient-one {
  width: 420px; height: 420px;
  background: var(--orange);
  left: -220px; top: 30vh;
}
.ambient-two {
  width: 360px; height: 360px;
  background: var(--blue);
  right: -190px; top: 65vh;
}

.site-header {
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(14,14,14,.72);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(0,0,0,.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  width: fit-content;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.brand span { letter-spacing: -.02em; }

.nav {
  display: flex;
  gap: 5px;
  padding: 4px;
}
.nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: #b7b0a9;
  padding: 10px 13px;
  border-radius: 12px;
  transition: .2s ease;
}
.nav a:hover {
  background: rgba(255,255,255,.07);
  color: white;
}
.site-header > .pill { justify-self: end; }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pill:hover { transform: translateY(-2px) scale(1.015); }
.pill-small {
  background: #f2eee8;
  color: #111;
  padding: 11px 16px;
  font-size: 14px;
}
.pill-primary {
  color: #18100a;
  background: linear-gradient(180deg, var(--orange-hot), var(--orange));
  box-shadow: 0 14px 34px rgba(255,138,31,.25);
}
.pill-primary:hover { box-shadow: 0 18px 44px rgba(255,138,31,.34); }
.pill-glass {
  color: white;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
}
.pill-glass:hover { background: rgba(255,255,255,.11); }
.pill-white { background: #f7f4ee; color: #111; }
.pill-white:hover { box-shadow: 0 14px 35px rgba(0,0,0,.36); }

.hero {
  width: min(1180px, calc(100% - 34px));
  min-height: 780px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: 54px;
}

.eyebrow, .kicker {
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-hot);
}

.hero h1 {
  margin: 16px 0 22px;
  max-width: 690px;
  font-family: "Fredoka", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(66px, 7.4vw, 108px);
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero h1 span {
  color: var(--orange);
  text-shadow: 0 10px 38px rgba(255,138,31,.12);
}

.hero-sub {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8d8781;
  font-size: 14px;
  font-weight: 700;
}
.dot {
  width: 9px; height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(91,211,108,.11);
}

.hero-art { perspective: 1200px; }
.hero-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30,30,30,.88), rgba(16,16,16,.94));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  transition: transform .35s ease, border-color .3s ease;
}
.hero-card:hover {
  transform: rotate(0deg) translateY(-5px);
  border-color: rgba(255,138,31,.32);
}
.hero-banner {
  width: 100%;
  aspect-ratio: 1024 / 310;
  object-fit: cover;
  display: block;
  min-height: 310px;
  filter: saturate(1.07) contrast(1.03);
}
.hero-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px;
}
.mini-brand { display: flex; gap: 12px; align-items: center; }
.mini-brand img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: 15px;
}
.mini-brand div { display: grid; gap: 2px; }
.mini-brand strong { font-size: 17px; }
.mini-brand span { color: var(--muted); font-size: 13px; }
.status {
  background: rgba(255,138,31,.12);
  color: #ffb36e;
  border: 1px solid rgba(255,138,31,.18);
  font-size: 12px;
  font-weight: 900;
  padding: 9px 12px;
  border-radius: 999px;
}

.ticker {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 16px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #6f6a65;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
}

.section {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-soft {
  padding-inline: 40px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,138,31,.07), transparent 24rem),
    #0d0d0d;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.section-heading {
  max-width: 830px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-heading h2, .world-copy h2, .community-card h2, .studio-copy h2 {
  margin: 12px 0 18px;
  font-family: "Fredoka", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.section-heading p, .world-copy p, .community-card p, .studio-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  border-radius: 28px;
  padding: 28px;
  min-height: 310px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
  transition: transform .25s ease, border-color .25s ease;
}
.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,255,255,.16);
}
.feature-card.orange {
  background: linear-gradient(160deg, rgba(255,138,31,.19), #12100f 65%);
}
.feature-card.blue {
  background: linear-gradient(160deg, rgba(79,156,255,.18), #0e1014 65%);
}
.feature-card.purple {
  background: linear-gradient(160deg, rgba(154,102,255,.18), #100e14 65%);
}
.feature-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 28px;
  font-weight: 950;
}
.feature-card h3 {
  margin: 68px 0 10px;
  font-family: "Fredoka", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 29px;
  text-transform: uppercase;
}
.feature-card p { color: #a49d96; line-height: 1.62; margin: 0; }

.world-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.world-copy { max-width: 560px; }
.world-image-wrap {
  padding: 2px;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--orange), var(--blue) 54%, var(--purple));
  box-shadow: var(--shadow);
}
.world-image-wrap img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
  border-radius: 32px;
  border: 10px solid #0b0b0b;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}
.chips span {
  padding: 10px 12px;
  border-radius: 999px;
  background: #121212;
  border: 1px solid var(--line);
  color: #d3ccc5;
  font-size: 13px;
  font-weight: 850;
}

.section-dark {
  width: 100%;
  max-width: none;
  background: #030303;
  color: white;
  padding: 94px max(17px, calc((100% - 1180px)/2));
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.community-card {
  border-radius: 34px;
  padding: 46px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,138,31,.32), transparent 24rem),
    linear-gradient(145deg, #191919, #0c0c0c);
  border: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 70px rgba(0,0,0,.38);
}
.community-card > div { max-width: 700px; }
.community-card p { color: #a9a29c; }
.light-kicker { color: #ffac5e; }

.studio-card {
  display: grid;
  grid-template-columns: auto 1fr .95fr;
  gap: 28px;
  align-items: center;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 20px 58px rgba(0,0,0,.28);
}
.studio-logo-placeholder {
  width: 124px;
  height: 124px;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.09);
  display: block;
  transition: transform .2s ease, border-color .2s ease;
}
.studio-logo-placeholder:hover {
  transform: translateY(-3px);
  border-color: rgba(255,138,31,.45);
}
.studio-logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.studio-copy h2 { font-size: 44px; }
.studio-copy p { font-size: 16px; margin-bottom: 0; }

.studio-links {
  display: grid;
  gap: 10px;
}
.studio-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 17px;
  background: #151515;
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  font-weight: 800;
  color: #d8d2cc;
  transition: .2s ease;
}
.studio-links a:hover {
  background: #1c1c1c;
  color: white;
  border-color: rgba(255,138,31,.20);
}

footer {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 24px 0 42px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: #77716b;
  font-size: 13px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  color: #d8d1cb;
}
.footer-left img { width: 32px; height: 32px; border-radius: 9px; }
.footer-right { justify-self: end; display: flex; gap: 16px; }
.footer-right a { text-decoration: none; }
.footer-right a:hover { color: white; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0 54px;
  }
  .hero-art { order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .world-section { grid-template-columns: 1fr; }
  .studio-card { grid-template-columns: auto 1fr; }
  .studio-links { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .site-header {
    top: 8px;
    margin-top: 8px;
    width: calc(100% - 16px);
    border-radius: 18px;
  }
  .brand span { display: none; }
  .hero { width: calc(100% - 24px); margin-top: 16px; gap: 28px; }
  .hero h1 { font-size: clamp(54px, 18vw, 78px); }
  .hero-card-footer { align-items: flex-start; flex-direction: column; }
  .hero-banner { min-height: 230px; }
  .ticker { overflow: hidden; white-space: nowrap; justify-content: flex-start; }
  .section { width: calc(100% - 24px); padding: 76px 0; }
  .section-soft { padding-inline: 18px; }
  .world-image-wrap img { min-height: 270px; }
  .community-card { padding: 28px; align-items: flex-start; flex-direction: column; }
  .studio-card { grid-template-columns: 1fr; }
  .studio-logo-placeholder { width: 104px; height: 104px; }
  footer { grid-template-columns: 1fr; text-align: left; }
  .footer-center { display: none; }
  .footer-right { justify-self: start; flex-wrap: wrap; }
}


/* Legal disclaimer popup */
body.modal-open {
  overflow: hidden;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
}

.legal-modal.is-hidden {
  display: none;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.legal-box {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,138,31,.14), transparent 18rem),
    #111;
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 32px 100px rgba(0,0,0,.65);
  text-align: center;
}

.legal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 30px rgba(0,0,0,.32);
}

.legal-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-kicker {
  display: inline-block;
  color: var(--orange-hot);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
}

.legal-box h2 {
  margin: 10px 0 16px;
  font-family: "Fredoka", "DM Sans", sans-serif;
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1;
}

.legal-box p {
  margin: 0 auto;
  max-width: 520px;
  color: #bdb6af;
  font-size: 14px;
  line-height: 1.7;
}

.legal-box p strong {
  color: #e4ddd5;
}

.legal-button {
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(180deg, var(--orange-hot), var(--orange));
  color: #17100a;
  font: 800 15px "DM Sans", sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255,138,31,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.legal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255,138,31,.30);
}
