@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/archivo-black.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --display: "Archivo Black", Inter, ui-sans-serif, system-ui, sans-serif;
  --bg: #f7f4ee;
  --ink: #161616;
  --muted: #6b6258;
  --panel: #ffffff;
  --line: #ded7ca;
  --yellow: #ffd166;
  --teal: #2ec4b6;
  --red: #ef476f;
  --green: #63c132;
  --blue: #2f80ed;
  --shadow: 0 18px 40px rgba(42, 33, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle, rgba(22, 22, 22, 0.045) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.32), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(46, 196, 182, 0.16), transparent 21rem),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 42%, #f3efe7 100%);
  background-size: 22px 22px, auto, auto, auto;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.content-page {
  min-height: 100vh;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid #1f1f1f;
  border-radius: 7px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 #1f1f1f;
  font-size: 0.95rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.brand:hover .brand-mark {
  transform: translate(-2px, -3px) rotate(-2deg);
  box-shadow: 7px 8px 0 #1f1f1f;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 2px;
  background: #1f1f1f;
}

.brand-mark::before {
  top: 6px;
  right: 7px;
  width: 6px;
  height: 6px;
}

.brand-mark::after {
  left: 7px;
  bottom: 7px;
  width: 4px;
  height: 4px;
}

.nav a,
.site-footer a,
.text-link {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--ink);
}

.intro {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 74px 0 62px;
  text-align: center;
}

.status {
  margin: 0;
  color: #8f4c00;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.55rem, 7.2vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-orbit {
  position: absolute;
  z-index: 1;
  display: block;
  border: 2px solid #1f1f1f;
  pointer-events: none;
}

.orbit-one {
  top: 20px;
  right: max(0px, calc((100vw - 1120px) / 2 - 6px));
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #2ec4b6;
  box-shadow: 6px 6px 0 #1f1f1f;
  animation: float-orbit-one 7s ease-in-out infinite;
}

.orbit-two {
  left: max(6px, calc((100vw - 1120px) / 2 + 10px));
  bottom: 2px;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #ef476f;
  box-shadow: 5px 5px 0 #1f1f1f;
  transform: rotate(-11deg);
  animation: float-orbit-two 8s ease-in-out infinite;
}

.orbit-three {
  right: max(16px, calc((100vw - 1120px) / 2 + 44px));
  bottom: 0;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 5px 5px 0 #1f1f1f;
  transform: rotate(10deg);
  animation: float-orbit-three 9s ease-in-out infinite;
}

.orbit-four {
  top: 56px;
  left: max(14px, calc((100vw - 1120px) / 2 + 54px));
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 4px 4px 0 #1f1f1f;
  animation: float-orbit-four 6.6s ease-in-out infinite;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 26px 0 22px;
  text-align: center;
}

.section-heading h2,
.about h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  letter-spacing: 0;
}

.section-heading p {
  flex: 1 1 280px;
  max-width: 390px;
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 650;
}

.cards {
  display: grid;
  gap: 18px;
}

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

