:root {
  color-scheme: dark;
  --void: #060c16;
  --deep: #08111f;
  --navy: #0c1428;
  --teal-deep: #091b20;
  --surface: rgba(14, 24, 43, 0.86);
  --surface-strong: rgba(18, 29, 52, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --text: #f5f8ff;
  --text-soft: #c8d3e2;
  --muted: #8fa1b6;
  --neural-cyan: #59e3d6;
  --electric-iris: #7a6bf5;
  --goban-gold: #edab4a;
  --signal-coral: #ff646e;
  --line: rgba(141, 181, 200, 0.19);
  --line-strong: rgba(89, 227, 214, 0.44);
  --display: "Sora", "Avenir Next", sans-serif;
  --body: "Manrope", "Avenir Next", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", monospace;
  --shell: min(1240px, calc(100vw - 56px));
  --header-height: 78px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.28);
  --shadow-phone: 0 45px 110px rgba(0, 0, 0, 0.58);
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--void);
}

body {
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 6%, rgba(89, 227, 214, 0.09), transparent 25rem),
    radial-gradient(circle at 12% 34%, rgba(122, 107, 245, 0.08), transparent 30rem),
    var(--void);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection,
body *::selection {
  color: var(--void);
  background: var(--neural-cyan);
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--neural-cyan);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--void);
  background: var(--neural-cyan);
  font-weight: 800;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(6, 12, 22, 0.7);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(6, 12, 22, 0.91);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  min-height: 44px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand-name strong {
  color: var(--neural-cyan);
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  width: 44px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(89, 227, 214, 0.32);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(89, 227, 214, 0.12), rgba(122, 107, 245, 0.13)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 9px 30px rgba(0, 0, 0, 0.28);
  transform: rotate(-5deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px auto 5px 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.brand-mark i {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 0.83rem;
  font-style: normal;
  font-weight: 800;
}

.brand-mark i:first-child {
  color: var(--neural-cyan);
}

.brand-mark i:last-child {
  color: var(--signal-coral);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.77rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(89, 227, 214, 0.09);
  box-shadow: inset 0 0 0 1px rgba(89, 227, 214, 0.12);
}

.header-inner > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-compact {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 13px;
  font-size: 0.76rem;
}

.button-dark {
  border-color: rgba(89, 227, 214, 0.25);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(89, 227, 214, 0.18), rgba(122, 107, 245, 0.22)),
    var(--surface-strong);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.12);
}

.button-dark:hover {
  border-color: rgba(89, 227, 214, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4), 0 0 28px rgba(89, 227, 214, 0.1);
}

.button-primary {
  color: #041114;
  background: linear-gradient(120deg, var(--neural-cyan), #76d5ee 50%, #8a7cf8);
  box-shadow: 0 18px 45px rgba(35, 167, 166, 0.2), inset 0 1px rgba(255, 255, 255, 0.48);
}

.button-primary:hover {
  box-shadow: 0 24px 56px rgba(35, 167, 166, 0.3), 0 0 32px rgba(89, 227, 214, 0.12);
}

.button-light {
  color: var(--void);
  background: linear-gradient(120deg, var(--neural-cyan), #b8f6ee);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 0.9rem;
}

.apple-glyph {
  position: relative;
  top: -1px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.15rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(89, 227, 214, 0.5);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 940px;
  padding: calc(var(--header-height) + 78px) 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 27%, rgba(89, 227, 214, 0.13), transparent 24rem),
    radial-gradient(circle at 88% 61%, rgba(237, 171, 74, 0.08), transparent 24rem),
    radial-gradient(circle at 42% 24%, rgba(122, 107, 245, 0.09), transparent 31rem),
    linear-gradient(180deg, #07101e 0%, #070e1a 66%, #09121e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.24;
  background-image: radial-gradient(circle, rgba(226, 241, 255, 0.2) 0.7px, transparent 0.8px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -130px;
  z-index: -1;
  height: 320px;
  border-top: 1px solid rgba(89, 227, 214, 0.16);
  background: linear-gradient(180deg, rgba(89, 227, 214, 0.03), transparent 50%);
  transform: rotate(-3deg);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  align-items: center;
  gap: clamp(44px, 7vw, 108px);
  min-height: 700px;
}

.hero-copy {
  padding-bottom: 55px;
}

.eyebrow,
.section-kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--text-soft);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neural-cyan);
  box-shadow: 0 0 0 5px rgba(89, 227, 214, 0.09), 0 0 20px rgba(89, 227, 214, 0.72);
}

