:root {
  --green: #58cc02;
  --green-bright: #63e600;
  --green-action: #248900;
  --green-dark: #167100;
  --green-soft: #eaf8e4;
  --green-pale: #f7fff3;
  --orange: #ff9600;
  --orange-soft: #fff3df;
  --purple: #9854ea;
  --purple-soft: #f5ecff;
  --ink: #17202c;
  --muted: #606b80;
  --line: #dfe8db;
  --white: #fff;
  --shadow: 0 18px 48px rgb(25 70 18 / 10%), 0 3px 10px rgb(15 28 18 / 6%);
  color: var(--ink);
  font-family: Inter, ui-rounded, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  padding-top: 76px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
}

body.signup-modal-open {
  overflow: hidden;
}

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

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

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

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

button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 76px;
  border-bottom: 1px solid rgb(223 232 219 / 78%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--green-action);
  font-weight: 850;
  letter-spacing: -0.045em;
}

.brand {
  gap: 9px;
  font-size: 25px;
  white-space: nowrap;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.brand-bolt {
  width: 22px;
  height: 28px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
  color: #394456;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.footer-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--green-action);
}

.header-cta,
.light-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease;
}

.header-cta {
  min-width: 120px;
  margin-left: 30px;
  background: var(--green);
  box-shadow: 0 7px 0 #3fa900;
  color: var(--white);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--green-bright);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  background: var(--green-pale);
}

.hero-clouds {
  position: absolute;
  z-index: 0;
  bottom: -100px;
  left: 50%;
  width: 1450px;
  max-width: none;
  opacity: 0.2;
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 710px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 590px;
  padding: 34px 0 56px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--green-action);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #cfe5c8;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 22px rgb(37 102 24 / 8%);
}

.hero h1 {
  margin: 24px 0 0;
  font-size: clamp(56px, 6.3vw, 82px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--green-action);
}

.hero-intro {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.app-store-link,
.download-row a {
  display: inline-block;
  border-radius: 11px;
  transition: transform 160ms ease;
}

.app-store-link:hover,
.app-store-link:focus-visible,
.download-row a:hover,
.download-row a:focus-visible {
  transform: translateY(-2px);
}

.app-store-link img {
  width: 198px;
}

.secondary-button {
  display: inline-flex;
  min-width: 205px;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--green-action);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-action);
  font-size: 15px;
  font-weight: 800;
  transition: background-color 160ms ease, transform 160ms ease;
}

.secondary-button img {
  width: 20px;
  height: 20px;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: var(--green-soft);
  transform: translateY(-2px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 25px;
  margin: 30px 0 0;
  padding: 0;
  color: #435064;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-highlights img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.hero-showcase {
  position: relative;
  align-self: end;
  height: 680px;
}

.phone-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 7px solid #152019;
  border-radius: 44px;
  background: var(--white);
  box-shadow: 0 30px 70px rgb(18 58 13 / 23%);
}

.phone-shot img {
  width: 100%;
}

.phone-shot figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 5px 16px rgb(0 0 0 / 16%);
  color: var(--green-action);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-shot-main {
  z-index: 2;
  bottom: -102px;
  left: 20px;
  width: 326px;
  transform: rotate(-3deg);
}

.phone-shot-side {
  z-index: 1;
  right: -15px;
  bottom: -50px;
  width: 268px;
  transform: rotate(5deg);
}

.mode-strip {
  position: relative;
  z-index: 6;
  padding: 28px 0;
  background: var(--white);
}

