@import url("https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #e9ebee;
  --bg-soft: #dbe1e6;
  --panel: #f4f6f8;
  --panel-2: #dfe7ee;
  --ink: #0f1216;
  --ink-muted: #2b3540;
  --ink-soft: #65727e;
  --deep: #05070b;
  --deep-2: #0b1017;
  --steel: #253341;
  --steel-hot: #445b71;
  --blue: #c9d2de;
  --cyan: #91a7b0;
  --red: #253341;
  --red-hot: #445b71;
  --amber: #ffbd39;
  --green: #00c777;
  --line: rgba(0, 0, 0, 0.14);
  --line-strong: rgba(0, 0, 0, 0.28);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow-xl: 0 42px 130px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 22px 62px rgba(0, 0, 0, 0.14);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.1);
  --radius-page: 24px;
  --radius-panel: 16px;
  --radius-card: 8px;
  --max: 1320px;
  --ease-out: cubic-bezier(0.21, 0.9, 0.31, 1.02);
  --ease-snap: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(37, 51, 65, 0.1), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(145, 167, 176, 0.14), transparent 26%),
    linear-gradient(180deg, #eef1f4, #e4eaf0 42%, #d9e1e8 100%);
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  color: inherit;
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23000000' fill-opacity='.18'%3E%3Ccircle cx='16' cy='31' r='1'/%3E%3Ccircle cx='44' cy='14' r='1'/%3E%3Ccircle cx='90' cy='11' r='1'/%3E%3Ccircle cx='122' cy='28' r='1'/%3E%3Ccircle cx='164' cy='19' r='1'/%3E%3Ccircle cx='27' cy='65' r='1'/%3E%3Ccircle cx='55' cy='74' r='1'/%3E%3Ccircle cx='99' cy='59' r='1'/%3E%3Ccircle cx='142' cy='69' r='1'/%3E%3Ccircle cx='169' cy='53' r='1'/%3E%3Ccircle cx='13' cy='106' r='1'/%3E%3Ccircle cx='40' cy='123' r='1'/%3E%3Ccircle cx='84' cy='114' r='1'/%3E%3Ccircle cx='130' cy='131' r='1'/%3E%3Ccircle cx='167' cy='117' r='1'/%3E%3Ccircle cx='22' cy='163' r='1'/%3E%3Ccircle cx='68' cy='167' r='1'/%3E%3Ccircle cx='108' cy='149' r='1'/%3E%3Ccircle cx='145' cy='172' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: soft-light;
  background: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.04) 3px,
    transparent 4px
  );
}

.global-glow {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(86px);
}

.global-glow-a {
  top: -190px;
  left: -140px;
  width: 520px;
  height: 520px;
  background: rgba(37, 51, 65, 0.16);
  animation: slowMoveA 18s ease-in-out infinite;
}

.global-glow-b {
  right: -170px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  background: rgba(145, 167, 176, 0.16);
  animation: slowMoveB 20s ease-in-out infinite;
}

@keyframes slowMoveA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(36px, 52px) scale(1.1);
  }
}

@keyframes slowMoveB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-42px, -28px) scale(1.08);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
  background: rgba(238, 241, 244, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background 0.35s var(--ease-snap),
    border-color 0.35s var(--ease-snap);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.18);
  background: rgba(238, 241, 244, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 13px 24px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
  padding: 4px 8px 4px 4px;
  border-radius: 14px;
}

.brand img {
  width: 52px;
  height: 52px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.86);
  object-fit: contain;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.brand span {
  display: grid;
  line-height: 1;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
}

.brand em {
  color: var(--steel);
  font-style: normal;
  font-size: 0.86rem;
}

.brand strong {
  color: #0b0f14;
  font-size: 1.32rem;
  letter-spacing: 0.7px;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.22s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--steel), var(--amber));
  transition: width 0.22s ease;
}

.desktop-nav a:hover {
  color: #05070b;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  gap: 10px;
}

.header-app-btn,
.header-discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    border-color 0.22s ease;
}

