:root {
  --ink: #171722;
  --ink-soft: #5c5c68;
  --paper: #f7f5ee;
  --paper-deep: #eeeadf;
  --lime: #ddff4a;
  --lime-dark: #b9e128;
  --violet: #7459ff;
  --violet-soft: #a89aff;
  --coral: #ff795d;
  --dark: #12121d;
  --line: rgba(23, 23, 34, .13);
  --display: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--dark); background: var(--lime); }

.skip-link { position: fixed; z-index: 100; left: 18px; top: -80px; padding: 12px 18px; border-radius: 999px; background: white; color: var(--dark); transition: top .2s; }
.skip-link:focus { top: 14px; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; height: 82px; display: flex; align-items: center; padding: 0 clamp(22px, 4vw, 72px); color: white; transition: background .3s, height .3s, box-shadow .3s; }
.site-header::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(to bottom, rgba(9, 9, 18, .65), transparent); transition: opacity .3s; }
.site-header.is-scrolled { height: 68px; color: var(--ink); background: rgba(247, 245, 238, .9); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(18px); }
.site-header.is-scrolled::before { opacity: 0; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 800; letter-spacing: .08em; }
.brand-mark { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: var(--lime); color: var(--dark); font-size: 15px; letter-spacing: -.05em; transform: rotate(-5deg); box-shadow: 0 6px 18px rgba(0, 0, 0, .12); }
.brand-name { white-space: nowrap; }
.nav { display: flex; align-items: center; gap: clamp(20px, 2.2vw, 38px); margin-left: auto; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.nav a { position: relative; padding: 10px 0; opacity: .82; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 100%; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-button { display: none; width: 42px; height: 42px; margin-left: auto; border: 0; background: transparent; }
.menu-button span { display: block; width: 23px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .25s; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: white; background: var(--dark); }
.hero-slides, .hero-slide, .hero-slide img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { margin: 0; opacity: 0; transition: opacity 1s ease, transform 7s ease; transform: scale(1.025); }
.hero-slide.is-active { opacity: 1; transform: scale(1.06); }
.hero-slide img { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(10, 9, 28, .84) 0%, rgba(10, 9, 28, .38) 46%, rgba(10, 9, 28, .05) 76%), linear-gradient(0deg, rgba(8, 8, 20, .56) 0%, transparent 50%); }
.hero-copy { position: relative; z-index: 2; width: min(820px, 84vw); margin: 0 0 clamp(110px, 13vh, 150px) clamp(26px, 7vw, 128px); opacity: 0; transform: translateY(14px); transition: opacity .45s, transform .45s; }
.hero-copy.is-visible { opacity: 1; transform: translateY(0); }
.eyebrow, .section-label { margin: 0 0 24px; text-transform: uppercase; letter-spacing: .2em; font-size: 11px; line-height: 1.2; font-weight: 800; }
.eyebrow::before, .section-label::before { content: ""; display: inline-block; width: 28px; height: 2px; margin: 0 11px 3px 0; background: currentColor; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.065em; }
h1 { max-width: 850px; font-family: var(--display); font-size: clamp(64px, 8.4vw, 142px); font-weight: 400; line-height: .98; }
h1 em { color: var(--lime); font-style: normal; }
.hero-description { width: max-content; max-width: none; margin: 28px 0 0; color: rgba(255, 255, 255, .78); font-size: clamp(9px, 1.5vw, 21px); line-height: 1.5; white-space: nowrap; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 228px; margin-top: 28px; padding: 17px 19px 17px 22px; border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .2s, background .2s; }
.button span { display: grid; place-items: center; width: 30px; height: 30px; margin-left: 28px; border-radius: 50%; background: rgba(0, 0, 0, .08); }
.button.primary { background: var(--lime); color: var(--dark); }
.button:hover { transform: translateY(-3px); background: white; }
.hero-controls { position: absolute; z-index: 3; right: clamp(24px, 4vw, 72px); bottom: clamp(28px, 5vh, 62px); display: flex; align-items: center; gap: 13px; }
.circle-button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .4); border-radius: 50%; background: rgba(13, 13, 30, .25); color: white; cursor: pointer; backdrop-filter: blur(6px); transition: background .2s; }
.circle-button:hover { background: rgba(255, 255, 255, .18); }
.hero-dots { display: flex; gap: 4px; }
.hero-dot { width: 36px; height: 42px; padding: 0 6px; border: 0; background: transparent; cursor: pointer; }
.hero-dot span { display: block; width: 100%; height: 2px; background: rgba(255, 255, 255, .35); transition: background .25s, height .25s; }
.hero-dot.is-active span { height: 4px; background: var(--lime); }
.discover-link { position: absolute; z-index: 3; bottom: 34px; left: clamp(26px, 7vw, 128px); display: flex; align-items: center; gap: 16px; color: rgba(255, 255, 255, .7); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.discover-link i { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, .36); border-radius: 50%; font-style: normal; }