.mode-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mode-strip-grid article {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 27px;
  box-shadow: 0 13px 30px rgb(25 70 18 / 9%);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.mode-strip-grid article:hover {
  box-shadow: 0 17px 36px rgb(25 70 18 / 14%);
  transform: translateY(-3px);
}

.mode-strip-grid article > img {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.mode-stat-rush {
  border-color: #cce8c2 !important;
  background: #effbe9;
}

.mode-stat-duel {
  border-color: #42ae00 !important;
  background: var(--green);
}

.mode-stat-daily {
  border-color: #ffd49a !important;
  background: var(--orange-soft);
}

.mode-stat-arena {
  border-color: #dfc7ff !important;
  background: var(--purple-soft);
}

.mode-stat-duel > img {
  width: 50px !important;
  height: 62px !important;
  margin-inline: 6px;
}

.mode-stat-arena > img {
  width: 67px !important;
}

.mode-strip-grid strong {
  display: block;
  color: var(--green-action);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.mode-strip-grid span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.mode-stat-duel strong,
.mode-stat-duel span {
  color: var(--white);
}

.mode-stat-daily strong {
  color: #d96f00;
}

.mode-stat-arena strong {
  color: #7130bf;
}

.action-section {
  scroll-margin-top: 96px;
  padding: 96px 0 0;
  background: var(--white);
}

.action-heading {
  margin-bottom: 34px;
}

.action-video-player {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
  border: 7px solid #152019;
  border-radius: 46px;
  background: var(--green-pale);
  box-shadow: 0 28px 70px rgb(18 58 13 / 20%);
}

.action-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.action-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 0 #3fa900, 0 18px 34px rgb(20 83 0 / 24%);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.action-play-button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--white);
}

.action-play-button:hover,
.action-play-button:focus-visible {
  background: var(--green-bright);
  outline: 3px solid var(--orange);
  outline-offset: 5px;
  transform: translate(-50%, calc(-50% - 2px));
}

.action-video-player.is-playing .action-play-button {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
}

.duel-section {
  position: relative;
  margin: 88px 20px 0;
  overflow: hidden;
  border-radius: 48px;
  background: var(--green);
  color: var(--white);
}

.duel-clouds {
  position: absolute;
  right: -60px;
  bottom: -150px;
  width: 1000px;
  max-width: none;
  opacity: 0.16;
}

.duel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 680px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.section-kicker-light {
  color: rgb(255 255 255 / 82%);
}

.duel-copy h2 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(48px, 5.4vw, 70px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.duel-lead {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.45;
}

.duel-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}

.duel-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.duel-points li::before {
  width: 8px;
  height: 8px;
  border: 3px solid var(--white);
  border-radius: 50%;
  content: "";
}

.light-button {
  min-width: 183px;
  margin-top: 34px;
  padding-inline: 24px;
  background: var(--white);
  box-shadow: 0 7px 0 rgb(24 113 0 / 38%);
  color: var(--green-action);
}

.light-button:hover,
.light-button:focus-visible {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.duel-visual {
  align-self: end;
  justify-self: center;
}

.duel-shot {
  width: 344px;
  height: 610px;
  overflow: hidden;
  border: 7px solid #152019;
  border-bottom: 0;
  border-radius: 46px 46px 0 0;
  background: var(--white);
  box-shadow: 0 28px 60px rgb(17 92 0 / 35%);
}

.duel-shot img {
  width: 100%;
}

.modes-section {
  padding: 112px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

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

.game-card {
  position: relative;
  display: grid;
  min-height: 610px;
  grid-template-columns: 1fr 0.9fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
}

.game-card-rush {
  min-height: 570px;
  grid-column: 1 / -1;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--green-soft);
}

.game-card-daily {
  background: var(--orange-soft);
}

.game-card-arena {
  background: var(--purple-soft);
}

.game-card-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 48px;
}

.game-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 18px rgb(29 50 25 / 9%);
  color: var(--green-action);
  font-size: 13px;
  font-weight: 900;
}

.game-card-daily .game-number {
  color: #d96f00;
}

.game-card-arena .game-number {
  color: #7130bf;
}

.game-card h3 {
  margin: 22px 0 0;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.game-card p {
  max-width: 390px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 12px;
  border: 1px solid rgb(36 137 0 / 18%);
  border-radius: 999px;
  background: rgb(255 255 255 / 70%);
  color: #435064;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.game-card-screen {
  align-self: end;
  justify-self: center;
  width: 285px;
  height: 530px;
  overflow: hidden;
  border: 6px solid #17202c;
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
  background: var(--white);
  box-shadow: 0 24px 48px rgb(28 45 25 / 17%);
}

.game-card-screen img {
  width: 100%;
}

.game-card-screen-levels {
  width: 320px;
  height: 500px;
}

.progress-section {
  padding: 0 0 112px;
}

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

.progress-card {
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.progress-card img {
  width: 98px;
  height: 98px;
  margin: 0 auto;
  object-fit: contain;
}

.progress-card h3 {
  margin: 20px 0 0;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.progress-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.download-section {
  padding: 0 0 84px;
}

.download-panel {
  position: relative;
  min-height: 264px;
  overflow: hidden;
  border-radius: 40px;
  background: #2dcb18;
  color: var(--white);
}

.download-clouds {
  position: absolute;
  z-index: 0;
  right: -70px;
  bottom: -145px;
  width: 1120px;
  max-width: none;
  opacity: 0.14;
}

.download-copy {
  position: relative;
  z-index: 3;
  width: 57%;
  padding: 46px 0 0 58px;
}

.download-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.download-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
}

.download-badge {
  width: 196px;
}

.download-row span {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.download-character {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: -35px;
  width: 560px;
  max-width: none;
}

.faq-section {
  padding: 0 0 96px;
}

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

.faq-item {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 12px 34px rgb(25 70 18 / 6%);
}

.faq-item h3 {
  margin: 0;
  color: var(--green-action);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.footer-inner {
  display: grid;
  min-height: 96px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #687085;
  font-size: 11px;
}

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

.footer-brand {
  gap: 7px;
  font-size: 18px;
}

.footer-brand > img:first-child {
  width: 29px;
  height: 29px;
  border-radius: 8px;
}

.footer-bolt {
  width: 16px;
  height: 20px;
  object-fit: contain;
}

.footer-domain {
  padding-left: 17px;
  border-left: 1px solid #d9e1d7;
}

.footer-nav {
  display: flex;
  gap: 28px;
  justify-self: center;
}

.copyright {
  margin: 0;
  justify-self: end;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  background: var(--green-pale);
}

.blog-hero::after {
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 1040px;
  height: 320px;
  background: url("./images/clouds.png") center bottom / contain no-repeat;
  content: "";
  opacity: 0.18;
  pointer-events: none;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
}

.blog-hero h1 {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: anywhere;
}

.blog-hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 550;
  line-height: 1.55;
}

.blog-index-section {
  padding: 86px 0 104px;
}

.blog-index-heading {
  align-items: flex-start;
  text-align: left;
}

.post-list {
  display: grid;
  gap: 24px;
}

.post-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.post-card-image {
  min-height: 100%;
  background: var(--green-soft);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.post-card-copy {
  align-self: center;
  padding: 42px;
}

.post-meta {
  margin: 0;
  color: var(--green-action);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.post-card p:not(.post-meta) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.post-read-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 6px 0 #3fa900;
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  transition: transform 160ms ease, background-color 160ms ease;
}

.post-read-link:hover,
.post-read-link:focus-visible {
  background: var(--green-bright);
  transform: translateY(-2px);
}

.article-page {
  background: var(--white);
}

.article-hero {
  overflow: hidden;
  padding: 64px 0 0;
  background: var(--green-pale);
}

.article-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 850px);
  min-width: 0;
}

.article-hero-copy {
  min-width: 0;
  padding: 26px 0 36px;
}

.article-back-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid #cfe5c8;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-action);
  font-size: 13px;
  font-weight: 850;
}

.article-hero h1 {
  max-width: 920px;
  margin: 22px 0 0;
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.article-dek {
  max-width: 790px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 520;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
  color: #516075;
  font-size: 13px;
  font-weight: 800;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-meta span + span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.article-image-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: -84px;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 8px solid var(--white);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgb(25 70 18 / 18%);
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 64px;
  min-width: 0;
  padding-top: 152px;
  padding-bottom: 104px;
}

.article-sidebar {
  align-self: start;
}

.article-summary {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fbfdfb;
  box-shadow: 0 10px 28px rgb(25 70 18 / 5%);
}

.summary-title {
  margin: 0 0 4px;
  color: var(--green-action);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-summary a {
  color: #435064;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.article-summary a:hover,
.article-summary a:focus-visible {
  color: var(--green-action);
}

.article-content {
  color: #273345;
  font-size: 18px;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.article-content p {
  margin: 0 0 24px;
}

.article-content .article-lead {
  color: var(--ink);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.6;
}

.article-content h2 {
  margin: 48px 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.article-content h3 {
  margin: 30px 0 10px;
  color: var(--green-action);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.article-content a {
  color: var(--green-action);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-callout {
  margin: 38px 0;
  padding: 28px;
  border: 1px solid rgb(255 150 0 / 32%);
  border-radius: 26px;
  background: var(--orange-soft);
}

.article-callout h2 {
  margin: 0 0 10px;
  color: #904f00;
  font-size: 26px;
}

.article-callout p {
  margin: 0;
  color: #5b4630;
}

.article-faq {
  margin-top: 48px;
  padding-top: 4px;
}

.article-sources {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-sources ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding: 32px;
  border-radius: 30px;
  background: #2dcb18;
  color: var(--white);
}

.article-cta h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
}

.article-cta p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgb(255 255 255 / 90%);
  font-size: 16px;
  line-height: 1.55;
}

.article-cta .section-kicker {
  color: rgb(255 255 255 / 82%);
}

.article-app-store-link {
  display: block;
  width: 190px;
  border-radius: 12px;
  transition: transform 160ms ease;
}

.article-app-store-link:hover,
.article-app-store-link:focus-visible {
  transform: translateY(-2px);
}

.signup-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.signup-modal[hidden] {
  display: none;
}

.signup-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.signup-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(12 26 14 / 66%);
  backdrop-filter: blur(10px);
}

.signup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 34px 90px rgb(9 37 5 / 30%);
  color: var(--ink);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.signup-modal.is-open .signup-dialog {
  transform: translateY(0) scale(1);
}

.signup-dialog::before {
  position: absolute;
  inset: 0 0 auto;
  height: 116px;
  background: linear-gradient(135deg, var(--green), var(--orange));
  content: "";
}

.signup-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 7px 16px rgb(22 70 12 / 16%);
  cursor: pointer;
}

.signup-close span,
.signup-close span::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--green-action);
  content: "";
}

.signup-close span {
  transform: rotate(45deg);
}

.signup-close span::after {
  transform: rotate(90deg);
}

.signup-graphic {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 142px;
  place-items: center;
}

.signup-app-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  box-shadow: 0 16px 28px rgb(11 67 0 / 25%);
}

.signup-bolt {
  position: absolute;
  top: 86px;
  right: calc(50% - 78px);
  width: 34px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgb(0 0 0 / 16%));
}

.signup-content {
  position: relative;
  z-index: 2;
  padding: 0 34px 34px;
  text-align: center;
}

.signup-kicker {
  margin: 0;
  color: var(--green-action);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signup-content h2 {
  margin: 10px 0 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.signup-content p {
  margin: 14px auto 0;
  max-width: 350px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.55;
}

.signup-form {
  margin-top: 24px;
}

.signup-email-label {
  display: block;
  margin-bottom: 8px;
  color: #435064;
  font-size: 12px;
  font-weight: 850;
  text-align: left;
}

.signup-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 7px;
  border: 1px solid #d5e4cf;
  border-radius: 16px;
  background: #f8fff5;
}

.signup-field-row input {
  width: 100%;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 650;
}

.signup-field-row input::placeholder {
  color: #9aa5b5;
}

.signup-field-row input:focus-visible {
  outline-offset: 0;
}

.signup-field-row button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  box-shadow: 0 5px 0 #3fa900;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.signup-field-row button:hover,
.signup-field-row button:focus-visible {
  background: var(--green-bright);
}

.signup-field-row button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.signup-company {
  position: absolute;
  left: -9999px;
}

#signup-company {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.signup-error {
  margin-top: 10px !important;
  color: #b8331f !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero h1 {
    font-size: clamp(52px, 6.1vw, 66px);
  }

  .hero-showcase {
    transform: translateX(20px);
  }

  .phone-shot-main {
    left: 0;
    width: 286px;
  }

  .phone-shot-side {
    right: -30px;
    width: 230px;
  }

  .duel-inner {
    gap: 30px;
  }

  .game-card-copy {
    padding: 38px;
  }

  .game-card {
    min-height: 560px;
    grid-template-columns: 1fr 0.82fr;
  }

  .game-card-rush {
    grid-template-columns: 1fr 0.92fr;
  }

  .game-card-screen {
    width: 240px;
    height: 460px;
  }

  .game-card-screen-levels {
    width: 280px;
    height: 470px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 15px;
    padding-block: 20px;
  }

  .footer-nav {
    justify-self: end;
  }

  .copyright {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .post-card-image img {
    min-height: 300px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .article-sidebar {
    order: 2;
  }

  .article-summary {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 680px);
  }

  .site-header {
    height: 68px;
  }

  body {
    padding-top: 68px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    min-width: 108px;
    min-height: 38px;
    margin-left: auto;
    font-size: 12px;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    display: block;
    min-height: 0;
    padding-top: 54px;
  }

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

  .hero h1 {
    font-size: clamp(50px, 11vw, 72px);
  }

  .hero-intro {
    max-width: 590px;
  }

  .hero-showcase {
    width: min(100%, 580px);
    height: 620px;
    margin: 18px auto 0;
    transform: none;
  }

  .phone-shot-main {
    bottom: -105px;
    left: 5%;
    width: 300px;
  }

  .phone-shot-side {
    right: 2%;
    bottom: -66px;
    width: 245px;
  }

  .mode-strip {
    padding-top: 18px;
  }

  .mode-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .duel-section {
    margin: 72px 12px 0;
    border-radius: 38px;
  }

  .action-section {
    padding-top: 76px;
  }

  .action-video-player {
    width: min(330px, 100%);
  }

  .duel-inner {
    display: block;
    padding-top: 70px;
  }

  .duel-copy {
    max-width: 570px;
    margin: 0 auto;
    text-align: center;
  }

  .duel-points {
    justify-content: center;
  }

  .duel-points li {
    justify-content: center;
  }

  .duel-visual {
    display: flex;
    justify-content: center;
    margin-top: 48px;
  }

  .duel-shot {
    width: 315px;
    height: 560px;
  }

  .modes-section {
    padding: 88px 0;
  }

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

  .game-card,
  .game-card-rush {
    min-height: 560px;
    grid-column: auto;
    grid-template-columns: 1fr 0.92fr;
  }

  .game-card-screen,
  .game-card-screen-levels {
    width: 250px;
    height: 470px;
  }

  .progress-section {
    padding-bottom: 88px;
  }

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

  .progress-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 82px 1fr;
    column-gap: 20px;
    align-items: center;
    padding: 25px 30px;
    text-align: left;
  }

  .progress-card img {
    width: 82px;
    height: 82px;
    grid-row: 1 / 3;
  }

  .progress-card h3,
  .progress-card p {
    margin-top: 0;
  }

  .download-copy {
    width: 64%;
    padding: 42px 0 0 38px;
  }

  .download-character {
    right: -72px;
    bottom: -44px;
    width: 500px;
  }

  .blog-hero {
    padding: 72px 0 70px;
  }

  .blog-hero h1 {
    font-size: clamp(42px, 10vw, 64px);
  }

  .post-card-copy {
    padding: 32px;
  }

  .article-hero {
    padding-top: 44px;
  }

  .article-image-wrap {
    margin-bottom: -52px;
  }

  .article-layout {
    padding-top: 106px;
  }

  .article-cta {
    grid-template-columns: 1fr;
  }

  .article-app-store-link {
    width: 184px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 360px);
  }

  .brand {
    gap: 6px;
    font-size: 20px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
  }

  .brand-bolt {
    width: 17px;
    height: 22px;
  }

  .header-cta {
    min-width: 92px;
    box-shadow: 0 5px 0 #3fa900;
  }

  .hero-inner {
    padding-top: 38px;
  }

  .eyebrow {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(43px, 13vw, 61px);
    letter-spacing: -0.06em;
  }

  .hero-intro {
    margin-top: 20px;
    font-size: 17px;
  }

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

  .app-store-link img,
  .secondary-button {
    width: 192px;
  }

  .hero-highlights {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-showcase {
    height: 490px;
    margin-top: 16px;
  }

  .phone-shot {
    border-width: 5px;
    border-radius: 32px;
  }

  .phone-shot-main {
    bottom: -68px;
    left: -5px;
    width: 224px;
  }

  .phone-shot-side {
    right: -7px;
    bottom: -30px;
    width: 183px;
  }

  .phone-shot figcaption {
    right: 9px;
    bottom: 9px;
    padding: 6px 9px;
    font-size: 8px;
  }

  .mode-strip-grid article {
    min-height: 98px;
    gap: 10px;
    padding: 13px;
    border-radius: 22px;
  }

  .mode-strip-grid article > img {
    width: 50px;
    height: 50px;
  }

  .mode-stat-duel > img {
    width: 39px !important;
    height: 50px !important;
    margin-inline: 5px;
  }

  .mode-stat-arena > img {
    width: 52px !important;
  }

  .mode-strip-grid strong {
    font-size: 27px;
  }

  .mode-strip-grid span {
    font-size: 11px;
  }

  .duel-section {
    margin-top: 58px;
    border-radius: 30px;
  }

  .action-section {
    padding-top: 58px;
  }

  .action-heading {
    margin-bottom: 28px;
  }

  .action-video-player {
    width: min(288px, 100%);
    border-width: 5px;
    border-radius: 36px;
  }

  .action-play-button {
    width: 64px;
    height: 64px;
    box-shadow: 0 6px 0 #3fa900, 0 14px 26px rgb(20 83 0 / 22%);
  }

  .action-play-button span {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .duel-inner {
    padding-top: 56px;
  }

  .duel-copy {
    padding-inline: 12px;
  }

  .duel-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .duel-lead {
    font-size: 18px;
  }

  .duel-points {
    font-size: 14px;
  }

  .duel-shot {
    width: 260px;
    height: 465px;
    border-width: 5px;
    border-radius: 36px 36px 0 0;
  }

  .modes-section {
    padding: 74px 0;
  }

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

  .section-heading h2 {
    font-size: 39px;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .game-card,
  .game-card-rush {
    display: block;
    min-height: 690px;
    border-radius: 30px;
  }

  .game-card-copy {
    padding: 34px 28px 25px;
  }

  .game-card h3 {
    font-size: 39px;
  }

  .game-card p {
    font-size: 16px;
  }

  .game-card-screen,
  .game-card-screen-levels {
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 248px;
    height: 430px;
    border-width: 5px;
    border-radius: 34px 34px 0 0;
    transform: translateX(50%);
  }

  .progress-section {
    padding-bottom: 74px;
  }

  .progress-card {
    grid-template-columns: 70px 1fr;
    column-gap: 16px;
    padding: 22px;
    border-radius: 25px;
  }

  .progress-card img {
    width: 70px;
    height: 70px;
  }

  .progress-card h3 {
    font-size: 18px;
  }

  .progress-card p {
    font-size: 13px;
  }

  .download-section {
    padding-bottom: 60px;
  }

  .download-panel {
    min-height: 500px;
    border-radius: 32px;
  }

  .faq-section {
    padding-bottom: 72px;
  }

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

  .faq-item {
    min-height: 0;
    padding: 22px;
    border-radius: 22px;
  }

  .faq-item h3 {
    font-size: 18px;
  }

  .download-copy {
    width: 100%;
    padding: 43px 28px 0;
  }

  .download-copy h2 {
    max-width: 330px;
    font-size: 38px;
  }

  .download-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .download-character {
    right: -92px;
    bottom: -74px;
    width: 448px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding-block: 24px;
    text-align: center;
  }

  .footer-brand-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: center;
    justify-self: center;
  }

  .copyright {
    grid-column: auto;
    justify-self: center;
  }

  .blog-hero {
    padding: 46px 0 58px;
  }

  .blog-hero h1 {
    margin-top: 18px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .blog-hero-lead {
    font-size: 17px;
  }

  .blog-index-section {
    padding: 58px 0 72px;
  }

  .post-card {
    border-radius: 24px;
  }

  .post-card-image img {
    min-height: 220px;
  }

  .post-card-copy {
    padding: 24px;
  }

  .post-card h3 {
    font-size: 29px;
  }

  .post-card p:not(.post-meta) {
    font-size: 15px;
  }

  .article-hero {
    padding-top: 30px;
  }

  .article-hero-copy {
    padding-bottom: 26px;
  }

  .article-hero h1 {
    max-width: calc(100vw - 28px);
    font-size: 30px;
    line-height: 1.08;
    word-break: break-word;
  }

  .article-dek {
    max-width: calc(100vw - 28px);
    font-size: 17px;
  }

  .article-image-wrap {
    margin-bottom: -38px;
  }

  .article-hero-image {
    border-width: 5px;
    border-radius: 24px;
  }

  .article-layout {
    padding-top: 78px;
    padding-bottom: 72px;
  }

  .article-summary {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 22px;
  }

  .article-content {
    font-size: 16px;
  }

  .article-content .article-lead {
    font-size: 18px;
  }

  .article-content h2 {
    margin-top: 38px;
    font-size: 28px;
  }

  .article-content h3 {
    font-size: 19px;
  }

  .article-callout,
  .article-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .article-callout h2 {
    font-size: 22px;
  }

  .signup-modal {
    padding: 16px;
  }

  .signup-dialog {
    border-radius: 24px;
  }

  .signup-dialog::before {
    height: 98px;
  }

  .signup-graphic {
    min-height: 124px;
  }

  .signup-app-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .signup-bolt {
    top: 74px;
    right: calc(50% - 68px);
    width: 30px;
    height: 40px;
  }

  .signup-content {
    padding: 0 22px 26px;
  }

  .signup-content h2 {
    font-size: 29px;
  }

  .signup-field-row {
    grid-template-columns: 1fr;
  }

  .signup-field-row button {
    width: 100%;
  }
}

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

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

  .signup-dialog {
    transform: none;
  }
}