.header-app-btn {
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(95deg, var(--steel), var(--steel-hot));
  box-shadow: 0 12px 26px rgba(37, 51, 65, 0.24);
}

.header-discord-btn {
  color: #171b21;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.64);
}

.header-app-btn:hover,
.header-discord-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-content: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: #101418;
  transition:
    transform 0.28s var(--ease-out),
    opacity 0.2s ease;
}

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

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

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

.mobile-nav {
  display: grid;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: #eef1f4;
  transition:
    max-height 0.36s var(--ease-out),
    border-color 0.26s ease;
}

.mobile-nav a {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #11161c;
  font-weight: 800;
}

.mobile-nav a:hover {
  background: rgba(0, 0, 0, 0.04);
}

.mobile-nav.is-open {
  max-height: 360px;
  border-top-color: rgba(0, 0, 0, 0.12);
}

.mobile-main-cta {
  color: #fff !important;
  background: linear-gradient(90deg, var(--steel), var(--steel-hot));
}

main,
.site-footer {
  position: relative;
  z-index: 3;
}

.hero {
  position: relative;
  isolation: isolate;
  max-width: none;
  min-height: calc(100vh - 220px);
  margin: 0;
  padding: 78px 24px 26px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(
      1120px 600px at 24% 0%,
      #90a8ad 0%,
      #90a8ad 42%,
      transparent 43%
    ),
    radial-gradient(circle at 84% 10%, rgba(37, 51, 65, 0.13), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.46), transparent 34%),
    linear-gradient(180deg, #eceef0, #e6eaed 34%, #dfe6eb 78%, #d8e0e6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(15, 18, 22, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 18, 22, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero-bg-orbit {
  position: absolute;
  right: max(-8vw, -90px);
  top: 8%;
  z-index: -1;
  width: min(62vw, 880px);
  aspect-ratio: 1;
  border: 1px solid rgba(37, 51, 65, 0.12);
  border-radius: 999px;
  opacity: 0.42;
}

.hero-bg-orbit::before,
.hero-bg-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(37, 51, 65, 0.1);
  border-radius: inherit;
}

.hero-bg-orbit::after {
  inset: 27%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.74),
    rgba(151, 169, 176, 0.5)
  );
  color: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.95px;
}

.section-head .eyebrow,
.download-copy .eyebrow {
  border-color: rgba(0, 0, 0, 0.15);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(191, 205, 215, 0.6));
  color: #111820;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 6.4vw, 6.7rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #0f1216;
}

.hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(180deg, #101317 0%, #2b3b4a 42%, #445b71 78%, #6e8795 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy .lead {
  max-width: 620px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-store-row {
  margin-top: 26px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 8px;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.store-badge img {
  width: auto;
  height: 55px;
}

.store-badge:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
}

.discord-cta,
.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 23px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.discord-cta {
  color: #13171c;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.65);
}

.cta-primary {
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(95deg, var(--steel), var(--steel-hot));
  box-shadow: 0 18px 38px rgba(37, 51, 65, 0.24);
}

.cta-secondary {
  color: #13171c;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.discord-cta:hover,
.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.phone-stage {
  position: relative;
  width: 100%;
  min-height: 500px;
  max-width: 650px;
  margin-left: auto;
  justify-self: end;
  perspective: 1400px;
}

.phone-card {
  position: absolute;
  display: grid;
  gap: 10px;
  width: 210px;
  will-change: transform;
}

.phone-card span {
  justify-self: center;
  padding: 7px 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #27313c;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.phone-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 19.3;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 34px;
  background:
    linear-gradient(145deg, #f7f8fa 0%, #aeb8c2 11%, #11161d 12%, #05070b 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 0 0 7px rgba(0, 0, 0, 0.92),
    0 34px 90px rgba(0, 0, 0, 0.42);
}

.phone-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  z-index: 3;
  width: 58px;
  height: 15px;
  border-radius: 0 0 12px 12px;
  background: #05070b;
  transform: translateX(-50%);
}

.phone-shell::after {
  content: "";
  position: absolute;
  top: 84px;
  left: -3px;
  z-index: 4;
  width: 3px;
  height: 58px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, #d7dde4, #6d7884);
}

.phone-shell img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  background: #fff;
}

.phone-main {
  top: -18px;
  left: 30%;
  z-index: 3;
  width: 248px;
  transform: rotateY(-6deg) rotateZ(1deg);
}

.phone-left {
  top: 76px;
  left: 8%;
  z-index: 2;
  width: 190px;
  transform: rotateY(11deg) rotateZ(-7deg);
}

.phone-right {
  top: 74px;
  right: 3%;
  z-index: 1;
  width: 190px;
  transform: rotateY(-12deg) rotateZ(7deg);
}

.hero-ribbon {
  position: relative;
  z-index: 5;
  max-width: var(--max);
  margin: 14px auto 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55),
    rgba(152, 171, 178, 0.45)
  );
}

