@font-face {
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./Exo2-VariableFont_wght_p-lADbQPw7dL_0HYNsUMc.ttf") format("truetype");
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("./Manrope-VariableFont_wght_sDlgRrTbPzz-ND3rgD5g9.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --bg: #0d0f12;
  --bg-soft: #13161c;
  --panel: #16181d;
  --panel-strong: #1e222a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f4ef;
  --muted: #9fa2aa;
  --accent: #ffd60a;
  --accent-strong: #ffe45b;
  --ink: #0d0f12;
  --cyan: #55d6be;
  --blue: #00f0ff;
  --green: #90d26d;
  --max: 1160px;
  --header-height: 76px;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 50% -20%, rgba(255, 214, 10, 0.15), transparent 50rem),
    radial-gradient(circle at -10% 40%, rgba(85, 214, 190, 0.07), transparent 40rem),
    radial-gradient(circle at 110% 80%, rgba(0, 240, 255, 0.04), transparent 45rem),
    linear-gradient(180deg, #0d0f12 0%, #111316 50%, #08090a 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Mouse Halo Glow */
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    600px circle at var(--mouse-x, 50vw) var(--mouse-y, 50vh),
    rgba(255, 214, 10, 0.06),
    transparent 80%
  );
  opacity: 0.85;
}

/* Premium Faded Grid */
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  opacity: 0.8;
}

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

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--max));
  min-height: var(--header-height);
  margin: 1rem auto 0;
  padding: 0.6rem 1.5rem;
  background: rgba(20, 23, 27, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  background: rgba(13, 15, 18, 0.85);
  border-color: rgba(255, 214, 10, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45),
              0 0 20px rgba(255, 214, 10, 0.04),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Exo 2", sans-serif;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 3.25rem;
  height: 3.25rem;
  filter: drop-shadow(0 0.75rem 1.4rem rgba(0, 0, 0, 0.36));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.site-nav a,
.social-row a,
.site-footer a {
  color: var(--muted);
  transition: color 250ms ease, background 250ms ease, transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-nav a {
  padding: 0.55rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.social-row a:hover,
.social-row a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(255, 214, 10, 0.3);
  background: rgba(255, 214, 10, 0.06);
  transform: translateY(-1px);
}

.section-shell {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 6.5rem 0;
  position: relative;
}

.section-shell:not(:first-of-type)::before {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  min-height: calc(100svh - var(--header-height));
  padding-top: 3.5rem;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(255, 214, 10, 0.35);
  border-radius: 999px;
  background: rgba(255, 214, 10, 0.08);
  color: var(--accent-strong);
  font-family: "Exo 2", sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Exo 2", sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: clamp(2.7rem, 5vw, 4.35rem);
  font-weight: 700;
  text-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.28);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-lead {
  max-width: 58ch;
  margin-bottom: 1.65rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.mobile-game-peek {
  display: none;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

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

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

.button-primary {
  border: 1px solid rgba(255, 214, 10, 0.85);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--ink);
  box-shadow:
    0 8px 25px rgba(255, 214, 10, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--accent-strong), #fff);
  box-shadow:
    0 12px 30px rgba(255, 214, 10, 0.3),
    0 0 20px rgba(255, 214, 10, 0.1);
  border-color: #fff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 214, 10, 0.4);
  background: rgba(255, 214, 10, 0.06);
  color: #fff;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(255, 214, 10, 0.03);
}

.feature-list {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 28rem);
  isolation: isolate;
}

.phone-stage::before {
  position: absolute;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.12) 0%, rgba(85, 214, 190, 0.05) 45%, transparent 70%);
  filter: blur(40px);
  z-index: -2;
  pointer-events: none;
  content: "";
}

.phone-stage::after {
  position: absolute;
  width: 95%;
  height: 95%;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 240, 255, 0.22);
  z-index: -1;
  pointer-events: none;
  content: "";
  animation: spin-clockwise 24s linear infinite;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.05);
}

