/* ==========================================================================
   Up To 21 — Luminous card game palette
   Crafted for high-contrast readability and playful energy
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Orbitron:wght@600;700&display=swap");

:root {
  color-scheme: dark;

  /* Core palette */
  --bg: #05070f;
  --bg-alt: rgba(9, 13, 26, 0.88);
  --surface: rgba(17, 24, 44, 0.78);
  --surface-strong: rgba(24, 34, 58, 0.92);
  --surface-contrast: rgba(38, 52, 90, 0.72);
  --text: #f5f7ff;
  --muted: #9faad9;
  --line: rgba(159, 170, 217, 0.22);
  --surface-header: rgba(9, 13, 26, 0.72);
  --surface-footer: rgba(9, 13, 26, 0.7);
  --nav-hover-bg: rgba(125, 90, 240, 0.09);
  --border-line-strong: rgba(159, 170, 217, 0.32);
  --border-accent-soft: rgba(125, 90, 240, 0.35);
  --border-accent-medium: rgba(125, 90, 240, 0.42);
  --border-accent-strong: rgba(125, 90, 240, 0.5);
  --text-lead: #d6dcff;
  --text-subtle: #c9d2f7;
  --text-body-soft: #e2e7ff;
  --placeholder-color: #b5bde5;

  /* Accent triad for the card game */
  --accent: #7d5af0;       /* power surge */
  --accent-cyan: #44d9da;  /* shift energy */
  --accent-gold: #f6c960;  /* momentum token */
  --accent-rose: #ff6eab;  /* risk warning */
  --accent-soft: rgba(125, 90, 240, 0.28);
  --ticker-height: 44px;

  /* Radii + type */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-soft: 0 34px 70px rgba(5, 7, 15, 0.45);
  --font-base: 16px;
  --font-family: "SF Pro Display", "SF Pro Text", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ===== Reset & base ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: var(--font-base);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-width: 1120px;
  overflow-x: auto;
  font-family: var(--font-family);
  line-height: 1.6;
  background: linear-gradient(
    135deg,
    #05070f 0%,
    #101735 58%,
    #07122a 100%
  );
  color: var(--text);
}

body.nav-open {
  overflow: hidden;
}

@keyframes sloganFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 720px) {
  .nav-slogan {
    display: none;
  }
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  transition: top 0.3s ease;
  z-index: 999;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2.6rem));
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  background: linear-gradient(110deg, #d7b0ff, #a160ff, #6dd0ff);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroTitlePulse 9s ease-in-out infinite alternate;
}

.quote-heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.lead,
.section-lead {
  font-size: 1.125rem;
  color: var(--text-lead);
}

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

/* ===== Navigation ======================================================= */
.announcement-ticker {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--ticker-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 1.5rem;
  background: linear-gradient(
    120deg,
    rgba(5, 7, 15, 0.92),
    rgba(11, 16, 32, 0.92),
    rgba(18, 26, 48, 0.92)
  );
  border-bottom: 1px solid var(--border-accent-soft);
  box-shadow: 0 20px 40px rgba(5, 7, 15, 0.45);
  backdrop-filter: saturate(180%) blur(24px);
}

.announcement-ticker__track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: tickerScroll 60s linear infinite;
}

.announcement-ticker__text {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: none;
  white-space: nowrap;
  color: var(--text-body-soft);
  padding-right: 4rem;
  font-weight: 600;
  text-shadow: 0 0 18px rgba(68, 217, 218, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  .announcement-ticker__track {
    animation: none;
    transform: translateX(0);
  }
}

.site-header {
  position: sticky;
  top: var(--ticker-height);
  z-index: 40;
  backdrop-filter: saturate(180%) blur(22px);
  background: var(--surface-header);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.nav-app-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 90, 240, 0.35);
  background: rgba(7, 10, 22, 0.6);
  box-shadow: inset 0 0 18px rgba(125, 90, 240, 0.2);
  transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  text-align: right;
}

.nav-app-link__label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-app-link__subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav-app-link:hover,
.nav-app-link:focus-visible {
  border-color: var(--accent);
  box-shadow: inset 0 0 24px rgba(125, 90, 240, 0.35), 0 10px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .nav-app-link {
    display: none;
  }
}

.nav-slogan {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent), var(--accent-cyan), var(--accent-rose));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: sloganFlow 4s ease infinite;
  text-shadow: 0 0 12px rgba(68, 217, 218, 0.28);
  white-space: nowrap;
}

.upto21-main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-weight: 700;
  letter-spacing: 1.4px;
  font-family: "Orbitron", "Rajdhani", "Space Grotesk", sans-serif;
  background: linear-gradient(90deg, #3A6DFF, #684BFF, #8A4DFF);
  border-radius: 16px;
  border: none;
  color: #E4C8FF;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(100, 140, 255, 0.35),
              0 0 18px rgba(140, 100, 255, 0.25);
  transition: transform 0.25s ease, 
              box-shadow 0.25s ease,
              opacity 0.25s ease,
              filter 0.25s ease;
  white-space: nowrap;
}