.ribbon-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  padding: 11px 22px;
  white-space: nowrap;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: moveTrack 24s linear infinite;
}

.ribbon-track span + span::before {
  content: "/";
  margin-right: 18px;
  color: rgba(0, 0, 0, 0.38);
}

@keyframes moveTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-44%);
  }
}

section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 24px;
}

.section-head {
  max-width: 900px;
  margin-bottom: 28px;
}

.section-head h2,
.download-copy h2,
.community-copy h2,
.split-copy h2,
.legal-hero h1 {
  margin: 12px 0 0;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.showcase-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  align-content: start;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #f9fbfc, #dfe8ef);
  box-shadow: var(--shadow-md);
}

.showcase-device {
  display: grid;
  place-items: center;
  min-height: 318px;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background:
    radial-gradient(circle at 50% 30%, rgba(37, 51, 65, 0.14), transparent 42%),
    linear-gradient(180deg, #f7fafc, #dce7ef);
}

.showcase-shell {
  width: min(166px, 68%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 24px 55px rgba(0, 0, 0, 0.22);
}

.showcase-card:nth-child(2) .showcase-shell {
  width: min(156px, 64%);
}

.showcase-card:nth-child(3) .showcase-shell {
  width: min(162px, 66%);
}

.showcase-copy {
  padding: 18px;
}

.showcase-card span,
.method-card span {
  display: inline-flex;
  color: var(--steel);
  font-family: "Anton", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.8px;
}

.showcase-card h3,
.method-card h3,
.drill-card h3,
.comp-col h3 {
  margin: 6px 0 8px;
  color: #10151b;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.88rem;
  letter-spacing: 0.8px;
  line-height: 1;
}

.showcase-card p,
.method-card p,
.drill-card p,
.drill-card span,
.comp-col li,
.faq-a p,
.download-copy p,
.community-copy p {
  color: var(--ink-muted);
  line-height: 1.66;
}

.showcase-card p {
  margin: 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.method-card {
  position: relative;
  min-height: 226px;
  overflow: hidden;
  padding: 20px 16px 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 51, 65, 0.13), transparent 42%),
    linear-gradient(175deg, rgba(255, 255, 255, 0.88), rgba(224, 233, 239, 0.92));
}

.method-card p {
  margin: 0;
  font-size: 0.94rem;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 16px;
  align-items: stretch;
}

.split-copy,
.community {
  color: #fff;
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 0 0, rgba(145, 167, 176, 0.24), transparent 34%),
    radial-gradient(circle at 100% 24%, rgba(68, 91, 113, 0.3), transparent 34%),
    linear-gradient(155deg, #111923, #06090e 74%);
}

.split-copy {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.split-copy .eyebrow,
.community-copy .eyebrow {
  color: #fff;
}

.split-copy h2,
.community-copy h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.7vw, 4.4rem);
}

.split-copy p,
.community-copy p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.split-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.split-copy li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
}

.split-copy li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--cyan));
  box-shadow: 0 0 0 4px rgba(145, 167, 176, 0.16);
}