.phone-shot {
  width: min(82vw, 18.5rem);
  border-radius: 2rem;
  box-shadow: 0 2.5rem 5.5rem rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12);
  animation: float-phone 6s ease-in-out infinite;
}

.dice-tile {
  position: absolute;
  z-index: -1;
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 28% 28%, currentColor 0 0.38rem, transparent 0.42rem),
    radial-gradient(circle at 72% 28%, currentColor 0 0.38rem, transparent 0.42rem),
    radial-gradient(circle at 50% 50%, currentColor 0 0.38rem, transparent 0.42rem),
    radial-gradient(circle at 28% 72%, currentColor 0 0.38rem, transparent 0.42rem),
    radial-gradient(circle at 72% 72%, currentColor 0 0.38rem, transparent 0.42rem),
    linear-gradient(135deg, #1b1e22, #101215);
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.12),
    inset 0 -4px 8px rgba(0, 0, 0, 0.6),
    0 1.5rem 3.5rem rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.tile-one {
  left: -1.4rem;
  top: 5rem;
  color: var(--cyan);
  transform: rotate(-14deg);
  animation: drift-one 8s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(85, 214, 190, 0.22));
}

.tile-two {
  right: -1rem;
  bottom: 6rem;
  color: var(--blue);
  transform: rotate(14deg);
  animation: drift-two 8s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.22));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.section-heading h2,
.video-copy h2,
.updates-panel h2 {
  max-width: 12ch;
}

.principles {
  display: grid;
  gap: 1rem;
}