.upto21-main-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(120, 180, 255, 0.55),
              0 0 26px rgba(160, 120, 255, 0.45);
  filter: brightness(1.06);
  opacity: 0.98;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(12, 16, 32, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle__line {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-link--app {
  border: 1px solid rgba(125, 90, 240, 0.35);
  border-radius: 18px;
  padding: 0.65rem 1.4rem;
  text-align: center;
  margin: 0.5rem 0 0;
}

body.nav-open .nav-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1rem 1.5rem 1.8rem;
  background: linear-gradient(
    160deg,
    rgba(5, 7, 15, 0.98),
    rgba(18, 26, 54, 0.96)
  );
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(5, 7, 15, 0.6);
  align-items: center;
}

body.nav-open .nav-drawer {
  display: flex;
}

.nav-link {
  width: 100%;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 640;
  font-size: 0.85rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(12, 18, 36, 0.65);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  border-color: var(--border-accent-soft);
  background: rgba(68, 217, 218, 0.15);
  box-shadow: 0 10px 20px rgba(68, 217, 218, 0.2);
}

/* ===== Hero ============================================================= */
.hero {
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(3rem, 5vw, 4.2rem);
}

.hero-grid {
  display: grid;
  gap: clamp(2.8rem, 6vw, 4.6rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5.2vw, 4.4rem);
  letter-spacing: -0.02em;
  margin: 1.6rem 0 1.4rem;
  color: var(--text);
}

.hero-summary {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
  max-width: 60ch;
}

.hero-summary__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-summary__list li {
  position: relative;
  padding: 1rem 1.2rem 1rem 2.8rem;
  border-radius: var(--radius-md);
  background: rgba(12, 16, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 36px rgba(5, 7, 15, 0.35);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.hero-summary__list li::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent));
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(68, 217, 218, 0.6);
}

.hero-summary__list strong {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-right: 0.45rem;
}

.hero-summary__note {
  margin: 0;
  padding-left: 1.4rem;
  border-left: 2px solid rgba(68, 217, 218, 0.45);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.hero-orbit {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.6rem);
}

.hero-intro {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-intro__eyebrow {
  letter-spacing: 0.35em;
  display: inline-block;
}

.hero-intro h1 {
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.1;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(110deg, #d7b0ff, #a160ff, #6dd0ff);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroTitlePulse 9s ease-in-out infinite alternate;
  text-shadow: 0 8px 24px rgba(104, 65, 163, 0.3);
}

.hero-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 2.8rem);
  flex-wrap: nowrap;
}

.hero-title-pill {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #5fe4ff;
  text-transform: uppercase;
  animation: heroTwentyShift 2s ease-in-out infinite alternate;
  text-shadow: 0 12px 28px rgba(68, 217, 218, 0.35);
}

.hero-title-pill--left {
  animation-delay: 0s;
}

.hero-title-pill--right {
  animation-delay: 1s;
}

.hero-intro .lead {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  background: linear-gradient(120deg, #5fe4ff, #b873ff, #76f7d2);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroLeadShift 8s ease-in-out infinite alternate;
}

.hero-orbit__grid {
  display: grid;
  gap: clamp(1.4rem, 3.5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

@media (min-width: 960px) {
  .hero-orbit__grid {
    grid-template-columns: minmax(260px, 1fr) minmax(240px, 360px) minmax(260px, 1fr);
  }
}

.hero-panel {
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(12, 18, 40, 0.95), rgba(5, 7, 15, 0.9));
  box-shadow: 0 28px 46px rgba(5, 7, 15, 0.45);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-panel--objective {
  background: linear-gradient(160deg, rgba(9, 16, 34, 0.95), rgba(24, 34, 64, 0.85));
}

.hero-panel--flow {
  background: linear-gradient(160deg, rgba(16, 25, 52, 0.95), rgba(42, 19, 58, 0.85));
}

.hero-panel h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-panel__list li {
  line-height: 1.55;
  position: relative;
  padding-left: 1.4rem;
}

.hero-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  box-shadow: 0 0 10px rgba(68, 217, 218, 0.6);
}

.hero-panel__list strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  display: inline-block;
  margin-right: 0.35rem;
  color: var(--accent-cyan);
}

.hero-panel__note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  border-left: 2px solid rgba(68, 217, 218, 0.4);
  padding-left: 1rem;
}

.hero-core {
  position: relative;
  border-radius: 50%;
  min-height: 360px;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 4.5rem 1rem;
}

.hero-core__halo {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 217, 218, 0.35), transparent 65%);
  filter: blur(6px);
  z-index: 0;
}