.hero h1,
.section-intro h2,
.ranked-copy h2,
.craft-copy h2,
.rules-copy h2,
.cta-content h2,
.faq-heading h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 28px;
  font-size: clamp(3.9rem, 7vw, 6.9rem);
}

.hero h1 em {
  color: var(--neural-cyan);
  font-style: normal;
  text-shadow: 0 0 42px rgba(89, 227, 214, 0.17);
}

.hero-lead {
  max-width: 610px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-board {
  position: absolute;
  top: 76px;
  right: -10vw;
  z-index: 0;
  width: min(70vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(89, 227, 214, 0.17);
  border-radius: 48px;
  opacity: 0.66;
  background-image:
    linear-gradient(rgba(89, 227, 214, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 227, 214, 0.14) 1px, transparent 1px),
    linear-gradient(135deg, rgba(122, 107, 245, 0.07), rgba(89, 227, 214, 0.03));
  background-size: 64px 64px, 64px 64px, auto;
  box-shadow: inset 0 0 120px rgba(6, 12, 22, 0.65);
  transform: perspective(1000px) rotateX(61deg) rotateZ(-12deg) translateY(-10%);
  transform-origin: center;
}

.board-coordinate {
  position: absolute;
  color: rgba(200, 222, 234, 0.4);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.coordinate-a {
  top: 14%;
  left: 10%;
}

.coordinate-b {
  top: 53%;
  right: 12%;
}

.coordinate-c {
  bottom: 8%;
  left: 48%;
}

.hero-stone {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: scale(0.42);
}

.hero-stone-x {
  color: var(--signal-coral);
  background: rgba(255, 100, 110, 0.12);
  box-shadow: 0 0 32px rgba(255, 100, 110, 0.2);
}

.hero-stone-o {
  color: var(--neural-cyan);
  background: rgba(89, 227, 214, 0.11);
  box-shadow: 0 0 32px rgba(89, 227, 214, 0.2);
}

.stone-1 {
  top: 21%;
  left: 31%;
}

.stone-2 {
  top: 32%;
  left: 42%;
}

.stone-3 {
  top: 43%;
  left: 53%;
}

.stone-4 {
  top: 54%;
  left: 64%;
}

.stone-5 {
  top: 65%;
  left: 75%;
}

.winning-trace {
  position: absolute;
  top: 49%;
  left: 28%;
  width: 59%;
  height: 3px;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, var(--neural-cyan), var(--goban-gold), var(--signal-coral));
  box-shadow: 0 0 22px rgba(89, 227, 214, 0.6), 0 0 38px rgba(255, 100, 110, 0.32);
  transform: rotate(45deg) scaleX(0);
  transform-origin: left center;
}

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

.phone {
  position: relative;
  width: 292px;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.34));
}

.phone-hardware {
  position: relative;
  width: 100%;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(180, 219, 230, 0.24);
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(211, 238, 245, 0.36), rgba(89, 227, 214, 0.08) 23%, rgba(14, 20, 35, 0.94) 55%, rgba(122, 107, 245, 0.2));
  box-shadow: var(--shadow-phone), inset 0 1px rgba(255, 255, 255, 0.44), inset 0 -1px rgba(0, 0, 0, 0.7);
}

.phone-hardware::before,
.phone-hardware::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: -3px;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: rgba(150, 180, 197, 0.38);
}

.phone-hardware::before {
  top: 22%;
  height: 62px;
}

.phone-hardware::after {
  top: 34%;
  height: 88px;
}