.principle-card,
.about-card,
.updates-panel,
.video-frame {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005));
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.principle-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.principle-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--blue));
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.principle-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 214, 10, 0.35);
  background: linear-gradient(145deg, rgba(255, 214, 10, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 2rem 4rem rgba(0, 0, 0, 0.45),
    0 0 30px rgba(255, 214, 10, 0.05);
}

.principle-card p,
.about-copy p,
.updates-panel p,
.site-footer p {
  color: var(--muted);
}

.card-index {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #08090a;
  transform: perspective(1000px) rotateX(1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-frame:hover {
  transform: perspective(1000px) rotateX(0deg) scale(1.015);
  border-color: rgba(255, 214, 10, 0.3);
  box-shadow:
    0 2.5rem 6rem rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 214, 10, 0.08);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-section {
  display: grid;
  gap: 1.5rem;
}

.about-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.avatar {
  width: clamp(5.5rem, 12vw, 8rem);
  border-radius: 999px;
  border: 2px solid rgba(255, 214, 10, 0.15);
  box-shadow:
    0 1.2rem 2.4rem rgba(0, 0, 0, 0.4),
    0 0 0 0.4rem rgba(255, 214, 10, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar:hover {
  transform: scale(1.06) rotate(4deg);
  border-color: rgba(255, 214, 10, 0.5);
  box-shadow:
    0 1.5rem 3rem rgba(0, 0, 0, 0.5),
    0 0 25px rgba(255, 214, 10, 0.2);
}

.about-copy {
  columns: 2 24rem;
  column-gap: 2rem;
}

.about-copy p {
  break-inside: avoid;
  margin-bottom: 1rem;
  font-size: 1.04rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.social-row a {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-row svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.social-row a:hover,
.social-row a:focus-visible {
  color: var(--accent-strong);
  border-color: rgba(255, 214, 10, 0.4);
  background: rgba(255, 214, 10, 0.06);
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(255, 214, 10, 0.08);
}

.updates-section {
  padding-top: 4rem;
}

.updates-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.2rem, 4vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(255, 214, 10, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 0;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(12rem, 0.7fr) minmax(12rem, 0.9fr);
  gap: 1.5rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-family: "Exo 2", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.site-footer h2 {
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 1rem;
}

.site-footer a {
  display: table;
  margin-bottom: 0.4rem;
}

.footer-note {
  margin: 2rem 0 0;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(2rem) scale(0.98);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes float-phone {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-1rem) rotate(1.5deg);
  }
}

@keyframes drift-one {
  0%,
  100% {
    transform: translate(0, 0) rotate(-14deg);
  }
  50% {
    transform: translate(0.7rem, -0.8rem) rotate(-7deg);
  }
}

@keyframes drift-two {
  0%,
  100% {
    transform: translate(0, 0) rotate(14deg);
  }
  50% {
    transform: translate(-0.6rem, 0.75rem) rotate(8deg);
  }
}

@keyframes spin-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   Newsletter Subscription Form
   ========================================================================== */

.subscribe-form {
  margin-top: 1.5rem;
}

.subscribe-form .input-group {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.subscribe-input {
  flex: 1;
  min-height: 3rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.subscribe-input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.subscribe-input:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

.subscribe-input:focus {
  border-color: var(--cyan);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.subscribe-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.subscribe-btn.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

.subscribe-btn .spinner {
  display: none;
  width: 1.1rem;
  height: 1.1rem;
  animation: spin-clockwise 1s linear infinite;
  margin-left: 0.55rem;
}

.subscribe-btn.is-loading .spinner {
  display: inline-block;
}

.subscribe-btn .spinner .path {
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
}

.form-feedback {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  display: none;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.error-feedback {
  color: #ff453a;
  padding-left: 0.5rem;
}

.error-feedback.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.success-feedback {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 240, 255, 0.15);
  background: linear-gradient(145deg, rgba(0, 240, 255, 0.05), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cyan);
  box-shadow: 0 8px 32px rgba(0, 240, 255, 0.05);
  margin-top: 1rem;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-feedback.is-visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.success-feedback svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: var(--cyan);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .subscribe-form .input-group {
    flex-direction: column;
    align-items: stretch;
  }
  .subscribe-btn {
    width: 100%;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    min-height: auto;
  }

  .site-nav {
    justify-content: center;
    width: 100%;
  }

  .hero,
  .split-section,
  .video-section,
  .updates-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .section-heading {
    position: static;
  }

  .section-heading h2,
  .video-copy h2,
  .updates-panel h2 {
    max-width: 16ch;
  }

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

@media (max-width: 620px) {
  :root {
    --header-height: auto;
  }

  body {
    background-size: 26px 26px, 26px 26px, auto, auto;
  }

  .section-shell {
    width: min(100% - 1.25rem, var(--max));
    padding: 4.5rem 0;
  }

  .site-header {
    width: min(100% - 1.25rem, var(--max));
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    top: 0.75rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 52px;
    height: auto;
  }

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

  .brand span {
    display: none;
  }

  .brand img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .site-nav {
    width: auto;
    flex-wrap: nowrap;
    gap: 0.1rem;
    justify-content: flex-end;
  }

  .site-nav a {
    padding: 0.35rem 0.55rem;
    font-size: 0.82rem;
    line-height: 1;
  }

  h1 {
    font-size: clamp(2.1rem, 8vw, 2.8rem);
    max-width: 100%;
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1.15;
  }

  .mobile-game-peek {
    display: none !important;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .phone-shot {
    width: min(74vw, 15rem);
    border-radius: 1.55rem;
  }

  .dice-tile {
    width: 4.15rem;
    height: 4.15rem;
    border-radius: 0.85rem;
  }

  .tile-one {
    left: 0.1rem;
    top: 3rem;
  }

  .tile-two {
    right: 0.1rem;
    bottom: 4rem;
  }

  .principle-card {
    padding: 1.2rem !important;
  }

  .video-frame {
    transform: none !important;
  }

  .video-frame:hover {
    transform: none !important;
  }

  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .about-copy {
    columns: 1;
    text-align: left;
  }

  .updates-panel {
    padding: 1.2rem !important;
  }

  .site-footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .site-footer a {
    margin-left: auto;
    margin-right: auto;
  }
}