.game-card {
  position: relative;
  z-index: 1;
  min-height: 328px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid #222;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 6px 6px 0 #222;
  transform: translateY(0) rotate(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.game-card:hover {
  transform: translate(-4px, -6px) rotate(-0.35deg);
  box-shadow: 12px 14px 0 #222;
}

.game-card:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
}

.game-card.large {
  min-height: 460px;
}

.card-art {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.large .card-art {
  min-height: 290px;
}

.card-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.card-body strong {
  font-size: 1.35rem;
  line-height: 1.08;
}

.card-body span:last-child {
  color: var(--muted);
  font-weight: 600;
}

.circle-card .card-art {
  background: #e9fbf8;
}

.circle-target {
  width: 170px;
  aspect-ratio: 1;
  border: 8px solid var(--teal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #14564f;
  animation: circle-breathe 3.8s ease-in-out infinite;
}

.circle-line {
  position: absolute;
  width: 194px;
  height: 194px;
  border: 4px dashed #1f1f1f;
  border-radius: 48% 52% 51% 49%;
  transform: rotate(-18deg);
  animation: circle-drift 8s linear infinite;
}

.dot {
  position: absolute;
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
}

.dot-one {
  top: 62px;
  right: 25%;
  animation: dot-bob-one 3.6s ease-in-out infinite;
}

.dot-two {
  left: 23%;
  bottom: 52px;
  background: var(--yellow);
  animation: dot-bob-two 4.2s ease-in-out infinite;
}

.circle-card:hover .circle-line {
  animation-duration: 3.8s;
}

.circle-card:hover .circle-target {
  animation-duration: 2.1s;
}

.reaction-card .card-art {
  background: #fff0f4;
}

.timer-face {
  z-index: 1;
  min-width: 178px;
  padding: 22px 20px;
  border: 4px solid #1f1f1f;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  box-shadow: 8px 8px 0 #1f1f1f;
  font-size: 3.3rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.pulse {
  position: absolute;
  border: 4px solid rgba(239, 71, 111, 0.45);
  border-radius: 50%;
}

.pulse-one {
  width: 220px;
  aspect-ratio: 1;
}

.pulse-two {
  width: 310px;
  aspect-ratio: 1;
}

.mini-grid {
  grid-template-columns: repeat(4, 36px);
  grid-auto-rows: 36px;
  gap: 9px;
  background: #eef4ff;
}

.mini-grid span {
  border-radius: 7px;
  background: var(--blue);
  border: 2px solid #1f1f1f;
}

.mini-grid .odd {
  background: var(--yellow);
}

.memory-tiles {
  grid-template-columns: repeat(4, 46px);
  gap: 10px;
  background: #f3f0ff;
}

.memory-tiles span {
  display: grid;
  place-items: center;
  height: 62px;
  border: 2px solid #1f1f1f;
  border-radius: 7px;
  background: #9b5de5;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
}

.color-bars {
  grid-template-columns: repeat(4, 36px);
  align-items: end;
  gap: 10px;
  background: #f6ffe9;
}

.color-bars span {
  width: 36px;
  border: 2px solid #1f1f1f;
  border-radius: 7px 7px 0 0;
}

.color-bars span:nth-child(1) {
  height: 60px;
  background: var(--green);
}

.color-bars span:nth-child(2) {
  height: 110px;
  background: var(--red);
}

.color-bars span:nth-child(3) {
  height: 82px;
  background: var(--yellow);
}

.color-bars span:nth-child(4) {
  height: 136px;
  background: var(--teal);
}

.number-stack {
  grid-template-columns: repeat(3, 58px);
  gap: 10px;
  background: #fff6df;
}

.number-stack span {
  display: grid;
  place-items: center;
  height: 74px;
  border: 2px solid #1f1f1f;
  border-radius: 7px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 #1f1f1f;
  font-size: 1.8rem;
  font-weight: 950;
}

.maze-lines {
  grid-template-columns: repeat(2, 80px);
  grid-auto-rows: 54px;
  gap: 12px;
  background: #e9fff8;
}

.maze-lines span {
  border: 9px solid #1f1f1f;
  border-radius: 8px;
}

.maze-lines span:nth-child(1) {
  border-right-color: transparent;
}

.maze-lines span:nth-child(2) {
  border-left-color: transparent;
}

.maze-lines span:nth-child(3) {
  border-top-color: transparent;
}

.maze-lines span:nth-child(4) {
  border-bottom-color: transparent;
}

.block-stack {
  align-items: end;
  grid-template-columns: repeat(4, 42px);
  gap: 9px;
  background: #fff0ea;
}

.block-stack span {
  border: 2px solid #1f1f1f;
  border-radius: 6px;
  background: var(--red);
}

.block-stack span:nth-child(1) {
  height: 48px;
}

.block-stack span:nth-child(2) {
  height: 88px;
  background: var(--yellow);
}

.block-stack span:nth-child(3) {
  height: 128px;
  background: var(--teal);
}

.block-stack span:nth-child(4) {
  height: 70px;
  background: var(--green);
}

.site-footer {
  margin-top: 84px;
  min-height: 86px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 2px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.page-hero {
  max-width: 820px;
  padding: 86px 0 34px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 5.4vw, 3.7rem);
  text-align: left;
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 620;
}

.content-section {
  max-width: 820px;
  padding: 22px 0;
}

.content-section h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.content-section p,
.content-section li {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 570;
}

.content-section ul {
  margin: 0;
  padding-left: 1.25rem;
}

.content-section li + li {
  margin-top: 8px;
}

.contact-card {
  display: inline-grid;
  gap: 10px;
  margin-top: 10px;
  padding: 18px;
  border: 2px solid #1f1f1f;
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 #1f1f1f;
}

.contact-card strong {
  font-size: 1.1rem;
}

.contact-card a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@keyframes float-orbit-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-8px, 12px, 0) rotate(8deg);
  }
}

@keyframes float-orbit-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-11deg);
  }

  50% {
    transform: translate3d(10px, -8px, 0) rotate(-2deg);
  }
}