.hero-core__image {
  width: clamp(220px, 22vw, 320px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 65px rgba(5, 7, 15, 0.55);
  z-index: 1;
}

.hero-core__tag {
  position: absolute;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(5, 7, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 40px rgba(5, 7, 15, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 160px;
  z-index: 2;
}

.hero-core__cta {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
  white-space: nowrap;
}

.hero-core__cta--top {
  top: 1.2rem;
}

.hero-core__cta--bottom {
  bottom: 1.2rem;
}

.hero-core__cta.cta-primary:hover,
.hero-core__cta.cta-primary:focus-visible {
  transform: translate(-50%, -2px);
}

.hero-core__cta.cta-primary:active {
  transform: translate(-50%, 0);
}

.hero-core__tag span {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-core__tag strong {
  font-size: 1.4rem;
  color: var(--text);
}

.hero-core__tag small {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-core__tag--score {
  top: 8%;
  left: 0;
  transform: translate(-30%, 0);
}

.hero-core__tag--effect {
  bottom: 8%;
  right: 0;
  transform: translate(30%, 0);
  border-color: rgba(125, 90, 240, 0.45);
}

.hero-flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: hero-flow;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-flow-list li {
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem 1rem 3.4rem;
  background: rgba(5, 7, 15, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  line-height: 1.55;
}

.hero-flow-list li::before {
  counter-increment: hero-flow;
  content: counter(hero-flow);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(12, 18, 32, 0.8);
}

.hero-flow-list strong {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-right: 0.45rem;
}

.hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.8rem;
}

.hero-panel__stats div {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 15, 0.45);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-panel__stats p {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  word-break: break-word;
  white-space: normal;
}

.hero-panel__stats strong {
  font-size: 1.05rem;
  color: var(--text);
  text-align: center;
}

@keyframes heroLeadShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroTitlePulse {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroTwentyShift {
  0% {
    color: #5fe4ff;
  }
  50% {
    color: #b873ff;
  }
  100% {
    color: #6dd0ff;
  }
}

.facts-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.facts-nova {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.6rem, 4vw, 3rem);
  margin-bottom: clamp(2.8rem, 6vw, 4.2rem);
}

.facts-nova::after {
  content: "";
  position: absolute;
  inset: -15% 10%;
  background: radial-gradient(circle at top, rgba(109, 208, 255, 0.18), transparent 65%);
  filter: blur(60px);
  z-index: 0;
}

.facts-nova__panel {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 3.6vw, 2.8rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(11, 16, 34, 0.92), rgba(28, 40, 72, 0.88));
  box-shadow: 0 32px 54px rgba(5, 7, 15, 0.4);
  display: grid;
  gap: 0.8rem;
}

.facts-nova__panel--story {
  background: linear-gradient(155deg, rgba(16, 24, 48, 0.94), rgba(35, 20, 64, 0.88));
}

.facts-nova__panel--reasons {
  background: linear-gradient(155deg, rgba(24, 36, 70, 0.94), rgba(18, 54, 72, 0.85));
}

.facts-nova__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.facts-nova__panel h3 {
  margin: 0;
  font-size: 1.4rem;
}

.facts-nova__panel p {
  margin: 0;
  color: var(--text-body-soft);
  line-height: 1.75;
}

.facts-nova__list {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.7rem;
  color: var(--text-body-soft);
}

.facts-nova__list li {
  line-height: 1.65;
}

.facts-nova__list strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.2rem;
}

.facts-card {
  background: linear-gradient(135deg, rgba(12, 18, 36, 0.92), rgba(24, 34, 58, 0.85));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: 0 30px 50px rgba(5, 7, 15, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.facts-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent-cyan);
}

.facts-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.facts-card--twist {
  background: linear-gradient(135deg, rgba(68, 217, 218, 0.15), rgba(125, 90, 240, 0.15));
  border-color: rgba(68, 217, 218, 0.35);
}

.cta-primary,
.cta-secondary,
.cta-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-primary {
  padding: 0.95rem 2rem;
  background: conic-gradient(
    from 140deg,
    var(--accent),
    var(--accent-cyan),
    var(--accent),
    var(--accent-rose)
  );
  color: #05070f;
  border: none;
  box-shadow: 0 26px 52px rgba(68, 217, 218, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover,
.cta-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 32px 60px rgba(68, 217, 218, 0.45);
}

.cta-secondary {
  padding: 0.92rem 1.8rem;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
  transform: translateY(-1px);
  border-color: var(--border-accent-medium);
}

.cta-text {
  color: var(--accent-cyan);
  padding: 0.85rem 0;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.6rem 0 2.8rem;
}

.hero-art-image {
  width: clamp(240px, 32vw, 360px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-soft);
  transform: rotate(6deg);
  transition: transform 0.4s ease;
}

.card-stack {
  position: relative;
  width: clamp(240px, 30vw, 300px);
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: visible;
}

.card-stack--components {
  width: clamp(200px, 26vw, 260px);
}

.hero-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: 0 38px 68px rgba(5, 7, 15, 0.55);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  outline: none;
  will-change: transform;
  background: linear-gradient(
    135deg,
    rgba(9, 13, 26, 0.92),
    rgba(24, 34, 58, 0.84)
  );
  user-select: none;
}

.hero-card-top {
  z-index: 3;
  transform: translate(-10px, -16px) rotate(-6deg);
}

.hero-card-middle {
  z-index: 2;
  transform: translate(22px, 18px) rotate(4deg);
}

.hero-card-bottom {
  z-index: 1;
  transform: translate(-18px, 32px) rotate(-3deg);
}

.hero-card:hover,
.hero-card:focus-visible {
  box-shadow: 0 42px 74px rgba(68, 217, 218, 0.45);
  filter: brightness(1.05);
}

.hero-glow {
  position: absolute;
  inset: auto 0 -14% 0;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(68, 217, 218, 0.5) 0%,
    transparent 70%
  );
  filter: blur(18px);
}

.hero-glow--compact {
  height: 180px;
  inset: auto 0 -10% 0;
  opacity: 0.7;
}

/* ===== Sections ========================================================= */
.section {
  padding: clamp(3.4rem, 5.6vw, 5rem) 0;
  scroll-margin-top: calc(var(--ticker-height, 44px) + 80px);
}

.section-anchor {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin-bottom: 1rem;
}

.section-alt {
  background: linear-gradient(
    135deg,
    rgba(12, 18, 32, 0.8),
    rgba(19, 27, 46, 0.92)
  );
  border-block: 1px solid var(--border-line-strong);
}

.section-header {
  text-align: center;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}

.section-header h2 {
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  letter-spacing: -0.015em;
  margin: 0;
}

.feature-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: var(--surface-strong);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 2.4rem 2.1rem;
  box-shadow: 0 26px 48px rgba(5, 7, 15, 0.32);
}

.feature-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.highlight {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: clamp(2.6rem, 5vw, 3.6rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-accent-medium);
  background:
    linear-gradient(
      140deg,
      rgba(125, 90, 240, 0.18),
      rgba(5, 7, 15, 0.85)
    ),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.highlight--packaging {
  align-items: center;
}

.highlight-art {
  position: relative;
  justify-self: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0 2.4rem;
  flex-direction: column;
  height: 100%;
  margin-top: clamp(2.5rem, 4vw, 3.8rem);
}

.highlight-art .card-stack {
  width: clamp(150px, 20vw, 200px);
}

.highlight-art .hero-card {
  border: none;
  border-radius: 26px;
}

.highlight-copy p {
  color: var(--text-subtle);
}

.highlight-button {
  padding-inline: 2.4rem;
  margin-top: auto;
}

.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.highlight-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.highlight-list strong {
  font-size: 1.05rem;
  color: var(--text);
}

.highlight-list span {
  color: var(--muted);
}

.mode-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.mode-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 2.3rem 2.1rem;
  background: var(--surface);
  box-shadow: 0 28px 54px rgba(5, 7, 15, 0.32);
}

.mode-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.26rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.mode-card--seven {
  background: linear-gradient(150deg, rgba(40, 26, 52, 0.95), rgba(52, 32, 72, 0.9));
}

.mode-card--fourteen {
  background: linear-gradient(150deg, rgba(64, 40, 96, 0.96), rgba(80, 48, 116, 0.9));
}

.mode-card--twentyone {
  background: linear-gradient(150deg, rgba(110, 78, 166, 0.95), rgba(134, 98, 198, 0.9));
}

.mode-card--drilling {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.mode-card__media {
  flex: 0 0 320px;
  align-self: center;
}

.mode-card__media--triple {
  display: flex;
  justify-content: center;
  gap: 0;
}

.mode-card__media img {
  width: 160px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.drilling-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  position: relative;
}

.drilling-card--left {
  transform: rotate(-8deg) translateY(6px);
  margin-right: -70px;
}

.drilling-card--center {
  transform: translateY(-8px) scale(1.02);
  z-index: 2;
}

.drilling-card--right {
  transform: rotate(8deg) translateY(6px);
  margin-left: -70px;
}

.drilling-card:hover,
.drilling-card:focus-visible {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 32px 60px rgba(68, 217, 218, 0.35);
  filter: brightness(1.1);
  z-index: 3;
}

.mode-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drilling-panel {
  margin-top: 2.5rem;
}

.drilling-copy {
  max-width: 520px;
  gap: 1rem;
}

.drilling-intro {
  font-size: 1.05rem;
  color: var(--text);
}

.drilling-list {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.drilling-list strong {
  color: var(--text);
}

.drilling-highlight {
  font-weight: 600;
  color: var(--accent-cyan);
}

.drilling-note {
  color: var(--muted);
}

.element-bonus {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: linear-gradient(140deg, rgba(12, 18, 40, 0.95), rgba(34, 20, 60, 0.88));
  box-shadow: 0 34px 58px rgba(5, 7, 15, 0.4);
  display: grid;
  gap: 1.6rem;
}

.element-bonus__intro {
  display: grid;
  gap: 0.6rem;
}

.element-bonus__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.element-bonus__intro h3 {
  margin: 0;
}

.element-bonus__intro p {
  margin: 0;
  color: var(--text-body-soft);
}

.element-bonus__elements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.element-chip {
  border-radius: var(--radius-xl);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 15, 0.5);
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  text-align: center;
  box-shadow: 0 18px 32px rgba(5, 7, 15, 0.35);
}

.element-chip span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.element-chip strong {
  font-size: 1.1rem;
  color: var(--text);
}

.element-chip--earth {
  border-color: rgba(180, 180, 180, 0.6);
  box-shadow: 0 18px 32px rgba(200, 200, 200, 0.25);
}

.element-chip--water {
  border-color: rgba(68, 167, 255, 0.6);
  box-shadow: 0 18px 32px rgba(68, 167, 255, 0.35);
}

.element-chip--fire {
  border-color: rgba(255, 92, 92, 0.65);
  box-shadow: 0 18px 32px rgba(255, 92, 92, 0.35);
}

.element-bonus__details {
  display: grid;
  gap: 0.6rem;
  color: var(--text-body-soft);
}

.element-bonus__details strong {
  color: var(--text);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  background: rgba(9, 13, 28, 0.9);
  box-shadow: 0 24px 40px rgba(5, 7, 15, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.88;
  z-index: 0;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  transform-origin: center;
}

.faq-item:nth-of-type(3n + 1)::after {
  background: linear-gradient(135deg, rgba(92, 76, 205, 0.95), rgba(58, 106, 207, 0.8));
}

.faq-item:nth-of-type(3n + 2)::after {
  background: linear-gradient(135deg, rgba(125, 90, 240, 0.9), rgba(68, 217, 218, 0.78));
}

.faq-item:nth-of-type(3n)::after {
  background: linear-gradient(135deg, rgba(54, 66, 160, 0.9), rgba(124, 63, 186, 0.82));
}

.faq-item > * {
  position: relative;
  z-index: 1;
}

.faq-item:hover::after {
  transform: scale(1.05);
  filter: saturate(1.25) brightness(1.08);
}

.faq-item:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 46px rgba(68, 217, 218, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
}

.faq-item h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.faq-item p {
  color: #ffffff;
}

@media (max-width: 640px) {
  .mode-card--drilling {
    flex-direction: column;
  }

  .mode-card__media {
    flex-basis: auto;
    width: 100%;
  }
}

.section-actions {
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  display: flex;
  justify-content: center;
}

/* ===== Subscribe ======================================================== */
.subscribe {
  margin: 0 auto;
  max-width: 720px;
  padding: clamp(2.6rem, 5vw, 3.6rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(5, 7, 15, 0.92),
    rgba(38, 52, 90, 0.85)
  );
  box-shadow: var(--shadow-soft);
  text-align: left;
  display: grid;
  gap: 1.3rem;
}

.contact-card {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
  align-items: start;
}

.contact-card__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.contact-details__label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-details a {
  color: var(--accent-cyan);
  font-weight: 600;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
}

.form-field span {
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.subscribe input,
.subscribe textarea {
  padding: 1rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(14, 18, 36, 0.82);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscribe textarea {
  border-radius: 28px;
  min-height: 160px;
  resize: vertical;
  line-height: 1.5;
  font-family: inherit;
}

.subscribe input::placeholder,
.subscribe textarea::placeholder {
  color: var(--placeholder-color);
}

.subscribe input:focus,
.subscribe textarea:focus {
  outline: none;
  border-color: var(--border-accent-strong);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.contact-form button {
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-cyan),
    var(--accent)
  );
  color: #05070f;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 28px 56px rgba(125, 90, 240, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  justify-self: start;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 34px 62px rgba(125, 90, 240, 0.45);
  outline: none;
}

/* ===== Footer =========================================================== */
.site-footer {
  padding: 3rem 0;
  background: var(--surface-footer);
  border-top: 1px solid var(--line);
}

.footer-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  font-size: 0.85rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
}

.footer-brand {
  font-weight: 700;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
}

.footer-text {
  color: var(--muted);
}

.footer-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--accent-cyan);
}

/* ===== Rules section ==================================================== */
.rules-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.6rem, 3.2vw, 2.6rem);
  margin-bottom: clamp(2.4rem, 5vw, 3.8rem);
}