.phone-speaker {
  display: none;
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  border-radius: 41px;
  background: #07101e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.09), transparent 19%, transparent 78%, rgba(89, 227, 214, 0.04));
  mix-blend-mode: screen;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-hero {
  width: clamp(310px, 28vw, 374px);
  transform: rotate(2.8deg);
}

.match-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 4px;
  min-width: 172px;
  padding: 15px 17px;
  border: 1px solid rgba(89, 227, 214, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(89, 227, 214, 0.1), rgba(122, 107, 245, 0.11)),
    rgba(8, 17, 31, 0.89);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.match-card span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.match-card strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.match-card-top {
  top: 17%;
  left: 2%;
  transform: rotate(-6deg);
}

.match-card-top strong {
  color: var(--signal-coral);
}

.match-card-bottom {
  right: -2%;
  bottom: 16%;
  transform: rotate(5deg);
}

.match-card-bottom strong {
  color: var(--goban-gold);
}

.match-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  list-style: none;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(18px);
}

.match-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.match-strip li:not(:last-child) {
  border-right: 1px solid var(--line);
}

.match-strip span {
  color: var(--neural-cyan);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 68px;
}

.section-intro-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 70px;
  max-width: none;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--neural-cyan);
}

.section-intro h2,
.craft-copy h2,
.rules-copy h2,
.faq-heading h2 {
  font-size: clamp(2.65rem, 5vw, 5.2rem);
}

.section-intro p:last-child,
.craft-copy > p,
.rules-copy > p,
.faq-heading > p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.section-intro h2 + p,
.craft-copy h2 + p,
.rules-copy h2 + p,
.faq-heading h2 + p {
  margin-top: 24px;
}

.modes-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 58%, rgba(89, 227, 214, 0.08), transparent 28rem),
    #08111d;
}

.modes-section::before {
  content: "GAME MODES";
  position: absolute;
  top: 76px;
  right: -22px;
  color: rgba(208, 227, 236, 0.025);
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.mode-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow-panel), inset 0 1px rgba(255, 255, 255, 0.04);
}

.mode {
  min-height: 320px;
  padding: 34px 30px;
  transition: background 200ms ease, transform 200ms ease;
}

.mode:not(:last-child) {
  border-right: 1px solid var(--line);
}

.mode:hover {
  background: linear-gradient(180deg, rgba(89, 227, 214, 0.07), rgba(122, 107, 245, 0.045));
}

.mode-token {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 62px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow: 0 0 30px currentColor;
}

.token-blue {
  color: var(--neural-cyan);
  background: rgba(89, 227, 214, 0.11);
}

.token-red {
  color: var(--signal-coral);
  background: rgba(255, 100, 110, 0.1);
}

.token-ink {
  color: var(--electric-iris);
  background: rgba(122, 107, 245, 0.1);
  border-radius: 21px;
}

.token-gold {
  color: var(--goban-gold);
  background: rgba(237, 171, 74, 0.1);
  border-radius: 21px;
}

.mode-meta,
.story-shot figcaption span,
.feature-lines article > span {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mode h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1.22rem;
  letter-spacing: -0.035em;
}

.mode > p:last-child {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.7;
}

.story-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(89, 227, 214, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 227, 214, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 54%, rgba(122, 107, 245, 0.12), transparent 34rem),
    #070f1b;
  background-size: 74px 74px, 74px 74px, auto, auto;
}

.section-intro-wide h2 {
  max-width: 10ch;
}

.story-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 58px);
  padding-top: 14px;
}

.story-shot {
  position: relative;
  display: grid;
  justify-items: center;
}

.story-shot figcaption {
  display: grid;
  width: 100%;
  max-width: 302px;
  margin-bottom: 22px;
  padding: 0 7px 15px;
  border-bottom: 1px solid var(--line);
}

