:root {
  --bg: #060a14;
  --bg-deep: #030711;
  --panel: rgba(13, 19, 34, 0.78);
  --panel-strong: rgba(15, 22, 39, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.038);
  --stroke: rgba(255, 255, 255, 0.1);
  --stroke-strong: rgba(143, 170, 255, 0.18);
  --text: #f7f8fd;
  --muted: rgba(222, 228, 244, 0.74);
  --muted-soft: rgba(204, 214, 238, 0.52);
  --cyan: #1fe2ff;
  --teal: #56ffd0;
  --violet: #9f88ff;
  --violet-deep: #6f5dff;
  --rose: #f65eab;
  --coral: #ff7267;
  --gold: #ffc645;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 12% 14%, rgba(31, 226, 255, 0.14), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(159, 136, 255, 0.16), transparent 24%),
    radial-gradient(circle at 70% 78%, rgba(246, 94, 171, 0.1), transparent 20%),
    linear-gradient(180deg, #040915 0%, #050911 38%, #03050c 100%);
}

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

.ambient,
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-left {
  background: radial-gradient(circle at 10% 20%, rgba(31, 226, 255, 0.12), transparent 0 28%);
}

.ambient-right {
  background: radial-gradient(circle at 84% 22%, rgba(159, 136, 255, 0.16), transparent 0 28%);
}

.grain {
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.24) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 78%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin: 18px 0 14px;
  padding: 15px 18px;
  background: rgba(8, 13, 25, 0.76);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(154, 182, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: white;
  background: linear-gradient(135deg, rgba(31, 226, 255, 0.92), rgba(159, 136, 255, 0.82));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 26px rgba(31, 226, 255, 0.2);
}

.brand-wordmark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.nav {
  display: inline-flex;
  justify-content: center;
  gap: 28px;
  color: rgba(237, 241, 252, 0.76);
  font-size: 15px;
}

.nav a,
.footer-links-block a,
.footer-bottom a {
  transition: color 180ms ease;
}

.nav a:hover,
.footer-links-block a:hover,
.footer-bottom a:hover {
  color: white;
}

.store-cta,
.button-primary,
.button-secondary {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-cta {
  justify-self: end;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(111, 93, 255, 0.96), rgba(159, 136, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 34px rgba(111, 93, 255, 0.28);
}

.store-cta:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.hero-panel,
.info-card,
.mechanic-card,
.shot-card,
.privacy-panel,
.footer-panel {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(17, 24, 40, 0.72), rgba(8, 13, 23, 0.92));
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  align-items: center;
  min-height: 860px;
  padding: 58px 48px;
  border-radius: 38px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(31, 226, 255, 0.12), transparent 22%),
    radial-gradient(circle at 92% 12%, rgba(159, 136, 255, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%);
  pointer-events: none;
}

.hero-copy,
.hero-stage,
.section,
.footer-panel,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 181, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(216, 224, 246, 0.72);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.privacy-copy h2,
.footer-download h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.hero-copy h1 {
  margin-top: 22px;
  font-size: clamp(4rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  display: block;
}

.gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--violet) 44%, var(--rose) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p,
.section-heading p,
.info-card p,
.mechanic-card p,
.privacy-copy p,
.privacy-item p,
.footer-brand-block p,
.footer-download p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 34rem;
  margin: 28px 0 0;
  font-size: 24px;
  line-height: 1.68;
}

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

.button-primary,
.button-secondary {
  min-height: 58px;
  padding: 16px 24px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, rgba(111, 93, 255, 0.98), rgba(159, 136, 255, 0.98));
  box-shadow: 0 18px 36px rgba(111, 93, 255, 0.28);
}

.button-secondary {
  color: rgba(248, 249, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: rgba(216, 224, 246, 0.68);
  font-size: 15px;
}

.hero-meta span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  vertical-align: middle;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 14px rgba(31, 226, 255, 0.3);
}

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

.stage-ring,
.stage-dot {
  position: absolute;
}

.stage-ring {
  border-radius: 999px;
  border: 1px solid rgba(191, 205, 255, 0.14);
}

.ring-one {
  width: 360px;
  height: 248px;
  right: 4%;
  top: 19%;
  transform: rotate(18deg);
}

.ring-two {
  width: 490px;
  height: 330px;
  left: 2%;
  bottom: 7%;
  transform: rotate(-17deg);
}

.stage-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.dot-cyan {
  top: 42%;
  right: 11%;
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(31, 226, 255, 0.6);
}