.rules-orbit::before {
  content: "";
  position: absolute;
  inset: -12% 15%;
  background: radial-gradient(circle, rgba(109, 208, 255, 0.2), transparent 65%);
  filter: blur(80px);
  z-index: 0;
}

.rules-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(150deg, rgba(14, 18, 34, 0.95), rgba(30, 40, 72, 0.85));
  padding: clamp(1.6rem, 3.2vw, 2.4rem);
  box-shadow: 0 32px 56px rgba(5, 7, 15, 0.42);
  display: grid;
  gap: 0.9rem;
  overflow: hidden;
}

.rules-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -50% -40%;
  height: 220px;
  background: radial-gradient(circle, rgba(125, 90, 240, 0.25), transparent 75%);
  opacity: 0.8;
  pointer-events: none;
}

.rules-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rules-card__badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  background: rgba(5, 7, 15, 0.6);
  box-shadow: 0 12px 24px rgba(68, 217, 218, 0.35);
}

.rules-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.rules-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.rules-card h4 {
  margin: 0.4rem 0 0.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.rules-card__body {
  display: grid;
  gap: 0.7rem;
}

.rules-card__list {
  margin: 0;
  padding-left: 1.3rem;
  color: var(--text-body-soft);
  display: grid;
  gap: 0.4rem;
}

.rules-card__list--ordered {
  list-style: decimal;
}

.rules-card__note {
  font-size: 0.95rem;
  color: var(--text-body-soft);
  border-left: 2px solid rgba(68, 217, 218, 0.38);
  padding-left: 1rem;
  margin: 0;
}

.rules-callout {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.2rem;
  background: rgba(5, 7, 15, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.4rem;
}

.rules-callout h4 {
  margin: 0;
}

.rules-gift {
  margin: clamp(2rem, 4vw, 3.4rem) auto 0;
  max-width: 900px;
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(125, 90, 240, 0.4);
  background: linear-gradient(135deg, rgba(24, 16, 46, 0.95), rgba(38, 20, 64, 0.85));
  box-shadow: 0 36px 60px rgba(5, 7, 15, 0.45);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.4rem, 3vw, 2rem);
  padding: clamp(1.8rem, 3.2vw, 2.4rem);
  align-items: center;
}

.rules-gift__content {
  display: grid;
  gap: 0.7rem;
}

.rules-gift__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.rules-gift h3 {
  margin: 0;
  font-size: 1.4rem;
}

.rules-gift__visual {
  display: flex;
  justify-content: center;
}

.rules-gift__visual img {
  width: min(280px, 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 32px 56px rgba(5, 7, 15, 0.45);
}

/* ===== Uniqueness section =============================================== */
.uniqueness-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-subtle);
  font-size: 1.05rem;
  line-height: 1.8;
}

