:root {
  --hero-text: #f3f7fb;
  --hero-text-soft: rgba(243, 247, 251, 0.88);
  --hero-text-muted: rgba(243, 247, 251, 0.72);
  --hero-surface: rgba(255, 255, 255, 0.05);
  --hero-border: rgba(255, 255, 255, 0.1);
  --hero-dropdown: rgba(15, 23, 42, 0.96);
  --hero-header-solid: rgba(21, 32, 43, 0.62);
  --hero-header-mobile: rgba(255, 255, 255, 0.96);
  --teal: #14b8a6;
  --cyan: #06b6d4;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--slate-900);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  transition: background-color 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}

.site-nav.is-solid {
  border-bottom: 1px solid var(--hero-border);
  background: var(--hero-header-solid);
  backdrop-filter: blur(12px);
}

.nav-shell,
.content-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(243, 247, 251, 0.92);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.menu-button {
  border: 1px solid var(--hero-border);
  background: var(--hero-surface);
  color: var(--hero-text);
}

.icon-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  overflow: hidden;
  border-top: 1px solid rgba(21, 32, 43, 0.12);
  background: var(--hero-header-mobile);
  backdrop-filter: blur(12px);
}

.mobile-menu-inner {
  padding: 16px 24px 24px;
}

.mobile-menu-inner a,
.mobile-menu-inner button {
  display: block;
  width: 100%;
  padding: 8px 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.mobile-menu-inner > a {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(21, 32, 43, 0.68);
}

.mobile-signin {
  margin-top: 16px;
  padding: 12px 24px !important;
  border-radius: 999px;
  background: linear-gradient(to right, var(--teal), var(--cyan)) !important;
  color: var(--white) !important;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center !important;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.hero {
  position: relative;
  display: block;
  height: 100dvh;
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2530, #081118);
}

.hero-overlay,
.hero-background {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  z-index: 10;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, 0.82) 0%, rgba(7, 11, 15, 0.4) 30%, rgba(7, 11, 15, 0.72) 100%),
    linear-gradient(180deg, transparent 0%, rgba(7, 11, 15, 0.62) 100%);
}

.hero-background {
  background-position: top center;
  background-size: cover;
  filter: blur(1px) brightness(0.7);
  transform: scale(1.1);
  transition: background-image 1s ease-in-out;
}

.hero-shell {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: end;
  height: 100%;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 16px 32px;
}

.hero-copy {
  max-width: 64rem;
}