.dot-violet {
  top: 16%;
  left: 9%;
  background: var(--violet);
  box-shadow: 0 0 26px rgba(159, 136, 255, 0.56);
}

.dot-gold {
  bottom: 17%;
  right: 3%;
  background: var(--gold);
  box-shadow: 0 0 26px rgba(255, 198, 69, 0.52);
}

.phone-frame {
  position: relative;
  width: 410px;
  padding: 16px;
  border-radius: 54px;
  background: linear-gradient(180deg, rgba(23, 28, 43, 0.98), rgba(10, 14, 25, 1));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: rotate(8deg);
}

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

.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 150px;
  height: 32px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #02040b;
  z-index: 2;
}

.phone-screen {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  padding: 18px 18px 20px;
  border-radius: 38px;
  background: linear-gradient(180deg, #07111b 0%, #120918 100%);
}

.status-row,
.game-topbar,
.hud-card,
.next-card,
.pressure-card {
  position: relative;
  z-index: 1;
}

.status-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.game-topbar {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
}

.icon-chip {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

.game-title {
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.glass-card {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hud-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 24px;
}

.score-stack strong,
.next-card strong,
.pressure-card strong {
  display: block;
}

.mini-label,
.pressure-label {
  display: block;
  color: rgba(223, 229, 246, 0.56);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.score-stack strong {
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 46px;
  line-height: 0.92;
}

.rule-pill {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 226, 255, 0.28);
  color: rgba(247, 249, 255, 0.92);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  background: rgba(20, 41, 57, 0.58);
}

.next-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 22px;
}

.next-orb {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: radial-gradient(circle at 34% 34%, rgba(255,255,255,0.56), transparent 0 22%), var(--gold);
  box-shadow: 0 0 24px rgba(255, 198, 69, 0.44);
}

.next-card strong {
  margin-top: 5px;
  font-size: 28px;
  font-family: "Space Grotesk", sans-serif;
}

.jar-frame {
  position: relative;
  height: 390px;
  margin-top: 18px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(173, 164, 117, 0.6), rgba(127, 23, 80, 0.7));
  border: 10px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.jar-frame::before,
.jar-frame::after {
  content: "";
  position: absolute;
  top: 58px;
  bottom: 20px;
  width: 12px;
  background: rgba(0, 0, 0, 0.4);
}

.jar-frame::before {
  left: 24px;
}

.jar-frame::after {
  right: 24px;
}

.jar-highlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.92), transparent 0 14%),
    linear-gradient(78deg, transparent 66%, rgba(255, 255, 255, 0.08) 74%, transparent 82%);
}

.overflow-line {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 102px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 114, 103, 0.18), rgba(255, 114, 103, 0.92), rgba(255, 114, 103, 0.18));
  box-shadow: 0 0 18px rgba(255, 114, 103, 0.44);
}

.drop-guide {
  position: absolute;
  top: 84px;
  bottom: 36px;
  left: 41%;
  width: 2px;
  background: linear-gradient(180deg, rgba(31, 226, 255, 0.72), rgba(31, 226, 255, 0.08));
  opacity: 0.6;
}

.drop-guide::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(31, 226, 255, 0.48);
}

.orb {
  position: absolute;
  border-radius: 999px;
  box-shadow: inset -10px -8px 18px rgba(0, 0, 0, 0.12);
}

.orb::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 26%;
  width: 28%;
  height: 18%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.orb-a,
.orb-c {
  background: #65d8b0;
}

.orb-b,
.orb-e {
  background: #dbab2c;
}

.orb-d,
.orb-f {
  background: #f06854;
}

.orb-a {
  width: 82px;
  height: 82px;
  left: 42px;
  bottom: 18px;
}

.orb-b {
  width: 72px;
  height: 72px;
  left: 134px;
  bottom: 16px;
}

.orb-c {
  width: 82px;
  height: 82px;
  left: 210px;
  bottom: 18px;
}

.orb-d {
  width: 58px;
  height: 58px;
  left: 302px;
  bottom: 20px;
}

.orb-e {
  width: 62px;
  height: 62px;
  left: 274px;
  bottom: 112px;
  opacity: 0.86;
}

.orb-f {
  width: 48px;
  height: 48px;
  left: 342px;
  bottom: 20px;
}

.pressure-card {
  display: block;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 22px;
}

.pressure-card strong {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.45;
}

.section {
  margin-top: 72px;
  scroll-margin-top: 120px;
}

.section-heading {
  margin-bottom: 32px;
}

.center-heading {
  text-align: center;
}

.center-heading .eyebrow {
  margin-bottom: 18px;
}