.uniqueness-intro p {
  margin: 0;
}

.uniqueness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.6rem, 3.2vw, 2.4rem);
}

.uniqueness-card {
  background: rgba(17, 24, 44, 0.92);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent-soft);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  box-shadow: 0 26px 48px rgba(5, 7, 15, 0.34);
  display: grid;
  gap: 0.8rem;
}

.uniqueness-card h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.uniqueness-card p {
  margin: 0;
  color: var(--text-body-soft);
}

.uniqueness-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
  color: var(--text-body-soft);
}

.uniqueness-list li {
  line-height: 1.7;
}

.uniqueness-card--slogan {
  background: linear-gradient(145deg, rgba(68, 217, 218, 0.18), rgba(125, 90, 240, 0.18));
  border: 1px solid rgba(125, 90, 240, 0.36);
}

.slogan {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 640px) {
  .uniqueness-card {
    text-align: left;
  }
}

/* ===== Gift card illustrations ========================================= */
.gift-card-art__frame {
  fill: none;
  stroke: rgba(246, 201, 96, 0.6);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gift-card-art__panel {
  fill: #2b0f63;
}

.gift-card-art__value {
  fill: #f6c960;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.08em;
}

.gift-card-art__present {
  fill: #f6c960;
}

.gift-card-art__present .gift-card-art__bow {
  fill: #f6c960;
}

.gift-card-art__lid {
  fill: #5a2aa1;
  opacity: 0.85;
}

.gift-card-art__confetti {
  fill: #f6c960;
  opacity: 0.75;
}

.gift-card-art__spark {
  fill: #f6c960;
  opacity: 0.55;
}

.gift-card-art__ribbon {
  fill: none;
  stroke: #f6c960;
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0.75;
}

.gift-card-art__sparkline {
  fill: none;
  stroke: #f6c960;
  stroke-width: 4;
  stroke-linecap: round;
  opacity: 0.6;
}

/* ===== Card library ===================================================== */
.card-category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.6rem, 4vw, 2.8rem);
  padding: clamp(1.9rem, 4vw, 2.9rem);
  background: rgba(28, 36, 62, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-accent-soft);
  box-shadow: 0 28px 54px rgba(5, 7, 15, 0.45);
  margin-bottom: clamp(2.4rem, 4vw, 3.4rem);
  align-items: center;
}

.card-category__visual {
  max-width: 280px;
  justify-self: center;
}

.numbers-stack {
  position: relative;
  width: min(240px, 48vw);
  height: min(320px, 60vw);
  margin: 0 auto;
}

.numbers-stack__card {
  position: absolute;
  width: 78%;
  border-radius: var(--radius-md);
  box-shadow: 0 26px 48px rgba(5, 7, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 15, 0.4);
}

.numbers-stack__card--left {
  top: 44px;
  left: -4px;
  transform: rotate(-10deg);
  z-index: 1;
}

