@font-face {
  font-family: "Big Shoulders";
  src: url("assets/fonts/BigShoulders-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Big Shoulders";
  src: url("assets/fonts/BigShoulders-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/InstrumentSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/InstrumentSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Tektur";
  src: url("assets/fonts/Tektur-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

:root {
  --bg: #08080c;
  --bg-elevated: rgba(14, 15, 24, 0.88);
  --bg-alt: #0f1119;
  --card: #171925;
  --card-hover: #1d2030;
  --text: #f2f3f7;
  --text-soft: #b3b7c7;
  --text-dim: #80859c;
  --border: rgba(255, 255, 255, 0.09);
  --accent: #ff5b2e;
  --accent-2: #ff974a;
  --accent-3: #ffd267;
  --accent-glow: rgba(255, 91, 46, 0.32);
  --gradient-hot: linear-gradient(135deg, #ff4b2b 0%, #ff7a2f 50%, #ffd267 100%);
  --gradient-panel: linear-gradient(180deg, rgba(24, 26, 38, 0.96), rgba(11, 12, 20, 0.96));
  --shadow: 0 22px 90px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Instrument Sans", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 91, 46, 0.16), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(255, 210, 103, 0.11), transparent 24%),
    linear-gradient(180deg, #09090d 0%, #07080d 40%, #0a0c13 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body.preview-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

body::after {
  background:
    radial-gradient(circle at 14% 28%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 60% 66%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px),
    radial-gradient(circle at 30% 78%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
}

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

a {
  color: inherit;
}

button,
a {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 12, 0.62);
  backdrop-filter: blur(18px);
}

.site-nav.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.34);
}

.nav-inner,
.container,
.hero,
.game-section,
.cta-banner,
.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
}

.brand-wordmark {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-soft);
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-cta {
  color: #ffffff;
  background: var(--gradient-hot);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(255, 91, 46, 0.28);
}

.nav-links .nav-cta:hover {
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 6.4rem 0 3rem;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: min(900px, 90vw);
  background: radial-gradient(circle, rgba(255, 91, 46, 0.24) 0%, transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}

.hero-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 91, 46, 0.28);
  background: rgba(255, 91, 46, 0.09);
  color: var(--accent-2);
  font-family: "Tektur", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1.2rem 0 1rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(3.4rem, 10vw, 6.1rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--text-soft);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.hero-stat {
  min-width: 132px;
}

.hero-stat .num {
  font-family: "Big Shoulders", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--accent-3);
}

.hero-stat .label {
  margin-top: 0.3rem;
  color: var(--text-dim);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-cta-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--gradient-hot);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(255, 91, 46, 0.26);
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-btn-alt {
  background: linear-gradient(135deg, #ff8b2c 0%, #ff5b2e 45%, #ff3460 100%);
}

.cta-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.hero-note {
  max-width: 720px;
  margin: 1.2rem auto 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.game-section {
  margin-bottom: 4rem;
}

.game-wrapper {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050507;
  box-shadow: 0 0 70px rgba(255, 91, 46, 0.14), var(--shadow);
}

.game-wrapper.is-expanded {
  position: fixed;
  inset: 1rem;
  z-index: 400;
  border-radius: 28px;
}

.game-wrapper.is-expanded .game-stage {
  height: 100%;
  overflow: auto;
}

.game-expand-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.54);
  color: #ffffff;
  cursor: pointer;
}

.game-expand-btn:hover {
  background: rgba(255, 91, 46, 0.42);
}

.game-stage {
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0, transparent 100px),
    radial-gradient(circle at 70% 10%, rgba(255, 91, 46, 0.14), transparent 30%),
    linear-gradient(180deg, #0c0d13 0%, #07080d 100%);
}

.game-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.status-meta {
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 1rem;
}

.game-panel {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: rgba(14, 15, 23, 0.9);
  overflow: hidden;
}

.camera-frame {
  position: relative;
  min-height: 560px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 210, 103, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 91, 46, 0.16), transparent 28%),
    linear-gradient(180deg, #0f1119 0%, #0b0c13 100%);
}

.camera-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.timer-chip,
.tracking-chip {
  position: absolute;
  left: 1.6rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-family: "Tektur", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.timer-chip {
  top: 1.5rem;
  background: var(--gradient-hot);
  color: #ffffff;
}

.tracking-chip {
  top: 4.3rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.motion-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 230px;
  height: 230px;
}

.ring-two {
  width: 340px;
  height: 340px;
  border-color: rgba(255, 91, 46, 0.22);
}

.motion-figure {
  position: absolute;
  left: 50%;
  top: 53%;
  width: 160px;
  height: 250px;
  transform: translate(-50%, -50%);
}

.motion-head,
.motion-torso,
.motion-arm {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #fff3db 0%, #ffca96 100%);
  box-shadow: 0 0 22px rgba(255, 188, 115, 0.12);
}

.motion-head {
  left: 50%;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.motion-torso {
  left: 50%;
  top: 46px;
  width: 22px;
  height: 122px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.motion-arm {
  top: 64px;
  width: 18px;
  height: 122px;
  border-radius: 999px;
}

.motion-arm.left {
  left: 34px;
  transform: rotate(25deg);
}

.motion-arm.right {
  right: 34px;
  transform: rotate(-25deg);
}

.speed-lines {
  position: absolute;
  right: 2rem;
  top: 2rem;
  display: grid;
  gap: 0.7rem;
}

.speed-lines span {
  display: block;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 91, 46, 0), rgba(255, 91, 46, 0.86));
}

.speed-lines span:nth-child(2) {
  width: 58px;
}

.speed-lines span:nth-child(3) {
  width: 72px;
}

.speed-lines span:nth-child(4) {
  width: 48px;
}

.camera-copy {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.camera-copy strong {
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
}

.camera-copy span {
  color: var(--text-dim);
  max-width: 280px;
}

.data-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.score-card,
.leader-card {
  padding: 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.score-kicker,
.score-foot,
.leader-title {
  display: block;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.score-card strong {
  display: block;
  margin: 0.4rem 0;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(4rem, 18vw, 6.1rem);
  line-height: 0.9;
  color: var(--accent-3);
}

.meter-stack {
  display: grid;
  gap: 0.85rem;
}

.meter-row {
  display: grid;
  gap: 0.35rem;
}

.meter-row span:first-child {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.meter-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.meter-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-hot);
}

.leader-card ol {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.leader-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.leader-card li:last-child {
  border-bottom: 0;
}

.leader-card strong {
  color: var(--accent-3);
}

.game-tip {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.section {
  padding: 5.4rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.022);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-icon {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

.section-title {
  margin: 0;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0 0 1.8rem;
  color: var(--text-soft);
}

.divider {
  width: 74px;
  height: 4px;
  margin: 1rem 0 2rem;
  border-radius: 999px;
  background: var(--gradient-hot);
}

.container > p {
  margin: 0 0 1.1rem;
  max-width: 880px;
  color: var(--text-soft);
}

.features-grid,
.articles-grid,
.shame-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.article-card,
.shame-card {
  min-width: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--gradient-panel);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.article-card {
  text-decoration: none;
}

.feature-card:hover,
.article-card:hover,
.shame-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 47, 0.28);
  background: linear-gradient(180deg, rgba(31, 33, 49, 0.96), rgba(12, 14, 24, 0.96));
}

.card-icon {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
}

.feature-card h3,
.article-card h3,
.shame-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.feature-card p,
.article-card p,
.shame-card p {
  margin: 0;
  color: var(--text-soft);
}

.card-tag,
.score {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--accent-2);
  font-size: 0.82rem;
}

.steps {
  display: grid;
  gap: 1.2rem;
}

.step {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--gradient-hot);
  color: #ffffff;
  font-family: "Big Shoulders", sans-serif;
  font-size: 2rem;
  box-shadow: 0 10px 24px rgba(255, 91, 46, 0.26);
}

.step-content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.step-content p {
  margin: 0;
  color: var(--text-soft);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  border: 0;
  background: none;
  color: var(--text);
  font: inherit;
  font-size: 1.04rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-q:hover {
  color: var(--accent-2);
}

.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease, padding-bottom 220ms ease;
}

.faq-a p {
  margin: 0;
  color: var(--text-soft);
}

.faq-item.is-open .faq-a {
  max-height: 300px;
  padding-bottom: 1.2rem;
}

.faq-item.is-open .arrow {
  transform: rotate(180deg);
  background: rgba(255, 91, 46, 0.16);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  font-size: 0.78rem;
}

.cta-banner {
  padding: 5.2rem 0 6rem;
  text-align: center;
  position: relative;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: auto auto 0 50%;
  transform: translateX(-50%);
  width: min(760px, 88vw);
  height: 340px;
  background: radial-gradient(circle, rgba(255, 91, 46, 0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.cta-banner h2 {
  margin: 0 0 0.6rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.98;
}

.cta-banner p {
  margin: 0 0 1.8rem;
  color: var(--text-dim);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0 4rem;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  font-family: "Big Shoulders", sans-serif;
  font-size: 2rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-soft);
}

.footer-copy {
  max-width: 720px;
  color: var(--text-dim);
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .game-grid,
  .features-grid,
  .articles-grid,
  .shame-grid {
    grid-template-columns: 1fr;
  }

  .camera-frame {
    min-height: 460px;
  }
}

@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.8rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 11, 17, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .nav-inner,
  .container,
  .hero,
  .game-section,
  .cta-banner,
  .footer-inner {
    width: min(var(--max), calc(100% - 1rem));
  }

  .nav-inner {
    min-height: 64px;
  }

  .nav-logo {
    max-width: 190px;
  }

  .hero {
    padding-top: 5.6rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .step {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .step-num {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 1.7rem;
  }

  .camera-frame {
    min-height: 380px;
  }

  .ring-one {
    width: 170px;
    height: 170px;
  }

  .ring-two {
    width: 240px;
    height: 240px;
  }

  .motion-figure {
    top: 55%;
    width: 132px;
    height: 200px;
  }

  .motion-arm.left {
    left: 28px;
  }

  .motion-arm.right {
    right: 28px;
  }

  .camera-copy {
    gap: 0.6rem;
  }

  .camera-copy strong {
    font-size: 1.4rem;
  }

  .game-wrapper.is-expanded {
    inset: 0.5rem;
    border-radius: 20px;
  }

  .section {
    padding: 4rem 0;
  }

  .cta-banner {
    padding: 4rem 0 4.5rem;
  }
}