.story-shot figcaption strong {
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.story-shot .phone {
  width: min(100%, 292px);
}

.story-shot-opening {
  margin-top: 94px;
}

.story-shot-pressure {
  margin-top: 0;
}

.story-shot-finish {
  margin-top: 154px;
}

.story-shot-opening .phone-hardware {
  transform: rotate(-2deg);
}

.story-shot-finish .phone-hardware {
  transform: rotate(2deg);
}

.ranked-section {
  position: relative;
  min-height: 910px;
  overflow: hidden;
  border-top: 1px solid rgba(89, 227, 214, 0.22);
  border-bottom: 1px solid rgba(122, 107, 245, 0.22);
  background:
    radial-gradient(circle at 78% 40%, rgba(89, 227, 214, 0.14), transparent 27rem),
    radial-gradient(circle at 88% 67%, rgba(237, 171, 74, 0.08), transparent 25rem),
    linear-gradient(135deg, #091b20, #0b1225 54%, #11122a);
}

.ranked-grid {
  position: absolute;
  inset: -18% -8% -22% 46%;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(89, 227, 214, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 227, 214, 0.16) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at center, black, transparent 68%);
  transform: perspective(900px) rotateX(58deg) rotateZ(-16deg);
}

.ranked-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(52px, 8vw, 122px);
  min-height: 910px;
}

.section-kicker-dark {
  color: var(--goban-gold);
}

.ranked-copy h2 {
  max-width: 9ch;
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.ranked-copy > p {
  max-width: 560px;
  margin-top: 28px;
  color: var(--text-soft);
  line-height: 1.82;
}

.ranked-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  margin: 34px 0 36px;
  border-block: 1px solid var(--line);
}

.ranked-data div {
  padding: 20px 14px 20px 0;
}

.ranked-data div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.ranked-data div:not(:first-child) {
  padding-left: 17px;
}

.ranked-data dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ranked-data dd {
  color: var(--text);
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 700;
}

.ranked-visual {
  position: relative;
  min-height: 720px;
}

.ranked-phone {
  position: absolute;
  margin: 0;
}

.ranked-phone .phone {
  width: 285px;
}

.ranked-phone-back {
  top: 74px;
  left: 2%;
  z-index: 1;
  opacity: 0.68;
  transform: rotate(-7deg) scale(0.9);
}

.ranked-phone-front {
  top: 0;
  right: 2%;
  z-index: 2;
  transform: rotate(4deg);
}

.ranked-phone-front .phone {
  width: 310px;
}

.ranked-visual .phone-hardware {
  border-color: rgba(89, 227, 214, 0.28);
}

.rank-badge {
  position: absolute;
  right: 36%;
  bottom: 82px;
  z-index: 4;
  padding: 12px 17px;
  border: 1px solid rgba(89, 227, 214, 0.38);
  border-radius: 999px;
  color: var(--neural-cyan);
  background: rgba(6, 12, 22, 0.86);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38), 0 0 24px rgba(89, 227, 214, 0.11);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  backdrop-filter: blur(18px);
}

.craft-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 43%, rgba(122, 107, 245, 0.1), transparent 27rem),
    #070f1b;
}

.craft-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(74px, 10vw, 150px);
}

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

.craft-visual::before {
  content: "";
  position: absolute;
  width: 470px;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 107, 245, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 85px rgba(122, 107, 245, 0.06), 0 0 90px rgba(89, 227, 214, 0.04);
}

.craft-visual::after {
  content: "";
  position: absolute;
  width: 570px;
  aspect-ratio: 1;
  border: 1px dashed rgba(89, 227, 214, 0.13);
  border-radius: 50%;
}

.phone-ranks {
  z-index: 2;
  width: 304px;
  transform: rotate(-2deg);
}

.craft-note {
  position: absolute;
  z-index: 4;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(8, 17, 31, 0.87);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  backdrop-filter: blur(16px);
}

.note-one {
  top: 20%;
  left: 0;
  color: var(--neural-cyan);
  transform: rotate(-5deg);
}

.note-two {
  right: -1%;
  bottom: 22%;
  color: var(--goban-gold);
  transform: rotate(5deg);
}

.craft-copy h2 {
  max-width: 10ch;
}

.feature-lines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.feature-lines article {
  min-height: 174px;
  padding: 25px 26px;
}