.numbers-stack__card--center {
  top: 0;
  left: 32px;
  transform: rotate(4deg);
  z-index: 3;
}

.numbers-stack__card--right {
  top: 60px;
  left: 84px;
  transform: rotate(12deg);
  z-index: 2;
}

.spielfeld-visual {
  margin-top: 2.4rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: var(--radius-lg);
  background: rgba(12, 18, 34, 0.9);
  border: 1px solid var(--border-accent-soft);
  box-shadow: 0 28px 54px rgba(5, 7, 15, 0.45);
}

.spielfeld-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.about-grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.4rem);
}

.about-copy {
  text-align: center;
}

.about-copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.about-copy p {
  color: var(--text-subtle);
}

.about-flow {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(0.8rem, 2vw, 1rem);
  margin-top: 1.6rem;
}

.about-card {
  background: rgba(15, 20, 38, 0.92);
  border-radius: var(--radius-md);
  border: 1px solid rgba(125, 90, 240, 0.35);
  box-shadow: 0 22px 46px rgba(5, 7, 15, 0.4);
  padding: 1.2rem 1.3rem;
  display: grid;
  gap: 0.6rem;
}

.about-card__accent {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-card--highlight {
  border-color: rgba(68, 217, 218, 0.5);
  background: rgba(68, 217, 218, 0.08);
}

.about-photo {
  justify-self: center;
}

.about-photo img {
  width: min(320px, 90%);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 54px rgba(5, 7, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: center;
}

.about-orbit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.6rem, 4vw, 2.4rem);
  margin-top: 1.6rem;
  align-items: center;
}

.about-portrait {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
}

.about-portrait__label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.about-portrait__note {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-body-soft);
  max-width: 320px;
}

.about-portrait__note-title {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.about-story {
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: linear-gradient(145deg, rgba(12, 18, 40, 0.92), rgba(28, 36, 64, 0.85));
  box-shadow: 0 34px 58px rgba(5, 7, 15, 0.4);
  display: grid;
  gap: 0.9rem;
}

.about-story__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.about-story h2 {
  margin: 0;
}

.about-story p {
  margin: 0;
  color: var(--text-body-soft);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-pills span {
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
}

.about-card--hero {
  height: 100%;
  display: grid;
  gap: 0.6rem;
}

.card-category__body h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: clamp(1.6rem, 2.6vw, 1.95rem);
  letter-spacing: -0.01em;
  color: var(--text);
}

.card-category__body > p {
  color: var(--text-subtle);
  margin-bottom: 1rem;
}

.card-category__notes {
  padding-left: 1.2rem;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--text-body-soft);
}

.card-category__notes li {
  line-height: 1.5;
}

.card-cluster {
  margin-bottom: clamp(2.4rem, 4vw, 3rem);
}

.card-cluster:last-of-type {
  margin-bottom: 0;
}

.card-cluster__header {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.card-cluster__header h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 1.8rem);
  letter-spacing: -0.01em;
  color: var(--text);
}

.card-cluster__header p {
  max-width: 620px;
  color: var(--text-subtle);
}

.animal-hero {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(12, 18, 34, 0.95), rgba(36, 20, 58, 0.85));
  box-shadow: 0 34px 56px rgba(5, 7, 15, 0.4);
  gap: clamp(1rem, 3vw, 2rem);
}

.animal-hero__copy {
  display: grid;
  gap: 0.7rem;
}

.animal-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.animal-hero__copy h3 {
  margin: 0;
}

.animal-hero__copy p {
  margin: 0;
  color: var(--text-body-soft);
}

.animal-tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.animal-tags li {
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
}

.animal-hero__stats {
  display: grid;
  gap: 0.8rem;
}

.animal-pill {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.2rem;
  background: rgba(5, 7, 15, 0.55);
  display: grid;
  gap: 0.2rem;
  box-shadow: 0 18px 32px rgba(5, 7, 15, 0.35);
}

.animal-pill span {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.animal-pill strong {
  font-size: 1rem;
  color: var(--text);
}

.animal-pill--pulse {
  border-color: rgba(68, 217, 218, 0.4);
  background: linear-gradient(135deg, rgba(24, 34, 60, 0.9), rgba(32, 52, 80, 0.85));
  box-shadow: 0 24px 44px rgba(68, 217, 218, 0.35);
}

.special-hero {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(20, 20, 44, 0.9), rgba(38, 16, 54, 0.85));
  box-shadow: 0 32px 52px rgba(5, 7, 15, 0.38);
  gap: clamp(1rem, 3vw, 1.8rem);
}

.special-hero__copy {
  display: grid;
  gap: 0.6rem;
}

.special-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.special-hero__copy h3 {
  margin: 0;
}

.special-hero__copy p {
  margin: 0;
  color: var(--text-body-soft);
}

.special-hero__stats {
  display: grid;
  gap: 0.8rem;
}

.special-pill {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 1.1rem;
  background: rgba(5, 7, 15, 0.5);
  display: grid;
  gap: 0.2rem;
  box-shadow: 0 16px 30px rgba(5, 7, 15, 0.32);
}

.special-pill span {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.special-pill strong {
  font-size: 1rem;
  color: var(--text);
}

.special-pill--pulse {
  border-color: rgba(194, 118, 255, 0.45);
  background: linear-gradient(135deg, rgba(36, 18, 60, 0.9), rgba(60, 20, 76, 0.82));
  box-shadow: 0 24px 42px rgba(194, 118, 255, 0.35);
}

.gift-hero {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(26, 16, 36, 0.92), rgba(52, 18, 48, 0.85));
  box-shadow: 0 32px 52px rgba(5, 7, 15, 0.36);
  gap: clamp(1rem, 3vw, 1.8rem);
}

.gift-hero__copy {
  display: grid;
  gap: 0.6rem;
}

.gift-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.gift-hero__copy h3 {
  margin: 0;
}

.gift-hero__copy p {
  margin: 0;
  color: var(--text-body-soft);
}

