/* HaMi Gaming — Corporate Landing
   Brand tokens mirrored from hamigaming.admin */

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg-primary: #0e0e0e;
  --bg-secondary: #161616;
  --bg-elevated: #1c1c1c;
  --bg-surface: #242424;
  --bg-hover: #2e2e2e;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #8a8a8a;
  --accent: #ff4e1a;
  --accent-hover: #ff6a3d;
  --accent-soft: rgba(255, 78, 26, 0.14);
  --accent-glow: rgba(255, 78, 26, 0.35);
  --success: #2ecc71;
  --warning: #f5a623;
  --info: #4da3ff;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --font: "Outfit", "Segoe UI", system-ui, sans-serif;
  --container: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top right, rgba(255, 78, 26, 0.12), transparent 32%),
    linear-gradient(180deg, #141414 0%, var(--bg-primary) 45%, #0a0a0a 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(14, 14, 14, 0.72);
  border-bottom: 1px solid var(--border);
  transition: background 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(14, 14, 14, 0.92);
  border-bottom-color: var(--border-strong);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo img {
  width: 32px;
  height: 32px;
}

.logo--brand {
  color: var(--accent);
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  padding: 0 0.5rem;
  transition: opacity 150ms ease;
}

.logo-brand-white {
  color: var(--text-primary);
}

.logo--brand:hover {
  opacity: 0.85;
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: color 150ms ease, background 150ms ease;
}

.site-nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  margin-left: 0.35rem;
  background: linear-gradient(135deg, #ff4e1a 0%, #ff7a3d 100%);
  color: #fff !important;
}

.nav-cta:hover {
  filter: brightness(1.08);
  background: linear-gradient(135deg, #ff4e1a 0%, #ff7a3d 100%) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 150ms var(--ease), filter 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff4e1a 0%, #ff7a3d 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 78, 26, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.55;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 14s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: 8%;
  right: 8%;
  background: rgba(255, 78, 26, 0.22);
}

.orb-2 {
  width: min(36vw, 280px);
  height: min(36vw, 280px);
  bottom: 12%;
  left: 10%;
  background: rgba(255, 122, 61, 0.14);
  animation-delay: -4s;
}

.orb-3 {
  width: min(28vw, 200px);
  height: min(28vw, 200px);
  top: 42%;
  left: 42%;
  background: rgba(255, 78, 26, 0.1);
  animation-delay: -8s;
}

.hero-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 78, 26, 0.35);
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 78, 26, 0.2);
  animation: pulse 2.4s ease infinite;
}

.hero-title {
  display: grid;
  gap: 1.85rem;
}

.hero-brand {
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 20%, #ff7a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subhead {
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
  max-width: 22ch;
}

.hero-lead {
  margin-top: 1.5rem;
  max-width: 58ch;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-head h2,
.about-copy h2,
.contact-panel h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Vision */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.vision-item {
  grid-column: span 2;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(28, 28, 28, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 200ms var(--ease), border-color 200ms ease, background 200ms ease;
}

.vision-item:nth-child(4),
.vision-item:nth-child(5) {
  grid-column: span 3;
}

.vision-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 78, 26, 0.35);
  background: rgba(36, 36, 36, 0.85);
}

.vision-item h3 {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.vision-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(36, 36, 36, 0.9), rgba(22, 22, 22, 0.9));
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  transition: transform 200ms var(--ease), border-color 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 78, 26, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 78, 26, 0.08);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.feature-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Games */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.game-card {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 78, 26, 0.35);
  box-shadow: var(--shadow-lg);
}

.game-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-secondary);
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}

.game-card:hover .game-media img {
  transform: scale(1.04);
}

.game-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.game-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--accent-hover);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.game-body h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.game-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Roadmap */
.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 78, 26, 0.15));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  background: var(--bg-primary);
  margin-top: 1.15rem;
}

.timeline-item.is-done .timeline-marker {
  border-color: var(--success);
  background: rgba(46, 204, 113, 0.2);
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.12);
}

.timeline-item.is-progress .timeline-marker {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 4px rgba(255, 78, 26, 0.12);
}

.timeline-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-xl);
  background: rgba(28, 28, 28, 0.8);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.timeline-phase {
  margin-bottom: 0.25rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.status-done {
  background: rgba(46, 204, 113, 0.15);
  color: var(--success);
}

.status-progress {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.status-soon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.about-copy p+p {
  margin-top: 1rem;
}

.about-copy p:not(.eyebrow) {
  color: var(--text-secondary);
}

.about-panel {
  padding: 1.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 78, 26, 0.25);
  background:
    linear-gradient(160deg, rgba(255, 78, 26, 0.12), transparent 55%),
    rgba(22, 22, 22, 0.95);
}

.about-panel li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.35rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 500;
}

.about-panel li:last-child {
  border-bottom: 0;
}

.about-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Partners */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.partner-card {
  padding: 1.6rem;
  min-height: 180px;
  border-radius: var(--radius-xl);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(28, 28, 28, 0.55);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}

.partner-card:hover {
  transform: translateY(-4px);
  border-style: solid;
  border-color: rgba(255, 78, 26, 0.35);
  background: rgba(36, 36, 36, 0.8);
}

.partner-card h3 {
  margin-bottom: 0.65rem;
}

.partner-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Contact */
.contact-panel {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(255, 78, 26, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(36, 36, 36, 0.95), rgba(22, 22, 22, 0.95));
  box-shadow: var(--shadow-lg);
}

.contact-email {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--accent-hover);
  word-break: break-word;
}

.contact-email:hover {
  color: #ff8a5c;
}

.contact-note {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: rgba(10, 10, 10, 0.85);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  max-width: 36ch;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--accent-hover);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.hero-brand.reveal {
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease);
}

.hero-brand.reveal.is-visible {
  filter: none;
}

.hero .reveal:nth-child(1) {
  transition-delay: 60ms;
}

.hero .reveal:nth-child(2) {
  transition-delay: 140ms;
}

.hero .reveal:nth-child(3) {
  transition-delay: 220ms;
}

.hero .reveal:nth-child(4) {
  transition-delay: 300ms;
}

@keyframes float {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -24px, 0) scale(1.05);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 78, 26, 0.18);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 78, 26, 0.05);
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-brand {
  background-size: 180% 180%;
  animation: gradient-shift 8s ease infinite;
}

/* Legal pages */
.legal-page {
  padding: 4rem 0 5rem;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.legal-page h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
}

/* Responsive */
@media (max-width: 960px) {

  .feature-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .vision-item,
  .vision-item:nth-child(4),
  .vision-item:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    padding: 1rem;
    background: rgba(14, 14, 14, 0.96);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease), opacity 220ms ease;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .game-grid,
  .feature-grid,
  .partner-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.25rem 0 4rem;
    min-height: auto;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-subhead {
    max-width: none;
  }
}

@media (max-width: 375px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

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

  .reveal,
  .hero-brand.reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .orb,
  .hero-badge::before,
  .hero-brand {
    animation: none;
  }

  .feature-card:hover,
  .game-card:hover,
  .vision-item:hover,
  .partner-card:hover {
    transform: none;
  }
}