@keyframes float-orbit-three {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(10deg);
  }

  50% {
    transform: translate3d(-8px, -12px, 0) rotate(17deg);
  }
}

@keyframes float-orbit-four {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(9px, 7px, 0) scale(1.08);
  }
}

@keyframes circle-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes circle-drift {
  from {
    transform: rotate(-18deg);
  }

  to {
    transform: rotate(342deg);
  }
}

@keyframes dot-bob-one {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes dot-bob-two {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(9px);
  }
}

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

@media (max-width: 820px) {
  .section-heading,
  .page-hero h1,
  .site-footer {
    align-items: start;
    text-align: left;
  }

  .section-heading,
  .site-footer {
    flex-direction: column;
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading p {
    flex: 0 0 auto;
  }

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

  .game-card,
  .game-card.large {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.2rem;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0 8px;
  }

  .intro {
    min-height: 360px;
    padding: 44px 0 44px;
  }

  .page-hero {
    padding-top: 48px;
  }

  .page-hero h1 {
    font-size: 2.6rem;
  }

  .orbit-one {
    top: 18px;
    right: 0;
    width: 38px;
  }

  .orbit-two {
    left: 0;
    bottom: 38px;
    width: 32px;
    height: 32px;
  }

  .orbit-three {
    right: 8px;
    bottom: 24px;
    width: 30px;
    height: 30px;
  }

  .orbit-four {
    top: 48px;
    left: 4px;
    width: 20px;
    height: 20px;
  }

  .large .card-art,
  .card-art {
    min-height: 210px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}


/* ---------- hero ---------- */

.intro-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 20px;
  max-width: 920px;
}

.hero-kicker {
  margin: 0;
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid #1f1f1f;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 4px 4px 0 #1f1f1f;
  transform: rotate(-1.4deg);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-highlight {
  display: inline-block;
  padding: 0.02em 0.18em;
  border: 3px solid #1f1f1f;
  background: var(--yellow);
  box-shadow: 6px 6px 0 #1f1f1f;
  transform: rotate(-0.6deg);
}

.hero-sub {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.14rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
}

.btn {
  display: inline-block;
  padding: 15px 24px 14px;
  border: 2px solid #1f1f1f;
  border-radius: 9px;
  box-shadow: 5px 5px 0 #1f1f1f;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.btn-primary {
  background: var(--yellow);
}

.btn-ghost {
  background: #ffffff;
}

.btn:hover {
  transform: translate(-2px, -3px);
  box-shadow: 8px 9px 0 #1f1f1f;
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #1f1f1f;
}

.btn:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 3px;
}

/* ---------- ticker ---------- */

.ticker {
  width: 100vw;
  margin: 10px 0 42px calc(50% - 50vw);
  padding: 13px 0;
  overflow: hidden;
  background: #1f1f1f;
  color: var(--yellow);
  transform: rotate(-1deg) scale(1.03);
}

.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 0.98rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- teaser cards ---------- */

.teaser-card {
  border-style: dashed;
  background: #fffdf6;
}

.teaser-card:hover {
  transform: translate(-2px, -3px) rotate(0.3deg);
  box-shadow: 8px 9px 0 #222;
}

.teaser-art {
  background: repeating-linear-gradient(45deg, #f3eee3 0 14px, #faf6ec 14px 28px);
}

.teaser-art-alt {
  background: repeating-linear-gradient(-45deg, #edf3fb 0 14px, #f8fbff 14px 28px);
}

.teaser-mark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 3px dashed #1f1f1f;
  border-radius: 50%;
  background: #ffffff;
  transform: rotate(9deg);
  color: var(--muted);
  font-family: var(--display);
  font-size: 2.5rem;
}

.status-teaser {
  color: var(--muted);
}

/* ---------- feature grid ---------- */

.why {
  margin-top: 76px;
}

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

.feature {
  padding: 22px 20px;
  border: 2px solid #1f1f1f;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 5px 5px 0 #1f1f1f;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature:hover {
  transform: translate(-3px, -4px);
  box-shadow: 9px 10px 0 #1f1f1f;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border: 2px solid #1f1f1f;
  border-radius: 9px;
  box-shadow: 3px 3px 0 #1f1f1f;
  color: #1f1f1f;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.icon-bolt {
  background: var(--yellow);
}

.icon-free {
  background: var(--teal);
}

.icon-shield {
  background: var(--red);
  color: #ffffff;
}

.icon-phone {
  background: #ffffff;
}

.feature h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.06rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ---------- faq ---------- */

.faq {
  margin-top: 76px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-list details {
  overflow: hidden;
  border: 2px solid #1f1f1f;
  border-radius: 9px;
  background: var(--panel);
  box-shadow: 5px 5px 0 #1f1f1f;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.02rem;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #1f1f1f;
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-weight: 600;
}

.faq-list details a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ---------- cta band ---------- */

.cta-band {
  margin-top: 88px;
  padding: 48px 26px;
  border: 2px solid #1f1f1f;
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.5) 0 42px, transparent 43px),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.4) 0 30px, transparent 31px),
    linear-gradient(115deg, var(--yellow), #ffdf8e);
  box-shadow: 8px 10px 0 #1f1f1f;
  transform: rotate(-0.4deg);
  text-align: center;
}