.gift-hero__stats {
  display: grid;
  gap: 0.8rem;
}

.gift-pill {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 1.1rem;
  background: rgba(5, 7, 15, 0.5);
  display: grid;
  gap: 0.2rem;
  box-shadow: 0 16px 30px rgba(5, 7, 15, 0.32);
}

.gift-pill span {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.gift-pill strong {
  font-size: 1rem;
  color: var(--text);
}

.gift-pill--pulse {
  border-color: rgba(255, 170, 109, 0.45);
  background: linear-gradient(135deg, rgba(46, 20, 16, 0.9), rgba(60, 26, 22, 0.82));
  box-shadow: 0 24px 42px rgba(255, 170, 109, 0.35);
}

.card-cluster__title {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(68, 217, 218, 0.5);
  color: var(--accent-cyan);
  background: rgba(68, 217, 218, 0.08);
  box-shadow: 0 15px 30px rgba(5, 7, 15, 0.35);
}

.card-badge--free::before {
  content: "⚡";
  margin-right: 0.35rem;
  font-size: 1rem;
}

.card-cluster--special .card-item__card {
  aspect-ratio: 7 / 10;
}

.card-cluster--special .card-item__body {
  padding: 1.3rem;
  gap: 0.8rem;
  min-height: 260px;
}

.card-cluster--special .card-item__action {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.card-cluster--special .card-item__action span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.4rem, 3vw, 2rem);
}

.card-grid + .card-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.card-row {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-items: center;
}

.card-row .card-item {
  max-width: 280px;
  width: 100%;
}

.card-row--duo {
  grid-template-columns: repeat(2, minmax(240px, 280px));
  justify-content: center;
}