.section-pad { padding: clamp(86px, 10vw, 160px) clamp(24px, 7vw, 128px); }
.statement { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; text-align: center; background: var(--dark); color: white; }
.statement::before { content: ""; position: absolute; width: 48vw; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(116, 89, 255, .24), transparent 66%); }
.quote-mark { position: absolute; z-index: 1; top: 24%; margin: 0; color: var(--lime); font: 100px/1 Georgia, serif; }
.statement-copy { position: relative; z-index: 1; margin: 45px 0 0; white-space: normal; font-family: var(--display); font-size: clamp(38px, 5.2vw, 82px); line-height: 1.05; letter-spacing: -.055em; }
.statement-copy::first-line { color: white; }
.statement-orbit { position: absolute; width: min(72vw, 830px); aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; animation: orbit 35s linear infinite; }
.statement-orbit::before, .statement-orbit::after { content: ""; position: absolute; inset: 12%; border: 1px solid rgba(255, 255, 255, .06); border-radius: 50%; }
.statement-orbit::after { inset: 25%; }
.statement-orbit span { position: absolute; padding: 8px 13px; border-radius: 999px; background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .55); font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.statement-orbit span:nth-child(1) { top: 5%; left: 50%; }.statement-orbit span:nth-child(2) { top: 56%; right: -2%; }.statement-orbit span:nth-child(3) { bottom: 10%; left: 10%; }
@keyframes orbit { to { transform: rotate(360deg); } }