.center-heading p {
  max-width: 44rem;
  margin: 18px auto 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: end;
}

.section-heading h2,
.privacy-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p,
.privacy-copy p {
  font-size: 18px;
  line-height: 1.72;
}

.rule-grid,
.mechanic-grid,
.shots-grid {
  display: grid;
  gap: 22px;
}

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

.info-card,
.mechanic-card,
.shot-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.info-card {
  min-height: 380px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  margin-bottom: 22px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
}

.cyan-icon::before {
  inset: 12px;
  border: 3px solid var(--cyan);
  border-radius: 999px;
}

.rose-icon::before {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  left: 9px;
  top: 17px;
  background: var(--rose);
  box-shadow: 18px 0 0 var(--rose);
}

.rose-icon::after {
  left: 18px;
  top: 11px;
  width: 14px;
  height: 30px;
  border: 2px solid var(--rose);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.coral-icon::before {
  left: 10px;
  right: 10px;
  top: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--coral);
}

.violet-icon::before {
  inset: 12px;
  border-radius: 50% 50% 42% 42%;
  border: 2px solid var(--violet);
  border-bottom: 0;
}

.violet-icon::after {
  left: 18px;
  right: 18px;
  bottom: 12px;
  height: 14px;
  border-radius: 999px;
  background: rgba(159, 136, 255, 0.2);
}

.info-card h3,
.mechanic-head strong,
.privacy-item h3,
.footer-download h3,
.footer-links-block h4 {
  margin: 0;
}

.info-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  line-height: 1.08;
}

.info-card p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

.rule-visual {
  position: relative;
  margin-top: auto;
  height: 116px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  overflow: hidden;
}

.rule-visual::before,
.rule-visual::after {
  content: "";
  position: absolute;
}

.visual-guides::before {
  left: 34px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(31, 226, 255, 0.9), rgba(31, 226, 255, 0.1));
}

.visual-guides::after {
  width: 16px;
  height: 16px;
  left: 27px;
  top: 20px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(31, 226, 255, 0.5);
}

.visual-orbs::before {
  width: 34px;
  height: 34px;
  left: 30px;
  bottom: 24px;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 72px 0 0 rgba(246, 94, 171, 0.82), 144px 0 0 rgba(255, 198, 69, 0.9), 216px -18px 0 rgba(246, 94, 171, 0.58);
}

.visual-overflow::before {
  left: 26px;
  right: 26px;
  top: 28px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 114, 103, 0.14), rgba(255, 114, 103, 0.88), rgba(255, 114, 103, 0.14));
}

.visual-overflow::after {
  width: 34px;
  height: 34px;
  left: 50px;
  bottom: 18px;
  border-radius: 999px;
  background: #65d8b0;
  box-shadow: 0 -34px 0 rgba(101, 216, 176, 0.84), 0 -68px 0 rgba(101, 216, 176, 0.68), 96px 0 0 #dbab2c;
}

.visual-wave::before {
  inset: 22px;
  background:
    radial-gradient(circle at 18% 58%, rgba(31, 226, 255, 0.8), transparent 0 20%),
    radial-gradient(circle at 46% 36%, rgba(159, 136, 255, 0.78), transparent 0 20%),
    radial-gradient(circle at 74% 66%, rgba(31, 226, 255, 0.5), transparent 0 18%);
  filter: blur(12px);
}

.mechanics-section {
  margin-top: 84px;
}

.mechanic-grid {
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.mechanic-card {
  min-height: 320px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.featured-mechanic {
  background: linear-gradient(180deg, rgba(12, 25, 38, 0.92), rgba(8, 16, 28, 0.96));
}

.mechanic-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mechanic-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(222, 228, 244, 0.78);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mechanic-head strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
}

.mechanic-card p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.mechanic-preview {
  position: relative;
  margin-top: auto;
  height: 96px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012));
  overflow: hidden;
}

.preview-gravity .preview-orb,
.preview-impact::before,
.preview-impact::after,
.preview-viscosity::before,
.preview-viscosity::after,
.preview-bounce::before,
.preview-bounce::after {
  position: absolute;
}

.preview-gravity .preview-orb {
  top: 34px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
}

.left-orb {
  left: 34px;
  background: #65d8b0;
}

.right-orb {
  right: 34px;
  background: #65d8b0;
}

.preview-track {
  position: absolute;
  left: 82px;
  right: 82px;
  top: 47px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 226, 255, 0.08), rgba(31, 226, 255, 0.75), rgba(31, 226, 255, 0.08));
}