.card-row--trio {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-row + .card-row {
  margin-top: 2.8rem;
}

.card-grid--triptych {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid--centered {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
}

@media (min-width: 1024px) {
  .card-grid--triptych {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-row--duo {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

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

.card-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  height: 100%;
  perspective: 1400px;
}

.card-item__title {
  margin: 0 0 0.6rem;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.card-item__card {
  position: relative;
  display: block;
  width: min(100%, 320px);
  aspect-ratio: 2 / 3;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-md);
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
  box-shadow: 0 20px 42px rgba(5, 7, 15, 0.38);
}

.card-item__card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(125, 90, 240, 0.55), 0 20px 42px rgba(5, 7, 15, 0.38);
}

.card-item__card[aria-pressed="true"] {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  border-radius: inherit;
  color: var(--text);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.card-face--front {
  padding: clamp(1.1rem, 3.5vw, 1.6rem);
  border: none;
  background: transparent;
  text-align: center;
}

.card-face--back {
  padding: clamp(1.4rem, 4vw, 1.8rem);
  border: none;
  background: transparent;
  transform: rotateY(180deg);
  justify-content: flex-start;
  align-items: stretch;
  text-align: left;
}

.card-face__icon {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  filter: drop-shadow(0 18px 26px rgba(5, 7, 15, 0.45));
}

.card-face--back .card-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: linear-gradient(145deg, rgba(5, 7, 15, 0.94), rgba(18, 27, 55, 0.94));
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem 1.4rem;
  min-height: 100%;
}

.card-face--back .card-item__body p {
  text-align: left;
}

.card-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(68, 217, 218, 0.6) transparent;
}

.card-item__content::-webkit-scrollbar {
  width: 6px;
}

.card-item__content::-webkit-scrollbar-thumb {
  background: rgba(68, 217, 218, 0.55);
  border-radius: 999px;
}

.card-face--image {
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.card-face--full {
  padding: 0;
}

.card-face__art {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: transparent;
  box-shadow: 0 28px 46px rgba(5, 7, 15, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .card-item__card {
    transition: box-shadow 0.3s ease;
  }

  .card-item__card[aria-pressed="true"] {
    transform: none;
  }

  .card-face--back {
    transform: none;
  }
}

.card-item__body {
  display: grid;
  gap: 0.6rem;
}

.card-item__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.card-item__body h4 {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.card-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(125, 90, 240, 0.2);
  border: 1px solid rgba(125, 90, 240, 0.35);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-subtle);
  white-space: nowrap;
}

.card-item__body p {
  color: var(--text-body-soft);
  margin: 0;
}

.card-item__action {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.55;
}

.card-item__action span {
  display: block;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.card-action-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
}

.card-action-list li {
  position: relative;
  padding-left: 1.1rem;
}

.card-action-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

.card-action-list strong {
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.card-item__flavor {
  color: var(--text-subtle);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-visual {
  position: relative;
  width: clamp(160px, 28vw, 240px);
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent-medium);
  overflow: hidden;
  box-shadow: 0 26px 48px rgba(5, 7, 15, 0.4);
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.18), transparent);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.card-visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: calc(var(--radius-md) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(5, 7, 15, 0.35);
}

.card-item .card-visual {
  width: min(150px, 60%);
  margin: 0 auto;
}

.card-item__card .card-visual {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  margin: 0;
}

.card-item__card .card-visual svg {
  width: 100%;
  height: 100%;
}

.card-visual svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.card-visual--numbers {
  background: linear-gradient(135deg, rgba(68, 217, 218, 0.85), rgba(125, 90, 240, 0.95));
}

.card-face--lion,
.card-visual--lion {
  background: linear-gradient(140deg, rgba(246, 201, 96, 0.9), rgba(255, 110, 171, 0.75));
}

.card-face--snake,
.card-visual--snake {
  background: linear-gradient(145deg, rgba(68, 217, 218, 0.92), rgba(11, 138, 125, 0.78));
}

.card-face--fox,
.card-visual--fox {
  background: linear-gradient(140deg, rgba(255, 110, 171, 0.92), rgba(125, 90, 240, 0.75));
}

.card-face--wolf,
.card-visual--hound,
.card-visual--wolf {
  background: linear-gradient(140deg, rgba(38, 52, 90, 0.88), rgba(125, 90, 240, 0.72));
}

.card-face--turtle,
.card-visual--turtle {
  background: linear-gradient(135deg, rgba(11, 138, 125, 0.78), rgba(68, 217, 218, 0.6));
}

.card-face--monkey,
.card-visual--monkey {
  background: linear-gradient(135deg, rgba(255, 110, 171, 0.82), rgba(246, 201, 96, 0.75));
}

.card-face--maulwurf,
.card-visual--maulwurf {
  background: linear-gradient(135deg, rgba(38, 52, 90, 0.92), rgba(125, 90, 240, 0.74));
}

.card-face--oktopus,
.card-visual--oktopus {
  background: linear-gradient(145deg, rgba(68, 217, 218, 0.92), rgba(7, 18, 42, 0.82));
}

.card-face--chameleon {
  background: linear-gradient(140deg, rgba(125, 90, 240, 0.78), rgba(68, 217, 218, 0.72), rgba(255, 110, 171, 0.7));
}

.card-face--blitz,
.card-visual--lighning {
  background: linear-gradient(140deg, rgba(255, 110, 171, 0.88), rgba(125, 90, 240, 0.95));
}

.card-face--vulkan,
.card-visual--vulcano {
  background: linear-gradient(145deg, rgba(246, 201, 96, 0.88), rgba(255, 110, 171, 0.9));
}

.card-face--joker,
.card-visual--joker {
  background: linear-gradient(135deg, rgba(125, 90, 240, 0.9), rgba(68, 217, 218, 0.88));
}

.card-face--ghost,
.card-visual--ghost {
  background: linear-gradient(150deg, rgba(159, 170, 217, 0.82), rgba(38, 52, 90, 0.94));
}

.card-face--phoenix,
.card-visual--phoenix {
  background: linear-gradient(135deg, rgba(255, 110, 171, 0.94), rgba(246, 201, 96, 0.82));
}

.card-face--plus-two,
.card-visual--plus-two {
  background: linear-gradient(135deg, rgba(68, 217, 218, 0.86), rgba(125, 90, 240, 0.74));
}

.card-face--plus-four,
.card-visual--plus-four {
  background: linear-gradient(135deg, rgba(246, 201, 96, 0.92), rgba(255, 110, 171, 0.8));
}

.card-face--minus-two,
.card-visual--minus-two {
  background: linear-gradient(135deg, rgba(38, 52, 90, 0.88), rgba(68, 217, 218, 0.72));
}

@media (max-width: 640px) {
  .card-category {
    text-align: center;
  }

  .card-category__body h3 {
    justify-self: center;
  }

  .card-category__notes {
    padding-left: 0;
    list-style: none;
    justify-items: center;
  }
}

/* ===== Articles widgets ================================================= */
.a-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.a-card {
  background: var(--surface-strong);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: 0 26px 48px rgba(5, 7, 15, 0.32);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.a-card:hover,
.a-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--border-accent-medium);
}

.a-link {
  display: block;
  padding: 1.9rem;
}

.a-title {
  margin: 0 0 0.7rem;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.a-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.a-excerpt {
  margin: 0;
  color: var(--text-subtle);
}

/* ===== Articles pages (list + read) ==================================== */
body[data-page] {
  background: linear-gradient(
    145deg,
    rgba(5, 7, 15, 0.95),
    rgba(12, 18, 34, 0.96)
  );
}

.page-head {
  padding: clamp(3.2rem, 5vw, 4.2rem) 0 clamp(1.6rem, 3.6vw, 2.4rem);
}

.page-title {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 2.9rem);
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-subtle-meta {
  margin-top: 0.45rem;
  color: var(--muted);
}

.page-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-actions .nav-link {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-contrast);
}

.a-list {
  display: grid;
  gap: 1.4rem;
}

.a-row-link {
  display: block;
  padding: 1.9rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 22px 44px rgba(5, 7, 15, 0.28);
}

.a-row-link:hover,
.a-row-link:focus-visible {
  transform: translateY(-3px);
  border-color: var(--border-accent-medium);
}

.a-row-title {
  margin: 0 0 0.7rem;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.a-row-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.a-row-excerpt {
  margin: 0;
  color: var(--text-subtle);
}

.a-content {
  max-width: 70ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body-soft);
}

.a-content .lead {
  font-size: 1.16rem;
}

.a-content h2,
.a-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.a-content p {
  margin-bottom: 1.2rem;
}

/* ===== Transitions (opt-in) ============================================= */
body.js-fade {
  opacity: 0;
  transition: opacity 0.28s ease;
}

body.js-fade.is-ready {
  opacity: 1;
}

body.js-fade.is-leaving {
  opacity: 0;
}

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

  body.js-fade {
    transition: none !important;
  }
}

/* ===== Responsive tweaks =============================================== */
@media (max-width: 780px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .subscribe button {
    width: 100%;
  }

  .footer-inner {
    text-align: center;
  }
}
.gift-card--wild .card-face--back .card-item__body {
  background: linear-gradient(145deg, rgba(25, 15, 32, 0.95), rgba(48, 28, 62, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 44px rgba(5, 7, 15, 0.45);
}

.gift-card--wild .card-item__title {
  color: rgba(255, 255, 255, 0.8);
}

.gift-card--wild h4 {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.97);
  margin: 0;
}

.gift-card--wild .card-item__body p {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-body-soft);
}
.gift-card__body {
  display: grid;
  gap: 0.8rem;
}

.gift-card__reward {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.gift-card__reward h4 {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.gift-card__reward span {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.gift-card__reward--positive span {
  color: rgba(125, 214, 118, 0.8);
}

.gift-card__reward--boost span {
  color: rgba(255, 173, 106, 0.8);
}

.gift-card__reward--negative span {
  color: rgba(255, 118, 138, 0.8);
}

.gift-card__note {
  font-size: 0.95rem;
  color: var(--text-body-soft);
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 0.9rem;
}