.split-media {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 51, 65, 0.14), transparent 42%),
    linear-gradient(180deg, #f3f6f8, #cdd9e3);
  box-shadow: var(--shadow-lg);
}

.mini-phone {
  display: grid;
  place-items: center;
  min-height: 450px;
  padding: 26px;
}

.mini-phone img {
  width: min(260px, 78%);
  aspect-ratio: 9 / 19.3;
  object-fit: cover;
  object-position: top center;
  border: 10px solid #111720;
  border-radius: 34px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

.stats-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.stats-stack article {
  min-height: 96px;
  padding: 16px 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
}

.stats-stack article:last-child {
  border-right: 0;
}

.stats-stack strong {
  display: block;
  color: #0f151a;
  font-family: "Anton", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.9px;
}

.stats-stack small {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.drill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.drill-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 20px 17px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-card);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.88), rgba(221, 231, 237, 0.92));
}

.drill-card::before {
  content: "";
  position: absolute;
  top: -52px;
  right: -52px;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(145, 167, 176, 0.28), rgba(145, 167, 176, 0));
}

.drill-card p {
  position: relative;
  margin: 0 0 10px;
  font-size: 0.97rem;
}

.drill-card span {
  position: relative;
  display: block;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.82fr);
  gap: 22px;
  max-width: calc(var(--max) - 48px);
  margin-top: 70px;
  margin-bottom: 70px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-xl);
}

.community-copy .cta-primary {
  margin-top: 22px;
}

.community-banner {
  align-self: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.community-banner img {
  width: 100%;
  aspect-ratio: 1024 / 500;
  object-fit: cover;
  object-position: center;
}

.comparison-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.comp-col {
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-card);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.88), rgba(223, 233, 239, 0.92));
}

.comp-col.strong {
  border-color: rgba(68, 91, 113, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(68, 91, 113, 0.14),
    0 22px 46px rgba(37, 51, 65, 0.14);
}

.comp-col ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comp-col li {
  position: relative;
  padding-left: 26px;
}

.comp-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-soft);
}

.comp-col.strong li::before {
  top: 7px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--amber), var(--cyan));
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(224, 233, 239, 0.94));
}

.faq-q {
  position: relative;
  width: 100%;
  padding: 17px 52px 17px 18px;
  border: 0;
  background: transparent;
  color: #121921;
  font-size: 0.98rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-q::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--ink-soft);
  font-size: 1.25rem;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.faq-item.is-open .faq-q::after {
  color: #11171d;
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}

.faq-a p {
  margin: 0;
  padding: 0 18px 17px;
}

.download {
  padding-top: 72px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.48fr);
  align-items: center;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 51, 65, 0.15), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(145, 167, 176, 0.17), transparent 36%),
    linear-gradient(145deg, #f6f8fa, #dae4eb);
  box-shadow: var(--shadow-xl);
}

.download-copy h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
}

.download-copy p {
  max-width: 650px;
  margin: 12px 0 0;
}

.download-card .store-row {
  margin-top: 20px;
}

.download-card .discord-cta {
  color: #12171d;
  border-color: rgba(0, 0, 0, 0.17);
  background: rgba(255, 255, 255, 0.72);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.55px;
}

.download-art {
  display: grid;
  place-items: center;
}

.download-art img {
  max-height: 320px;
  width: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.25));
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(10, 14, 20, 0), #05070b 22%, #030407 100%);
  color: #fff;
}

.footer-top,
.footer-links-grid,
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 14px;
  padding-top: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

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

.footer-brand img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.footer-brand h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 1.28rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-brand p,
.footer-news p,
.footer-links-grid a,
.footer-bottom small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand p {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

.footer-news h4 {
  margin: 0 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.8px;
}

.footer-news p {
  max-width: 560px;
  margin: 0 0 14px;
  line-height: 1.6;
}

.footer-review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-review-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.56px;
}

.footer-review-links a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-links-grid h5 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-grid a {
  display: block;
  padding: 5px 0;
  font-size: 0.89rem;
}

.footer-links-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.footer-mini-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
}