.hero-label {
  color: rgba(243, 247, 251, 0.72);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-title {
  margin: 16px 0 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
}

.hero-subtitle {
  max-width: 34rem;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-description {
  display: -webkit-box;
  max-width: 40rem;
  margin: 16px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.7;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: pre-line;
}

.hero-spacer {
  padding-top: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: -10px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(to right, var(--teal), var(--cyan));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transition: filter 0.2s ease;
}

.hero-cta:hover {
  filter: brightness(0.98);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.hero-arrow-left {
  left: 16px;
}

.hero-arrow-right {
  right: 16px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 40;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #f3f7fb;
}

.hero-swipe {
  position: absolute;
  bottom: 64px;
  left: 50%;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  transform: translateX(-50%);
  transition: opacity 0.5s ease;
}

.swipe-dots {
  display: flex;
  gap: 4px;
}

.swipe-dots span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  animation: pulse 1.2s infinite;
}

.swipe-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.swipe-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.products-section {
  margin-bottom: 80px;
  padding: 56px 16px 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}

.section-heading h2 {
  min-width: 0;
  margin: 0;
  color: var(--slate-900);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  color: #0f766e;
  font-size: 0.875rem;
}

.view-all::after {
  content: "\2192";
  font-size: 0.9rem;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.game-link {
  display: block;
}

.game-card {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-link:hover .game-card {
  border-color: rgba(94, 234, 212, 0.8);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.game-cover-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: var(--slate-100);
}

.game-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.9);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.game-body {
  padding: 24px;
}

.game-title {
  margin: 0;
  color: var(--slate-900);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}

.game-link:hover .game-title {
  color: #115e59;
}

.game-subtitle {
  margin: 4px 0 0;
  color: var(--slate-600);
  font-size: 0.875rem;
}

.game-description {
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 0.875rem;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
  margin-top: 12px;
}

.game-tag {
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 0.75rem;
  font-weight: 500;
}

.game-developer {
  margin: 12px 0 0;
  color: var(--slate-400);
  font-size: 0.75rem;
}

.about-hero {
  position: relative;
  min-height: 520px;
  padding: 160px 16px 72px;
  overflow: hidden;
  background: linear-gradient(135deg, #10202a, #0a1117);
}

.about-hero-background {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(1px) brightness(0.48);
  transform: scale(1.06);
}

.about-hero-overlay {
  background:
    linear-gradient(120deg, rgba(7, 11, 15, 0.82) 0%, rgba(7, 11, 15, 0.52) 42%, rgba(7, 11, 15, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 11, 15, 0.14) 0%, rgba(7, 11, 15, 0.72) 100%);
}

.about-hero-shell {
  position: relative;
  z-index: 20;
}

.about-hero-copy {
  max-width: 52rem;
}

.about-eyebrow,
.about-kicker {
  margin: 0;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.about-eyebrow {
  color: rgba(243, 247, 251, 0.76);
}

.about-title {
  margin-top: 18px;
}

.about-lead {
  max-width: 44rem;
}

.about-description {
  max-width: 46rem;
}

.about-section {
  padding: 64px 16px 0;
}

.about-page {
  padding-bottom: 32px;
}

.about-section-alt {
  padding-bottom: 64px;
}

.about-section-heading {
  margin-bottom: 24px;
}

.about-section-heading h2 {
  margin: 10px 0 0;
  color: var(--slate-900);
  font-size: 1.75rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.about-intro-grid,
.access-grid {
  display: grid;
  gap: 20px;
}

.about-panel,
.about-message-card,
.company-table-wrap {
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.about-panel {
  padding: 28px 24px;
}

.about-panel h3,
.about-message-card h3 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: 1.1rem;
}

.about-panel p,
.about-message-card p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.9;
}

.about-panel p + p,
.about-message-card p + p {
  margin-top: 12px;
}

.about-message-card {
  padding: 32px 24px;
}

.about-signature {
  color: var(--slate-900) !important;
  font-weight: 700;
}

.company-table-wrap {
  overflow: hidden;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 0;
}

.company-table th {
  width: 32%;
  color: var(--slate-900);
  font-weight: 700;
  background: #f8fafc;
}

.company-table td {
  color: var(--slate-600);
}

.company-table a {
  color: #0f766e;
}

.about-footer {
  padding-top: 56px;
  padding-bottom: 56px;
}

.site-footer {
  padding: 48px 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.8);
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 500;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a,
.footer-column li,
.footer-description {
  color: rgb(156 163 175);
  font-size: 0.875rem;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-description {
  margin: 10px 0 0;
  white-space: pre-line;
}

.footer-socials {
  display: none;
  /*
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  */
}

.footer-socials a {
  color: rgb(156 163 175);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

.external-arrow {
  margin-left: 8px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgb(31 41 55);
  color: rgb(156 163 175);
  font-size: 0.875rem;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: inline-flex;
}

.hidden {
  display: none !important;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@media (min-width: 640px) {
  .hero-shell {
    padding: 0 24px 48px;
  }

  .hero {
    height: calc(75vh + 84px);
    min-height: 720px;
  }

  .hero-title {
    font-size: clamp(2.75rem, 7vw, 4rem);
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    width: auto;
    min-width: 180px;
    padding: 12px 32px;
    font-size: 1rem;
  }

  .hero-dots {
    bottom: 24px;
  }

  .products-section {
    padding-top: 64px;
    padding-inline: 24px;
  }

  .about-hero {
    padding-inline: 24px;
  }

  .about-section {
    padding-inline: 24px;
  }

  .about-page {
    padding-bottom: 40px;
  }

  .section-heading {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 20px;
  }

  .cards-grid {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-intro-grid,
  .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .desktop-only {
    display: inline-flex;
  }

  .mobile-only {
    display: none;
  }

  .hero-arrow {
    display: inline-flex;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .nav-shell {
    padding-inline: 24px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  }

  .about-hero {
    min-height: 560px;
    padding-top: 176px;
  }

  .about-section {
    padding-top: 80px;
    padding-inline: 32px;
  }

  .about-page {
    padding-bottom: 48px;
  }

  .about-section-heading h2 {
    font-size: 2rem;
  }

  .about-message-card {
    padding: 40px 48px;
  }

  .products-section {
    padding-top: 80px;
    padding-inline: 32px;
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
