@font-face {
  font-family: Manrope;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #151827;
  --night: #151827;
  --paper: #f7f5ef;
  --yellow: #f4d64e;
  --yellow-light: #ffe47a;
  --coral: #ff765e;
  --blue: #6d63ff;
  --mint: #c9f3de;
  --line: rgba(21, 24, 39, .18);
  --display: Manrope, 'DM Sans', sans-serif;
  --body: 'DM Sans', Arial, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --mx: 50%;
  --my: 50%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
}
body::before {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  content: '';
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 228, 122, .14), transparent 19rem);
  mix-blend-mode: multiply;
}
.grain {
  position: fixed;
  z-index: 11;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--yellow);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem clamp(1.25rem, 4vw, 4.5rem);
  transition: background .35s, padding .35s, box-shadow .35s;
}
.site-header.is-scrolled {
  padding-top: .82rem;
  padding-bottom: .82rem;
  background: rgba(247, 245, 239, .86);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: .7rem; min-width: max-content; }
.brand-symbol { font: 800 1.25rem/1 var(--display); letter-spacing: -.1em; }
.brand-symbol span { color: var(--coral); }
.brand-context {
  padding-left: .7rem;
  border-left: 1px solid currentColor;
  font-size: .53rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .58;
}
.primary-nav { display: flex; gap: clamp(1rem, 2.5vw, 2.8rem); font-size: .83rem; font-weight: 700; }
.primary-nav a { position: relative; padding: .35rem 0; }
.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: '';
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.header-cta { min-width: 9.2rem; background: var(--ink); color: var(--yellow); }
.header-cta span, .button span { font-size: 1rem; }
.header-cta:hover, .button:hover { box-shadow: 0 12px 24px rgba(21, 24, 39, .14); }
.menu-toggle { display: none; border: 0; background: none; padding: .5rem; }
.menu-toggle i { display: block; width: 1.55rem; height: 2px; margin: .34rem 0; background: var(--ink); transition: transform .25s; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(25rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  min-height: clamp(48rem, 100svh, 67rem);
  padding: 9rem clamp(1.25rem, 7vw, 9rem) 7rem;
  overflow: hidden;
  background: var(--yellow);
}
.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
  background: linear-gradient(112deg, transparent 48%, rgba(21, 24, 39, .045) 48%, rgba(21, 24, 39, .045) 48.2%, transparent 48.2%);
}
.hero-copy { position: relative; z-index: 2; max-width: 45rem; padding-bottom: 3rem; }
.eyebrow { display: flex; align-items: center; gap: .7rem; margin: 0 0 1.3rem; font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-line { width: 2.6rem; height: 1px; background: currentColor; }
.eyebrow-number { display: inline-grid; place-items: center; width: 1.7rem; height: 1.7rem; border: 1px solid currentColor; border-radius: 50%; font-size: .63rem; letter-spacing: 0; }
.hero h1, .section-intro h2, .gaming h2, .start h2 { margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: -.08em; line-height: .92; }
.hero h1 { max-width: 9.5ch; font-size: clamp(4.2rem, 8vw, 8.9rem); }
.hero h1 span { color: var(--coral); text-decoration: underline; text-decoration-color: var(--ink); text-decoration-thickness: .045em; text-underline-offset: .08em; }
.hero-lede { max-width: 29rem; margin: 2rem 0 1.9rem; font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.45; }
.hero-actions { display: flex; align-items: center; gap: 1.45rem; flex-wrap: wrap; }
.button--ink { background: var(--ink); color: var(--yellow); }
.text-link, .arrow-link { border-bottom: 1px solid currentColor; padding-bottom: .18rem; font-size: .86rem; font-weight: 800; }
.text-link span, .arrow-link span { display: inline-block; margin-left: .45rem; transition: transform .3s; }
.text-link:hover span, .arrow-link:hover span { transform: translate(3px, -3px); }
.hero-proof { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-top: 3.2rem; font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-proof span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-proof span::before { content: '✦'; color: var(--coral); }
.hero-stage { position: relative; z-index: 1; min-height: 35rem; display: grid; place-items: center; perspective: 1200px; transform: translateZ(0); }
.hero-yellow-block { position: absolute; width: min(32rem, 85vw); aspect-ratio: 1; background: var(--yellow-light); transform: rotate(7deg); }
.hero-index { position: absolute; z-index: 2; top: 4%; right: 3%; font-size: .65rem; font-weight: 800; letter-spacing: .16em; }
.hero-photo { position: relative; width: min(29rem, 82vw); aspect-ratio: 4 / 5; margin: 0; overflow: hidden; background: #c4bebe; box-shadow: 1.4rem 1.5rem 0 var(--ink); transform: rotate(3.5deg); transition: transform .7s var(--ease); will-change: transform; }
.hero-photo::after { position: absolute; inset: 0; content: ''; background: linear-gradient(145deg, transparent 45%, rgba(21, 24, 39, .35)); pointer-events: none; }
.hero-photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.03); }
.hero-photo figcaption { position: absolute; z-index: 1; right: 1rem; bottom: 1rem; left: 1rem; color: white; font-size: .64rem; font-weight: 800; letter-spacing: .16em; }
.hero-note { position: absolute; right: -1%; bottom: 1%; font: 700 1.05rem/1.05 var(--display); letter-spacing: -.05em; transform: rotate(-6deg); }
.hero-rule { position: absolute; right: clamp(1.25rem, 7vw, 9rem); bottom: 1.4rem; left: clamp(1.25rem, 7vw, 9rem); display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(21, 24, 39, .3); padding-top: .72rem; font-size: .62rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }

.section-pad { padding: clamp(5rem, 10vw, 9.5rem) clamp(1.25rem, 7vw, 9rem); }
.modes, .story { background: var(--paper); }
.section-intro { display: grid; grid-template-columns: minmax(12rem, .6fr) minmax(20rem, 1fr) minmax(16rem, .65fr); align-items: end; gap: clamp(1.5rem, 5vw, 5rem); margin-bottom: 4.6rem; }
.section-intro .eyebrow { align-self: start; }
.section-intro h2 { max-width: 8ch; font-size: clamp(3.2rem, 6vw, 7.3rem); }
.section-intro h2 em, .start h2 em { color: var(--coral); font-style: normal; }
.section-intro > p:last-child { max-width: 18rem; margin: 0 0 .5rem; font-size: 1rem; }
.route-switch { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.route-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.route-tab { position: relative; display: flex; justify-content: space-between; gap: 1rem; border: 0; margin-right: clamp(1rem, 4vw, 4rem); padding: 1.2rem .15rem 1.1rem; background: none; color: var(--ink); font: 700 .78rem var(--body); text-align: left; cursor: pointer; }
.route-tab span { font-size: .65rem; opacity: .45; }
.route-tab::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 4px; content: ''; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.route-tab:hover::after, .route-tab.is-active::after { transform: scaleX(1); transform-origin: left; }
.route-panel { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 2rem; min-height: 22rem; padding: 3.3rem 0; }
.route-panel > div:first-child { max-width: 31rem; }
.tiny-label, .gallery-tag, .gaming-meta, .card-index { font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.route-panel h3 { max-width: 8ch; margin: .7rem 0 1rem; font: 800 clamp(2.4rem, 4.5vw, 5.2rem) / .94 var(--display); letter-spacing: -.075em; }
.route-panel p:not(.tiny-label) { max-width: 28rem; margin: 0 0 1.4rem; }
.route-art { position: relative; display: flex; align-items: flex-end; justify-content: space-between; min-height: 17rem; padding: 1.3rem; overflow: hidden; }
.route-art::before { position: absolute; inset: 1.8rem 1.5rem 1.5rem; content: ''; background: var(--yellow); transform: rotate(-3deg); transition: transform .5s var(--ease); }
.route-art:hover::before { transform: rotate(2deg) scale(1.03); }
.route-art::after { position: absolute; inset: 0; content: ''; background-image: radial-gradient(rgba(21, 24, 39, .26) 1px, transparent 1px); background-size: 12px 12px; opacity: .65; }
.route-art > * { position: relative; z-index: 1; }
.route-art span { font: 700 1rem var(--display); letter-spacing: -.04em; }
.route-art b { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%; background: var(--ink); color: var(--yellow); font-size: 1.25rem; }
.route-art--gaming::before { background: var(--coral); }
.route-art--online::before { background: var(--mint); }

.gaming { position: relative; overflow: hidden; background: var(--night); color: var(--paper); }
.gaming::before { position: absolute; inset: 0; content: ''; background: linear-gradient(120deg, rgba(109, 99, 255, .35), transparent 45%), radial-gradient(circle at 88% 12%, rgba(244, 214, 78, .24), transparent 20rem); pointer-events: none; }
.gaming-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(20rem, .8fr) minmax(25rem, 1.2fr); align-items: center; gap: clamp(3rem, 8vw, 9rem); }
.eyebrow--light { color: var(--yellow); }
.gaming h2 { max-width: 6ch; font-size: clamp(5rem, 10vw, 12rem); line-height: .8; }
.gaming h2 em { color: var(--yellow); font-style: normal; }
.gaming-lede { max-width: 26rem; margin: 2.2rem 0; color: rgba(247, 245, 239, .75); font-size: 1.08rem; }
.button--yellow { background: var(--yellow); color: var(--ink); }
.gaming-meta { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 3.5rem; color: rgba(247, 245, 239, .52); }
.gaming-meta span::before { margin-right: .45rem; color: var(--yellow); content: '✦'; }
.gaming-gallery { position: relative; min-height: 37rem; }
.gaming-image { position: absolute; margin: 0; overflow: hidden; background: #222; box-shadow: .8rem .8rem 0 var(--yellow); transition: transform .7s var(--ease); will-change: transform; }
.gaming-image img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.gaming-image figcaption { position: absolute; right: 1rem; bottom: 1rem; padding: .42rem .65rem; background: var(--paper); color: var(--ink); font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.gaming-image--large { top: 1rem; left: 0; width: 67%; aspect-ratio: 1 / 1.03; transform: rotate(-3deg); }
.gaming-image--small { right: 0; bottom: 1rem; width: 51%; aspect-ratio: 1.1 / 1; transform: rotate(4deg); box-shadow: .7rem .7rem 0 var(--coral); }
.gallery-tag { position: absolute; z-index: 3; top: 2rem; right: 2rem; padding: 1rem; background: var(--yellow); color: var(--ink); transform: rotate(7deg); }
.gaming-image:hover { z-index: 4; }
.gaming-image--large:hover { transform: rotate(-1deg) scale(1.03); }
.gaming-image--small:hover { transform: rotate(1deg) scale(1.05); }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.story-card { position: relative; min-height: 27rem; padding: 1.5rem; overflow: hidden; }
.story-card h3 { position: relative; z-index: 1; margin: 5rem 0 1rem; font: 800 clamp(2.3rem, 4vw, 4.6rem) / .9 var(--display); letter-spacing: -.08em; }
.story-card p { position: relative; z-index: 1; max-width: 17rem; margin: 0; font-size: .98rem; }
.story-card--yellow { background: var(--yellow); }
.story-card--ink { background: var(--ink); color: var(--paper); }
.story-card--image { padding: 0; color: white; }
.story-card--image img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.story-card--image::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, transparent 30%, rgba(21, 24, 39, .8)); }
.card-index { position: absolute; top: 1.45rem; left: 1.5rem; opacity: .6; }
.card-arrow { position: absolute; right: 1.4rem; bottom: 1.1rem; font-size: 1.7rem; }
.image-card-overlay { position: absolute; z-index: 1; right: 1.25rem; bottom: 1.2rem; left: 1.25rem; display: flex; align-items: end; justify-content: space-between; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.image-card-overlay b { font: 800 4rem / .8 var(--display); letter-spacing: -.1em; }

.start { background: var(--yellow); }
.start-inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(2rem, 8vw, 9rem); }
.start h2 { max-width: 8ch; font-size: clamp(4rem, 8.8vw, 10.5rem); }
.start-side { max-width: 25rem; padding-bottom: .7rem; }
.start-side > p { font-size: 1.1rem; line-height: 1.45; }
.start-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; margin-top: 2.2rem; }
.phone-link { border-bottom: 1px solid currentColor; padding-bottom: .2rem; font-weight: 800; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.7rem clamp(1.25rem, 7vw, 9rem); background: var(--ink); color: var(--paper); font-size: .72rem; }
.footer-brand, .footer-links { display: flex; align-items: center; gap: .8rem; }
.footer-brand .brand-symbol { color: var(--yellow); }
.footer-links { gap: 1.2rem; font-weight: 700; }
.footer-links a:hover { color: var(--yellow); }
.site-footer p { margin: 0; opacity: .55; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .14s; }
.reveal-delay-2 { transition-delay: .28s; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

@media (max-width: 900px) {
  .primary-nav { gap: 1.1rem; }
  .header-cta { min-width: auto; }
  .hero { grid-template-columns: 1fr; gap: 1rem; padding-top: 8.5rem; }
  .hero-copy { max-width: 40rem; padding-bottom: 0; }
  .hero-stage { min-height: 31rem; margin-top: -1rem; }
  .section-intro { grid-template-columns: 1fr 1.2fr; align-items: start; }
  .section-intro > p:last-child { grid-column: 2; margin-top: -1rem; }
  .gaming-grid { grid-template-columns: .85fr 1.15fr; gap: 2rem; }
  .gaming-gallery { min-height: 31rem; }
  .story-card { min-height: 24rem; }
  .start-inner { grid-template-columns: 1fr .7fr; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .site-header { padding: 1rem 1.1rem; }
  .site-header.is-scrolled { padding: .75rem 1.1rem; }
  .primary-nav { position: absolute; top: calc(100% + .5rem); right: 1rem; left: 1rem; display: flex; flex-direction: column; gap: .15rem; padding: .8rem; background: rgba(247, 245, 239, .97); box-shadow: 0 1rem 3rem rgba(21, 24, 39, .16); opacity: 0; pointer-events: none; transform: translateY(-1rem); transition: opacity .25s, transform .25s; }
  .site-header.menu-open .primary-nav { opacity: 1; pointer-events: auto; transform: none; }
  .primary-nav a { padding: .8rem 1rem; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-header.menu-open .menu-toggle i:first-of-type { transform: translateY(4px) rotate(45deg); }
  .site-header.menu-open .menu-toggle i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: auto; padding: 7.7rem 1.1rem 5rem; }
  .hero h1 { max-width: 8.5ch; font-size: clamp(4rem, 17vw, 6.3rem); letter-spacing: -.09em; }
  .hero-lede { margin-top: 1.6rem; font-size: 1rem; }
  .hero-proof { gap: .65rem .9rem; margin-top: 2.2rem; }
  .hero-proof span { font-size: .59rem; }
  .hero-stage { min-height: 24rem; margin-top: 1.5rem; }
  .hero-yellow-block { width: 21rem; }
  .hero-photo { width: min(18rem, 78vw); box-shadow: .9rem 1rem 0 var(--ink); }
  .hero-note { right: 0; font-size: .8rem; }
  .hero-rule { right: 1.1rem; bottom: 1rem; left: 1.1rem; font-size: .53rem; }
  .hero-rule span:last-child { display: none; }
  .section-pad { padding: 5rem 1.1rem; }
  .section-intro { display: block; margin-bottom: 3rem; }
  .section-intro h2 { margin-bottom: 1.3rem; font-size: clamp(3.3rem, 15vw, 5rem); }
  .section-intro > p:last-child { max-width: 21rem; margin: 0; }
  .route-tabs { display: block; }
  .route-tab { width: 100%; margin-right: 0; padding: 1rem 0; }
  .route-panel { display: block; min-height: 0; padding: 2.2rem 0 2.8rem; }
  .route-panel h3 { font-size: 3.3rem; }
  .route-art { min-height: 13rem; margin-top: 2rem; }
  .gaming-grid { display: block; }
  .gaming h2 { font-size: clamp(5rem, 20vw, 8rem); }
  .gaming-lede { font-size: 1rem; }
  .gaming-gallery { min-height: 25rem; margin-top: 3rem; }
  .gaming-image--large { width: 73%; }
  .gaming-image--small { width: 54%; }
  .gallery-tag { top: 1rem; right: .5rem; font-size: .55rem; }
  .story-grid { grid-template-columns: 1fr; gap: .8rem; }
  .story-card { min-height: 23rem; }
  .story-card h3 { font-size: 3.2rem; }
  .start-inner { display: block; }
  .start h2 { margin-bottom: 2rem; font-size: clamp(4rem, 18vw, 6.4rem); }
  .start-side { padding: 0; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .footer-links { flex-wrap: wrap; }
  .site-footer p { font-size: .65rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-photo, .gaming-image { transition: none; }
  body::before { display: none; }
}