.footer-mini-ribbon span + span::before {
  content: "/";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.34);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: 320px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(9, 12, 16, 0.94);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up,
.reveal-zoom,
.showcase-card,
.method-card,
.drill-card,
.phone-card,
.hero-copy {
  will-change: transform, opacity;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.94);
}

.is-revealed {
  opacity: 1;
  transform: none;
}

.legal-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 24px 70px;
}

.legal-hero {
  margin-bottom: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius-panel);
  background: linear-gradient(140deg, #f3f5f7, #dce5eb);
  box-shadow: var(--shadow-lg);
}

.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.legal-hero p {
  max-width: 900px;
  margin: 8px 0 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.legal-card {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius-panel);
  background: linear-gradient(180deg, #f5f7f8, #e2eaf0 75%);
}

.legal-card h2 {
  margin: 22px 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 1px;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.legal-nav a {
  padding: 8px 11px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.legal-nav a.is-current,
.legal-nav a:hover {
  border-color: rgba(0, 0, 0, 0.34);
  background: rgba(255, 255, 255, 0.72);
  color: #11161b;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 880px;
  }

  .phone-stage {
    min-height: 470px;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }

  .phone-main {
    top: -22px;
    left: 30%;
  }

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

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

  .feature-split,
  .community,
  .download-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 880px) {
  .desktop-nav,
  .header-app-btn,
  .header-discord-btn {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 4.4rem);
  }

  .phone-stage {
    min-height: 395px;
  }

  .phone-card {
    width: 166px;
  }

  .phone-main {
    top: -6px;
    width: 210px;
  }

  .phone-left {
    top: 84px;
    left: 2px;
  }

  .phone-right {
    top: 86px;
    right: 2px;
  }

  .footer-top,
  .footer-links-grid,
  .comparison-wrap {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .header-inner {
    padding-inline: 14px;
  }

  section,
  .hero,
  .footer-top,
  .footer-links-grid,
  .footer-bottom,
  .legal-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 8px;
  }

  .hero-grid {
    gap: 8px;
  }

  .hero-copy h1 {
    margin: 14px 0;
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 0.94;
  }

  .hero-copy .lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-store-row {
    margin-top: 20px;
  }

  .hero-ribbon {
    display: none;
  }

  .hero-store-row {
    align-items: flex-start;
  }

  .store-badge img {
    height: 48px;
  }

  .discord-cta,
  .cta-primary,
  .cta-secondary {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.78rem;
  }

  .phone-stage {
    min-height: 318px;
  }

  .phone-card span {
    font-size: 0.64rem;
  }

  .phone-main {
    top: -2px;
    left: 30%;
    width: min(178px, 52vw);
  }

  .phone-left,
  .phone-right {
    width: min(126px, 38vw);
    opacity: 0.86;
  }

  .phone-left {
    left: -36px;
  }

  .phone-right {
    right: -36px;
  }

  .showcase-grid,
  .method-grid,
  .drill-grid,
  .stats-stack {
    grid-template-columns: minmax(0, 1fr);
  }

  .showcase-device {
    min-height: 276px;
    padding: 18px;
  }

  .showcase-shell {
    width: min(148px, 52%);
  }

  .showcase-card:nth-child(2) .showcase-shell {
    width: min(140px, 50%);
  }

  .showcase-card:nth-child(3) .showcase-shell {
    width: min(144px, 51%);
  }

  .split-copy,
  .community,
  .download-card,
  .legal-card,
  .legal-hero {
    padding: 20px;
  }

  .mini-phone {
    min-height: 360px;
  }

  .stats-stack article {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
  }

  .stats-stack article:last-child {
    border-bottom: 0;
  }

  .download-art img {
    max-height: 260px;
  }

  .footer-mini-ribbon {
    gap: 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 430px) {
  .phone-stage {
    min-height: 304px;
  }

  .phone-main {
    top: -4px;
    width: 168px;
  }

  .phone-left,
  .phone-right {
    width: 118px;
  }
}

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