:root {
  --ink: #07142b;
  --ink-soft: #445069;
  --surface: #f3f4f8;
  --paper: #ffffff;
  --cyan: #1ce1d2;
  --violet: #7b61ff;
  --coral: #ff7b61;
  --gold: #f7d067;
  --line: rgba(7, 20, 43, 0.12);
  --display: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: #fff;
  transition: background 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(7, 20, 43, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand span {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand b {
  color: var(--cyan);
}

.brand-mark {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.brand-mark-core {
  stroke: var(--cyan);
  stroke-width: 3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  inset: auto 0 -7px;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.is-scrolled .nav-contact {
  border-color: var(--line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: #fff;
  background: #061329;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(6, 19, 41, 0.82));
  content: "";
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  min-height: 710px;
  padding-top: 90px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 620px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--cyan);
}

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

h1,
h2 {
  font-family: var(--display);
  letter-spacing: -0.055em;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(56px, 6.4vw, 94px);
  line-height: 0.91;
}

h1 em,
h2 em {
  color: var(--cyan);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 12px 36px rgba(28, 225, 210, 0.22);
}

.text-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 5px;
}

.hero-art-wrap {
  position: absolute;
  z-index: 1;
  top: 0;
  right: min(-17vw, -170px);
  width: min(76vw, 1160px);
  height: 720px;
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(1.05);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 24%, #000 100%);
}

.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(28, 225, 210, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  right: 13%;
  bottom: 15%;
  width: 470px;
  height: 470px;
  animation: orbit-spin 24s linear infinite;
}

.orbit-two {
  right: 7%;
  bottom: 9%;
  width: 590px;
  height: 590px;
  border-style: dashed;
  animation: orbit-spin 38s linear infinite reverse;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(6, 19, 41, 0.46);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 750;
  animation: chip-float 5s ease-in-out infinite;
}

.floating-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.chip-one {
  top: 31%;
  right: 8%;
}

.chip-two {
  right: 32%;
  bottom: 9%;
  animation-delay: -2.5s;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.24;
  pointer-events: none;
}

.hero-glow-one {
  top: -160px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: var(--violet);
}

.hero-glow-two {
  bottom: -220px;
  left: 35%;
  width: 520px;
  height: 520px;
  background: var(--cyan);
}

.hero-notes {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section {
  padding: 130px 0;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  align-items: start;
}

.section-heading h2,
.section-top h2,
.values h2,
.contact h2 {
  margin: 0;
  font-size: clamp(45px, 5.2vw, 74px);
  line-height: 0.98;
}

.intro .eyebrow,
.craft .eyebrow,
.values .eyebrow {
  color: #566079;
}

.intro-copy {
  padding-top: 44px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.intro-copy .lead {
  color: var(--ink);
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.52;
}

.craft {
  background: #eef0f6;
}

.section-top {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 9vw;
  align-items: end;
  margin-bottom: 64px;
}

.section-top > p {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.craft-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(7, 20, 43, 0.08);
}

.craft-card-worlds,
.craft-card-play {
  grid-column: span 6;
}

.craft-card-together {
  display: grid;
  grid-column: span 12;
  grid-template-columns: 1.25fr 0.75fr;
}

.card-visual {
  position: relative;
  height: 330px;
  min-height: 330px;
  overflow: hidden;
  background: #0b1534;
}

.craft-card-together .card-visual {
  height: 360px;
  min-height: 360px;
}

.card-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.craft-card:hover .card-art {
  transform: scale(1.025);
}

.card-copy {
  padding: 32px 34px 35px;
  background: var(--paper);
}

.card-copy p {
  margin-bottom: 18px;
  color: #73809a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-copy h3 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.card-copy span {
  display: block;
  max-width: 480px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.craft-card-together .card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.values {
  color: #fff;
  background: var(--ink);
}

.values-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
  align-items: start;
}

.values-sticky {
  position: sticky;
  top: 140px;
}

.values h2 {
  margin-bottom: 30px;
}

.values-sticky > p:last-child {
  max-width: 370px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.value-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.value-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.value-item > span {
  padding-top: 6px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.value-item h3 {
  margin-bottom: 10px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.value-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.contact {
  padding-bottom: 90px;
  background: var(--paper);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 84px 8vw;
  border-radius: 36px;
  color: #fff;
  background: linear-gradient(125deg, #6248f5, #744ee6 45%, #ef6d83);
  box-shadow: 0 28px 80px rgba(74, 54, 183, 0.24);
}

.contact-panel > *:not(.contact-shape) {
  position: relative;
  z-index: 2;
}

.contact h2 {
  margin-bottom: 38px;
}

.contact h2 em {
  color: var(--gold);
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 34px rgba(33, 18, 82, 0.18);
}

.contact-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.shape-one {
  top: -150px;
  right: -70px;
  width: 500px;
  height: 500px;
}

.shape-two {
  right: 100px;
  bottom: -260px;
  width: 420px;
  height: 420px;
}

.site-footer {
  color: #fff;
  background: #050d1d;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 0.45fr 1.25fr;
  gap: 7vw;
  padding: 80px 0 68px;
}

.footer-brand p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-label {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-nav .footer-label {
  margin-bottom: 8px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover,
.company-details a:hover {
  color: var(--cyan);
}

.company-details dl {
  margin: 0;
}

.company-details dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-details dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.55;
}

.company-details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.55;
}

.company-details address {
  font-style: normal;
}

.company-details a {
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes chip-float {
  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .site-nav {
    gap: 22px;
  }

  .hero-layout {
    display: flex;
    align-items: flex-start;
    min-height: 800px;
    padding-top: 170px;
  }

  .hero-copy {
    max-width: 580px;
  }

  .hero-art-wrap {
    top: 160px;
    right: -300px;
    width: 850px;
    height: 630px;
    opacity: 0.72;
  }

  .hero-copy::before {
    position: absolute;
    z-index: -1;
    inset: -60px -80px -90px -40px;
    background: radial-gradient(circle at 25% 45%, rgba(6, 19, 41, 0.98), rgba(6, 19, 41, 0.55) 60%, transparent 78%);
    content: "";
  }

  .floating-chip {
    display: none;
  }

  .intro-grid,
  .section-top,
  .values-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-copy {
    max-width: 670px;
    padding-top: 0;
  }

  .section-top > p {
    max-width: 620px;
  }

  .values-sticky {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .company-details {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
    --radius: 22px;
  }

  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .header-inner > .brand {
    position: relative;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: #fff;
    background: rgba(5, 13, 29, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav a {
    font-size: 24px;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-open .site-header {
    color: #fff;
  }

  .hero,
  .hero-layout {
    min-height: 780px;
  }

  .hero-layout {
    padding-top: 132px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(49px, 14.4vw, 72px);
  }

  .hero-lede {
    max-width: 92%;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero-art-wrap {
    top: 342px;
    right: -168px;
    width: 650px;
    height: 465px;
    opacity: 0.8;
  }

  .hero-art {
    object-position: 72% center;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 20%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 20%, #000 100%);
  }

  .hero-copy::before {
    inset: -35px -20px -110px;
    background: linear-gradient(to bottom, rgba(6, 19, 41, 0.96), rgba(6, 19, 41, 0.74) 75%, transparent);
  }

  .orbit-one {
    right: 4%;
    bottom: 6%;
    width: 340px;
    height: 340px;
  }

  .orbit-two {
    display: none;
  }

  .hero-notes {
    justify-content: center;
    padding: 22px 0;
  }

  .hero-notes span:not(:first-child) {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading h2,
  .section-top h2,
  .values h2,
  .contact h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .intro-copy .lead {
    font-size: 21px;
  }

  .craft-grid {
    display: block;
  }

  .craft-card {
    margin-bottom: 20px;
  }

  .craft-card-together {
    display: flex;
    flex-direction: column;
  }

  .card-visual,
  .craft-card-together .card-visual {
    height: 220px;
    min-height: 220px;
  }

  .card-copy,
  .craft-card-together .card-copy {
    padding: 26px 24px 29px;
  }

  .visual-together .card-art {
    object-position: center;
  }

  .value-item {
    grid-template-columns: 42px 1fr;
    padding: 28px 0;
  }

  .contact {
    padding-bottom: 64px;
  }

  .contact-panel {
    width: calc(100% - 20px);
    padding: 62px 28px;
    border-radius: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 64px 0 50px;
  }

  .company-details {
    grid-column: auto;
  }

  .company-details dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