.feature-lines article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.feature-lines article:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.feature-lines h3 {
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 0.98rem;
  letter-spacing: -0.025em;
}

.feature-lines p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.rules-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 20%, rgba(237, 171, 74, 0.07), transparent 25rem),
    #09121f;
}

.rules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
  align-items: start;
  gap: clamp(70px, 11vw, 160px);
}

.rules-copy {
  position: sticky;
  top: calc(var(--header-height) + 64px);
}

.rules-copy h2 {
  max-width: 8ch;
}

.rules {
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.rules li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  padding: 35px 4px;
  border-bottom: 1px solid var(--line);
}

.rules li > span {
  color: var(--neural-cyan);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.rules h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.rules p {
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  position: relative;
  min-height: 690px;
  padding: 130px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(89, 227, 214, 0.12), transparent 28rem),
    radial-gradient(circle at 70% 76%, rgba(122, 107, 245, 0.12), transparent 27rem),
    #060c16;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 54px 6%;
  border: 1px solid rgba(89, 227, 214, 0.2);
  border-radius: 54px;
  background:
    linear-gradient(rgba(89, 227, 214, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 227, 214, 0.07) 1px, transparent 1px),
    rgba(255, 255, 255, 0.018);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.3));
}

.final-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 19%;
  width: 62%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--neural-cyan), var(--goban-gold), var(--signal-coral), transparent);
  box-shadow: 0 0 30px rgba(89, 227, 214, 0.42);
  transform: rotate(-8deg);
}

.cta-board {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cta-board span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--neural-cyan);
  background: rgba(89, 227, 214, 0.12);
  box-shadow: 0 0 32px rgba(89, 227, 214, 0.13);
  font-family: var(--display);
  font-weight: 800;
}

.cta-board span:nth-child(1) { top: 29%; left: 17%; color: var(--signal-coral); }
.cta-board span:nth-child(2) { top: 37%; left: 34%; }
.cta-board span:nth-child(3) { top: 26%; right: 36%; color: var(--signal-coral); }
.cta-board span:nth-child(4) { top: 44%; right: 19%; }
.cta-board span:nth-child(5) { bottom: 16%; left: 44%; color: var(--signal-coral); }

.cta-content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  max-width: 860px;
  margin-inline: auto;
  padding: 90px 30px;
  text-align: center;
}

.cta-content .section-kicker {
  color: var(--goban-gold);
}

.cta-content h2 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.cta-content > p {
  margin: 25px 0 34px;
  color: var(--text-soft);
}

.faq-section {
  background: #08111d;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 64px);
}

.faq-heading h2 {
  max-width: 7ch;
}

.faq-heading a {
  color: var(--neural-cyan);
  border-bottom: 1px solid rgba(89, 227, 214, 0.42);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 28px 54px 28px 0;
  cursor: pointer;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 2px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--neural-cyan);
  font-family: var(--mono);
  font-size: 1.1rem;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.faq[open] summary::after {
  background: rgba(89, 227, 214, 0.09);
  transform: translateY(-50%) rotate(45deg);
}

.faq p {
  max-width: 650px;
  padding: 0 54px 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq p a {
  color: var(--neural-cyan);
  border-bottom: 1px solid rgba(89, 227, 214, 0.35);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #060c16;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 128px;
  gap: 30px;
}

.brand-footer {
  justify-self: start;
}

.footer-inner > p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--neural-cyan);
}

.reveal {
  --reveal-order: 0;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order) * 70ms);
}

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