.preview-impact::before {
  width: 30px;
  height: 30px;
  left: 44px;
  bottom: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.preview-impact::after {
  inset: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 198, 69, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 114, 103, 0.16);
}

.preview-viscosity::before {
  width: 26px;
  height: 26px;
  left: 34px;
  bottom: 22px;
  border-radius: 999px;
  background: #65d8b0;
  box-shadow: 46px -8px 0 #dbab2c, 88px -16px 0 #f06854;
}

.preview-viscosity::after {
  left: 28px;
  right: 28px;
  top: 26px;
  height: 40px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(86, 255, 208, 0.12), rgba(86, 255, 208, 0.02));
}

.preview-bounce::before {
  width: 26px;
  height: 26px;
  left: 36px;
  top: 34px;
  border-radius: 999px;
  background: var(--rose);
}

.preview-bounce::after {
  left: 66px;
  right: 30px;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(246, 94, 171, 0.14), rgba(246, 94, 171, 0.88), rgba(31, 226, 255, 0.12));
  transform: skewX(-18deg);
}

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

.shot-card {
  padding: 10px;
}

.shot-hero {
  grid-column: span 6;
  aspect-ratio: 1.12;
}

.shot-detail {
  grid-column: span 2;
  aspect-ratio: 0.72;
}

.shot-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #08131f 0%, #130919 100%);
}

.shot-screen::before,
.shot-screen::after {
  content: "";
  position: absolute;
}