.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .6fr); gap: 70px; align-items: end; }
.section-heading .section-label, .section-heading h2 { grid-column: 1; }
h2 { font-size: clamp(52px, 7.2vw, 112px); line-height: .9; }
h2 em { color: var(--violet); font-style: normal; }
.section-intro { grid-column: 2; grid-row: 1 / span 2; align-self: end; margin: 0 0 8px; color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 90px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-card { padding: 34px 34px 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-card h3 { margin: 6px 0 22px; font-family: var(--display); font-size: clamp(28px, 2.7vw, 42px); letter-spacing: -.04em; }
.about-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }

.games { background: var(--paper-deep); }
.games-heading { display: grid; grid-template-columns: 1.4fr .55fr; gap: 70px; align-items: end; }
.games-heading>p { margin: 0 0 10px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 78px; }
.game-card { display: flex; min-width: 0; min-height: 525px; flex-direction: column; padding: 20px; border: 1px solid rgba(23, 23, 34, .09); border-radius: 30px; background: rgba(255, 255, 255, .72); transition: transform .3s, box-shadow .3s, background .3s; }
.game-card:hover { z-index: 2; background: white; transform: translateY(-7px); box-shadow: 0 24px 60px rgba(24, 24, 37, .1); }
.game-card-top { position: relative; overflow: hidden; aspect-ratio: 1.55; border-radius: 21px; background: #171722; }
.game-card-top::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 58%, rgba(10, 8, 20, .16)); pointer-events: none; }
.game-card-top img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.game-card:hover .game-card-top img { transform: scale(1.045); }
.game-card-copy { padding: 24px 5px 18px; }
.game-category { margin: 0 0 9px !important; color: var(--violet) !important; text-transform: uppercase; letter-spacing: .12em; font-size: 10px !important; font-weight: 800; }
.game-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: clamp(24px, 2.15vw, 34px); line-height: 1.08; letter-spacing: -.045em; }
.game-card-copy>p:last-child { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.store-button { display: flex; min-width: 135px; flex: 1; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 13px; background: var(--dark); color: white; font-size: 12px; font-weight: 700; line-height: 1.08; transition: transform .2s, background .2s; }
.store-button:hover { background: var(--violet); transform: translateY(-2px); }
.store-button small { display: block; margin-bottom: 3px; color: rgba(255, 255, 255, .58); font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.store-symbol { position: relative; display: grid; place-items: center; width: 24px; height: 24px; flex: 0 0 24px; }
.apple-symbol { border: 1.5px solid rgba(255, 255, 255, .8); border-radius: 50%; font-size: 11px; font-weight: 800; }
.play-symbol::before { content: ""; width: 0; height: 0; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 18px solid var(--lime); filter: drop-shadow(-5px 0 0 var(--coral)); }

.team { position: relative; overflow: hidden; background: var(--violet); color: white; }
.team::before { content: ""; position: absolute; top: -20vw; right: -18vw; width: 60vw; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .15); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(255, 255, 255, .025), 0 0 0 16vw rgba(255, 255, 255, .02); }
.team-heading { position: relative; z-index: 1; max-width: 950px; }
.team-heading h2 em { color: var(--lime); }
.team-heading>p:last-child { max-width: 650px; margin: 35px 0 0; color: rgba(255, 255, 255, .72); font-size: 17px; line-height: 1.7; }
.team-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 78px; }
.team-card { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 24px; background: rgba(255, 255, 255, .11); transition: transform .28s, background .28s; }
.team-card:nth-child(5n+2), .team-card:nth-child(5n+4) { transform: translateY(24px); }
.team-card:hover { z-index: 2; background: rgba(255, 255, 255, .18); transform: translateY(-8px) rotate(-1.5deg); }
.team-photo { aspect-ratio: .86; overflow: hidden; isolation: isolate; background: var(--team-bg, linear-gradient(145deg, #8de7dc, #4f9cf7)); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card:nth-child(1) { --team-bg: radial-gradient(circle at 75% 15%, #fff6a5 0, transparent 35%), linear-gradient(145deg, #ffc75f, #ff7b72); }
.team-card:nth-child(2) { --team-bg: radial-gradient(circle at 20% 18%, #d9c7ff 0, transparent 36%), linear-gradient(145deg, #8f7cff, #5c45d6); }
.team-card:nth-child(3) { --team-bg: radial-gradient(circle at 80% 12%, #c9f8ff 0, transparent 34%), linear-gradient(145deg, #67d7e8, #3a86d9); }
.team-card:nth-child(4) { --team-bg: radial-gradient(circle at 18% 16%, #ffe0ec 0, transparent 35%), linear-gradient(145deg, #ff9bc1, #ee5d8d); }
.team-card:nth-child(5) { --team-bg: radial-gradient(circle at 78% 14%, #e4ffc4 0, transparent 35%), linear-gradient(145deg, #9adf68, #4eaf84); }
.team-card:nth-child(6) { --team-bg: radial-gradient(circle at 20% 12%, #ffe5bd 0, transparent 35%), linear-gradient(145deg, #ffb36b, #ee6d54); }
.team-card:nth-child(7) { --team-bg: radial-gradient(circle at 80% 16%, #d4d0ff 0, transparent 35%), linear-gradient(145deg, #8178e8, #4940aa); }
.team-card:nth-child(8) { --team-bg: radial-gradient(circle at 18% 14%, #c8fff0 0, transparent 35%), linear-gradient(145deg, #5bd3bd, #28938f); }
.team-card:nth-child(9) { --team-bg: radial-gradient(circle at 78% 12%, #fff0ac 0, transparent 35%), linear-gradient(145deg, #ffd759, #f09a3e); }
.team-card:nth-child(10) { --team-bg: radial-gradient(circle at 22% 16%, #ffd5c7 0, transparent 34%), linear-gradient(145deg, #ff8d79, #d94c6b); }
.team-card:nth-child(11) { --team-bg: radial-gradient(circle at 80% 15%, #cde7ff 0, transparent 35%), linear-gradient(145deg, #6ab9ef, #4267c6); }
.team-card:nth-child(12) { --team-bg: radial-gradient(circle at 18% 14%, #f0d0ff 0, transparent 35%), linear-gradient(145deg, #c788e9, #7d55c7); }
.team-card:nth-child(13) { --team-bg: radial-gradient(circle at 78% 16%, #dcffbd 0, transparent 35%), linear-gradient(145deg, #8fd36a, #3d9b73); }
.team-card:nth-child(14) { --team-bg: radial-gradient(circle at 20% 12%, #ffe8b9 0, transparent 35%), linear-gradient(145deg, #f6bd60, #df7f54); }
.team-card:nth-child(15) { --team-bg: radial-gradient(circle at 80% 14%, #bfeeff 0, transparent 35%), linear-gradient(145deg, #5ec8e8, #5575d8); }
.team-card:nth-child(16) { --team-bg: radial-gradient(circle at 18% 16%, #ffd0e6 0, transparent 35%), linear-gradient(145deg, #f384b5, #ad5fc0); }
.team-card:nth-child(17) { --team-bg: radial-gradient(circle at 78% 13%, #e8ffc5 0, transparent 35%), linear-gradient(145deg, #a8dc67, #5ea74f); }
.team-card:nth-child(18) { --team-bg: radial-gradient(circle at 20% 15%, #fff1b8 0, transparent 35%), linear-gradient(145deg, #ffc960, #ee8068); }
.team-card:nth-child(19) { --team-bg: radial-gradient(circle at 80% 12%, #d9d2ff 0, transparent 35%), linear-gradient(145deg, #9184ed, #5e50c6); }
.team-card:nth-child(20) { --team-bg: radial-gradient(circle at 18% 15%, #c5fff2 0, transparent 35%), linear-gradient(145deg, #64d8c2, #318db1); }

.contact { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; background: var(--lime); }
.contact-copy { position: relative; z-index: 2; max-width: 980px; text-align: center; }
.contact h2 { font-size: clamp(58px, 8vw, 126px); }
.contact h2 em { color: var(--violet); }
.contact-copy>p:not(.section-label) { max-width: none; margin: 35px auto 0; color: rgba(23, 23, 34, .7); font-size: clamp(8px, 2.4vw, 17px); line-height: 1.7; white-space: nowrap; }
.email-link { display: flex; width: min(760px, 90vw); align-items: center; justify-content: space-between; margin: 52px auto 0; padding: 13px 15px 13px 28px; border: 2px solid var(--ink); border-radius: 999px; font-family: var(--display); font-size: clamp(15px, 2.2vw, 28px); letter-spacing: -.03em; transition: background .25s, color .25s; }
.email-link i { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: var(--lime); font-style: normal; }
.email-link:hover { background: var(--ink); color: white; }.email-link:hover i { background: var(--violet); color: white; }
.contact-shape { position: absolute; border-radius: 32%; background: var(--violet); opacity: .9; }
.shape-one { width: 170px; height: 170px; top: 18%; left: -60px; transform: rotate(25deg); }
.shape-two { width: 110px; height: 110px; bottom: 13%; right: -34px; border-radius: 50%; background: var(--coral); }

.footer { padding-top: 68px; padding-bottom: 38px; background: var(--dark); color: white; }
.footer-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-top { padding-bottom: 60px; border-bottom: 1px solid rgba(255, 255, 255, .13); }
.footer-top>p { margin: 0; color: rgba(255, 255, 255, .48); font-size: 12px; letter-spacing: .12em; }
.footer-bottom { gap: 24px; padding-top: 28px; color: rgba(255, 255, 255, .55); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 24px; }.footer-bottom a:hover { color: var(--lime); }
.footer-brand .brand-mark { box-shadow: none; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease var(--delay, 0ms), transform .65s ease var(--delay, 0ms); }
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .team-card:nth-child(5n+2), .team-card:nth-child(5n+4) { transform: none; }
  .section-heading, .games-heading { grid-template-columns: 1fr; }
  .section-intro { grid-column: 1; grid-row: auto; max-width: 700px; }
  .about-cards { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 70px; }
  .menu-button { display: block; }
  .nav { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; padding: 90px 28px 40px; background: var(--dark); color: white; opacity: 0; pointer-events: none; transition: opacity .25s; }
  .nav a { font-family: var(--display); font-size: 46px; letter-spacing: -.05em; }
  .menu-open .nav { opacity: 1; pointer-events: auto; }
  .menu-open .site-header { color: white; background: transparent; box-shadow: none; }
  .menu-open .site-header::before { opacity: 0; }
  .menu-open .menu-button span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-button span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: 780px; }
  .hero-slide img { object-position: 66% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(10, 9, 28, .92) 0%, rgba(10, 9, 28, .52) 60%, rgba(10, 9, 28, .18)); }
  .hero-copy { width: calc(100% - 48px); margin: 0 24px 155px; }
  h1 { font-size: clamp(56px, 17vw, 82px); line-height: 1; }
  .hero-controls { right: 22px; bottom: 26px; }
  .discover-link { left: 24px; bottom: 30px; }.discover-link span { display: none; }
  .statement { min-height: 520px; }.statement-orbit { width: 125vw; }
  .section-heading { gap: 32px; }
  .about-cards { margin-top: 55px; }.about-card { padding: 28px; }
  .games-heading { gap: 30px; }.games-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .game-card { min-height: 500px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 48px; }
  .team-card { border-radius: 17px; }
  .contact { min-height: 650px; }.email-link { padding-left: 20px; }.email-link i { width: 46px; height: 46px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-top { gap: 26px; }.footer-bottom { gap: 18px; }.footer-bottom nav { flex-wrap: wrap; }
}

@media (max-width: 420px) {
  .store-buttons { flex-direction: column; }.store-button { width: 100%; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .fact { padding: 18px 10px; }
  .email-link { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