.page-ready .hero-stone {
  animation: stone-in 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-ready .stone-1 { animation-delay: 180ms; }
.page-ready .stone-2 { animation-delay: 300ms; }
.page-ready .stone-3 { animation-delay: 420ms; }
.page-ready .stone-4 { animation-delay: 540ms; }
.page-ready .stone-5 { animation-delay: 660ms; }

.page-ready .winning-trace {
  animation: trace-in 800ms cubic-bezier(0.22, 1, 0.36, 1) 940ms forwards;
}

@keyframes stone-in {
  from {
    opacity: 0;
    transform: scale(0.42);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes trace-in {
  from {
    opacity: 0;
    transform: rotate(45deg) scaleX(0);
  }
  to {
    opacity: 1;
    transform: rotate(45deg) scaleX(1);
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(1240px, calc(100vw - 42px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7vw, 5.5rem);
  }

  .match-card-top {
    left: -4%;
  }

  .match-card-bottom {
    right: -2%;
  }

  .mode {
    padding-inline: 24px;
  }

  .ranked-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
    gap: 38px;
  }

  .ranked-phone-front {
    right: 0;
  }

  .ranked-phone-back {
    left: -3%;
  }

  .craft-layout {
    grid-template-columns: minmax(370px, 0.84fr) minmax(0, 1.16fr);
    gap: 65px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 40px, 720px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    max-width: 690px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(4rem, 11vw, 6.3rem);
  }

  .hero-lead {
    max-width: 650px;
  }

  .hero-board {
    top: 45%;
    right: -36%;
    width: 118vw;
    opacity: 0.52;
  }

  .hero-stage {
    min-height: 760px;
    margin-top: 5px;
  }

  .phone-hero {
    width: min(58vw, 372px);
  }

  .match-card-top {
    top: 17%;
    left: 12%;
  }

  .match-card-bottom {
    right: 10%;
    bottom: 16%;
  }

  .match-strip {
    margin-top: 0;
  }

  .section {
    padding: 108px 0;
  }

  .section-intro-wide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .mode {
    min-height: 280px;
  }

  .mode:nth-child(2) {
    border-right: 0;
  }

  .mode:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .mode-token {
    margin-bottom: 40px;
  }

  .story-track {
    width: calc(100vw - max(20px, (100vw - 720px) / 2));
    margin-right: calc((100vw - min(100vw - 40px, 720px)) / -2);
    padding: 10px 20px 24px 0;
    overflow-x: auto;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(70vw, 340px);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .story-track::-webkit-scrollbar {
    display: none;
  }

  .story-shot,
  .story-shot-opening,
  .story-shot-pressure,
  .story-shot-finish {
    margin-top: 0;
    scroll-snap-align: start;
  }

  .ranked-section {
    min-height: auto;
    padding: 110px 0 30px;
  }

  .ranked-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 60px;
  }

  .ranked-copy h2 {
    max-width: 10ch;
  }

  .ranked-visual {
    width: min(100%, 620px);
    min-height: 720px;
    margin-inline: auto;
  }

  .ranked-phone-back {
    left: 4%;
  }

  .ranked-phone-front {
    right: 4%;
  }

  .craft-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .craft-visual {
    order: 2;
    min-height: 710px;
  }

  .craft-copy {
    order: 1;
  }

  .feature-lines {
    max-width: 680px;
  }

  .rules-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .rules-copy,
  .faq-heading {
    position: static;
  }

  .rules-copy h2,
  .faq-heading h2 {
    max-width: 10ch;
  }

  .cta-board span:nth-child(1),
  .cta-board span:nth-child(4) {
    display: none;
  }

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

  .footer-inner > p {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 32px);
    --header-height: 70px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 9px;
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 39px;
    height: 35px;
  }

  .button-compact {
    min-height: 39px;
    padding-inline: 13px;
    font-size: 0.68rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 54px);
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 15vw, 4.75rem);
    line-height: 1.01;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

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

  .hero-facts {
    margin-top: 25px;
  }

  .hero-facts li {
    font-size: 0.54rem;
  }

  .hero-board {
    top: 53%;
    right: -52%;
    width: 158vw;
    background-size: 46px 46px, 46px 46px, auto;
  }

  .hero-stone {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-stage {
    min-height: 650px;
    margin-top: 6px;
  }

  .phone-hero {
    width: min(74vw, 308px);
  }

  .match-card {
    min-width: 136px;
    padding: 12px 13px;
    border-radius: 15px;
  }

  .match-card span {
    font-size: 0.49rem;
  }

  .match-card strong {
    font-size: 0.7rem;
  }

  .match-card-top {
    top: 15%;
    left: -1%;
  }

  .match-card-bottom {
    right: -2%;
    bottom: 18%;
  }

  .match-strip {
    border-radius: 20px 20px 0 0;
  }

  .match-strip li {
    display: grid;
    justify-items: center;
    gap: 4px;
    min-height: 72px;
    padding: 10px 6px;
    text-align: center;
    font-size: 0.61rem;
    line-height: 1.3;
  }

  .section {
    padding: 88px 0;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .section-intro h2,
  .craft-copy h2,
  .rules-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
    line-height: 1.02;
  }

  .section-intro p:last-child,
  .craft-copy > p,
  .rules-copy > p,
  .faq-heading > p {
    font-size: 0.92rem;
  }

  .mode-rail {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .mode,
  .mode:nth-child(2) {
    display: grid;
    grid-template-columns: 62px 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 18px;
    min-height: 0;
    padding: 25px 23px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mode:last-child {
    border-bottom: 0;
  }

  .mode-token {
    grid-row: 1 / 4;
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .mode-meta {
    margin: 0 0 4px;
  }

  .mode h3 {
    margin-bottom: 5px;
  }

  .story-section {
    background-size: 52px 52px, 52px 52px, auto, auto;
  }

  .story-track {
    width: calc(100vw - 16px);
    margin-right: -16px;
    grid-auto-columns: min(82vw, 320px);
    gap: 20px;
  }

  .story-shot .phone {
    width: min(73vw, 285px);
  }

  .ranked-section {
    padding-top: 88px;
  }

  .ranked-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .ranked-data {
    margin-block: 28px;
  }

  .ranked-data div {
    padding: 15px 8px 15px 0;
  }

  .ranked-data div:not(:first-child) {
    padding-left: 9px;
  }

  .ranked-data dd {
    font-size: 0.72rem;
  }

  .ranked-visual {
    min-height: 585px;
  }

  .ranked-phone .phone {
    width: min(64vw, 250px);
  }

  .ranked-phone-front .phone {
    width: min(69vw, 270px);
  }

  .ranked-phone-back {
    top: 62px;
    left: -7%;
  }

  .ranked-phone-front {
    right: -7%;
  }

  .rank-badge {
    right: 24%;
    bottom: 48px;
  }

  .craft-visual {
    min-height: 610px;
  }

  .craft-visual::before {
    width: 102vw;
  }

  .craft-visual::after {
    width: 124vw;
  }

  .phone-ranks {
    width: min(72vw, 285px);
  }

  .note-one {
    left: -2%;
  }

  .note-two {
    right: -2%;
  }

  .feature-lines {
    grid-template-columns: 1fr;
  }

  .feature-lines article,
  .feature-lines article:nth-child(odd),
  .feature-lines article:nth-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-lines article:last-child {
    border-bottom: 0;
  }

  .rules li {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    padding-block: 28px;
  }

  .rules h3 {
    font-size: 1.15rem;
  }

  .final-cta {
    min-height: 620px;
    padding: 70px 0;
  }

  .final-cta::before {
    inset: 26px 16px;
    border-radius: 32px;
    background-size: 44px 44px;
  }

  .cta-content {
    min-height: 480px;
    padding: 64px 22px;
  }

  .cta-content h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .cta-board span {
    width: 42px;
    height: 42px;
  }

  .cta-board span:nth-child(2) { left: 8%; }
  .cta-board span:nth-child(3) { right: 8%; }
  .cta-board span:nth-child(5) { left: 42%; }

  .faq summary {
    padding-block: 23px;
    font-size: 0.95rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    padding: 35px 0;
  }

  .brand-footer {
    justify-self: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (max-width: 360px) {
  .brand-name {
    font-size: 0.8rem;
  }

  .button-compact {
    padding-inline: 10px;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-stage {
    min-height: 610px;
  }

  .phone-hero {
    width: 77vw;
  }

  .match-card-bottom {
    bottom: 16%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }

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

  .hero-stone,
  .winning-trace {
    opacity: 1;
  }

  .winning-trace {
    transform: rotate(45deg) scaleX(1);
  }
}