.shot-screen::before {
  left: 16px;
  right: 16px;
  top: 18px;
  height: 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.shot-screen::after {
  left: 28px;
  right: 28px;
  bottom: 24px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.shot-one {
  background:
    linear-gradient(180deg, rgba(16, 28, 42, 0.2), rgba(18, 10, 24, 0.2)),
    linear-gradient(180deg, #0a1724 0%, #201025 100%);
}

.shot-two {
  background:
    radial-gradient(circle at 20% 65%, rgba(255, 198, 69, 0.26), transparent 0 16%),
    linear-gradient(180deg, #111722 0%, #3e2234 100%);
}

.shot-three {
  background:
    radial-gradient(circle at 74% 28%, rgba(31, 226, 255, 0.2), transparent 0 18%),
    linear-gradient(180deg, #0a1420 0%, #18253c 100%);
}

.shot-four {
  background:
    radial-gradient(circle at 30% 26%, rgba(159, 136, 255, 0.2), transparent 0 16%),
    linear-gradient(180deg, #150d24 0%, #2b1438 100%);
}

.shot-hero-screen {
  padding: 18px;
}

.shot-top-pill {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.shot-score-block {
  position: absolute;
  left: 22px;
  top: 58px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shot-score-block span,
.shot-rule-badge,
.detail-chip {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(231, 237, 250, 0.72);
}

.shot-score-block strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  color: white;
}

.shot-rule-badge {
  position: absolute;
  right: 22px;
  top: 62px;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(20, 41, 57, 0.58);
  border: 1px solid rgba(31, 226, 255, 0.22);
}

.shot-jar {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 126px;
  bottom: 22px;
  border-radius: 24px;
  border: 8px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(173, 164, 117, 0.56), rgba(127, 23, 80, 0.66));
  overflow: hidden;
}

.shot-overflow-line {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 72px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 114, 103, 0.18), rgba(255, 114, 103, 0.88), rgba(255, 114, 103, 0.18));
}

.shot-guide {
  position: absolute;
  top: 54px;
  bottom: 28px;
  left: 42%;
  width: 2px;
  background: linear-gradient(180deg, rgba(31, 226, 255, 0.64), rgba(31, 226, 255, 0.04));
}

.shot-guide::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 999px;
  background: var(--cyan);
}

.shot-orb {
  position: absolute;
  border-radius: 999px;
}

.shot-orb::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 24%;
  width: 28%;
  height: 18%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.orb-cyan { background: #65d8b0; }
.orb-gold { background: #dbab2c; }
.orb-coral { background: #f06854; }

.shot-orb.a { width: 64px; height: 64px; left: 44px; bottom: 18px; }
.shot-orb.b { width: 58px; height: 58px; left: 118px; bottom: 16px; }
.shot-orb.c { width: 70px; height: 70px; left: 186px; bottom: 18px; }
.shot-orb.d { width: 52px; height: 52px; right: 84px; bottom: 20px; }
.shot-orb.e { width: 56px; height: 56px; right: 24px; bottom: 18px; }

.shot-detail {
  display: block;
}

.detail-chip {
  position: absolute;
  left: 22px;
  top: 22px;
}

.detail-line,
.detail-panel,
.detail-stack,
.warm-row::before {
  position: absolute;
}

.detail-line {
  left: 22px;
  right: 22px;
  bottom: 24px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.short-line {
  right: 72px;
}

.detail-panel {
  left: 22px;
  right: 22px;
  top: 58px;
  height: 84px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.detail-stack {
  left: 22px;
  right: 22px;
  top: 64px;
  bottom: 54px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 78%, rgba(246, 94, 171, 0.72), transparent 0 16%),
    radial-gradient(circle at 54% 64%, rgba(255, 198, 69, 0.68), transparent 0 16%),
    radial-gradient(circle at 70% 80%, rgba(31, 226, 255, 0.52), transparent 0 18%),
    rgba(255, 255, 255, 0.04);
}

.warm-row::before {
  content: "";
  left: 22px;
  right: 22px;
  bottom: 54px;
  height: 96px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 72%, rgba(246, 94, 171, 0.92), transparent 0 16%),
    radial-gradient(circle at 50% 72%, rgba(214, 89, 161, 0.84), transparent 0 16%),
    radial-gradient(circle at 78% 72%, rgba(255, 198, 69, 0.92), transparent 0 16%),
    rgba(255, 255, 255, 0.04);
}

.screenshots-section {
  margin-top: 96px;
}

.privacy-section {
  margin-top: 42px;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
}

.privacy-points {
  display: grid;
  gap: 16px;
}

.privacy-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: rgba(31, 226, 255, 0.06);
  border: 1px solid rgba(31, 226, 255, 0.16);
}

.privacy-item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.privacy-item p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.68;
}

.availability-section {
  margin-top: 42px;
}

.availability-panel {
  display: block;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(10, 17, 30, 0.86), rgba(10, 14, 24, 0.96));
  box-shadow: var(--shadow);
}

.availability-copy h2,
.legal-panel h1 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.availability-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.availability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.availability-grid,
.support-grid {
  display: grid;
  gap: 16px;
}

.availability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.availability-card,
.support-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.availability-kicker {
  display: block;
  color: rgba(214, 223, 246, 0.58);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.availability-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.availability-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.footer-panel {
  display: grid;
  grid-template-columns: 1.04fr 0.86fr 0.96fr;
  gap: 24px;
  margin-top: 42px;
  padding: 30px;
  border-radius: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand-block p,
.footer-download p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.72;
}

.footer-links-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.footer-links-block h4 {
  color: rgba(246, 248, 255, 0.94);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links-block a {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.footer-download {
  padding: 4px 0;
}

.footer-download h3 {
  margin-top: 18px;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.footer-download .button-primary {
  margin-top: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 4px 40px;
  color: rgba(210, 217, 236, 0.56);
  font-size: 14px;
}

.footer-bottom div {
  display: inline-flex;
  gap: 24px;
}

.legal-body {
  min-height: 100vh;
}

.legal-shell {
  padding-bottom: 40px;
}

.legal-main {
  padding-top: 8px;
}

.legal-panel {
  margin-top: 18px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(16, 23, 38, 0.82), rgba(8, 12, 21, 0.96));
  box-shadow: var(--shadow);
}

.legal-intro {
  max-width: 48rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.legal-copy {
  margin-top: 28px;
}

.legal-copy h2,
.support-card h2 {
  margin: 28px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.legal-copy p {
  max-width: 52rem;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-copy a,
.support-card a {
  color: var(--cyan);
}

.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.support-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.support-card a {
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal-delay {
  transition-delay: 90ms;
}

.reveal-delay-1 {
  transition-delay: 110ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 250ms;
}

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

@media (max-width: 1180px) {
  .hero-panel,
  .privacy-panel,
  .footer-panel,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

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

  .featured-mechanic {
    grid-column: span 2;
  }

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

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

  .availability-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .shot-hero,
  .shot-detail {
    aspect-ratio: 0.88;
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 22px, 100%);
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .store-cta {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }

  .hero-panel {
    padding: 34px 22px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .phone-frame {
    width: min(100%, 390px);
    transform: none;
  }

  .rule-grid,
  .mechanic-grid,
  .shots-grid,
  .footer-links-block,
  .availability-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .featured-mechanic {
    grid-column: auto;
  }

  .shot-hero,
  .shot-detail {
    aspect-ratio: 0.92;
  }

  .privacy-item {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .availability-panel,
  .legal-panel {
    padding: 24px 20px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 14px;
  }
}