.cta-inner {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.cta-band h2 {
  max-width: 640px;
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
}

.cta-band p {
  margin: 0 0 12px;
  color: #4c3f22;
  font-weight: 650;
}

.cta-band .btn-primary {
  border-color: #1f1f1f;
  background: #1f1f1f;
  box-shadow: 5px 5px 0 #ffffff;
  color: var(--yellow);
}

.cta-band .btn-primary:hover {
  box-shadow: 8px 9px 0 #ffffff;
}

/* ---------- footer extras ---------- */

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand > span:first-child {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.02rem;
}

.footer-tag,
.footer-copy {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- responsive extras ---------- */

@media (max-width: 1020px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .ticker {
    margin-bottom: 30px;
  }

  .ticker-track {
    font-size: 0.85rem;
  }

  .cta-band {
    padding: 36px 18px;
  }
}

/* ---------- cancel-my-subscription card ---------- */

.status-live {
  color: #14764a;
}

.cms-card .card-art {
  background: #eef1f8;
}

.cms-art {
  position: relative;
}

.cms-window {
  display: grid;
  width: min(240px, 78%);
  border: 2px solid #1f1f1f;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 6px 6px 0 #1f1f1f;
  overflow: hidden;
  transform: rotate(-2deg);
  animation: cms-hover 4.4s ease-in-out infinite;
}

.cms-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: #1f2540;
  color: #dce3f5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cms-x {
  opacity: 0.75;
}

.cms-body {
  display: grid;
  gap: 8px;
  padding: 13px 12px 14px;
}

.cms-line {
  height: 8px;
  border-radius: 4px;
  background: #d9dfeb;
}

.cms-line.short {
  width: 62%;
}

.cms-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.cms-btn-fake {
  flex: 1;
  padding: 7px 0;
  border-radius: 6px;
  background: #3b5bfd;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
}

.cms-btn-real {
  color: #a5adc2;
  font-size: 0.66rem;
  text-decoration: underline;
}

.cms-badge {
  position: absolute;
  top: 18px;
  right: 12%;
  padding: 8px 10px;
  border: 2px solid #1f1f1f;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 4px 4px 0 #1f1f1f;
  transform: rotate(9deg);
  animation: cms-badge-bob 3.2s ease-in-out infinite;
}

@keyframes cms-hover {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1.2deg) translateY(-7px); }
}

@keyframes cms-badge-bob {
  0%, 100% { transform: rotate(9deg) translateY(0); }
  50% { transform: rotate(13deg) translateY(-6px); }
}
