 

@font-face {
  font-family: "Display";
  src: url("../fonts/display-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Display";
  src: url("../fonts/display-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Display";
  src: url("../fonts/display-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Text";
  src: url("../fonts/text-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Text";
  src: url("../fonts/text-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Text";
  src: url("../fonts/text-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #e9ecf6;
  --bg-2: #eef1fa;
  --surface: #e9ecf6;
  --ink: #2a2c45;
  --ink-soft: #5b5e7e;
  --ink-faint: #8589ad;

  --duo-a: #7c6cff;
  --duo-a-deep: #5a47e0;
  --duo-b: #ff7eb6;
  --duo-b-deep: #f0539b;

  --accent-grad: linear-gradient(135deg, #7c6cff 0%, #ff7eb6 100%);
  --accent-grad-soft: linear-gradient(135deg, rgba(124, 108, 255, 0.16), rgba(255, 126, 182, 0.16));

  --radius-s: 0.75rem;
  --radius-m: 1.25rem;
  --radius-l: 2rem;
  --radius-pill: 999rem;

  --sh-out: 0.55rem 0.55rem 1.4rem rgba(174, 179, 209, 0.85),
    -0.55rem -0.55rem 1.4rem rgba(255, 255, 255, 0.95);
  --sh-out-sm: 0.3rem 0.3rem 0.7rem rgba(174, 179, 209, 0.8),
    -0.3rem -0.3rem 0.7rem rgba(255, 255, 255, 0.95);
  --sh-in: inset 0.35rem 0.35rem 0.8rem rgba(174, 179, 209, 0.9),
    inset -0.35rem -0.35rem 0.8rem rgba(255, 255, 255, 0.95);
  --sh-press: inset 0.25rem 0.25rem 0.6rem rgba(174, 179, 209, 0.9),
    inset -0.25rem -0.25rem 0.6rem rgba(255, 255, 255, 0.9);

  --container: 75rem;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  --t-fast: 0.18s ease;
  --t-mid: 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Text", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--duo-a-deep);
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Display", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--duo-a-deep);
  outline-offset: 3px;
  border-radius: 0.4rem;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}
body::before {
  width: 34rem;
  height: 34rem;
  top: -10rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(124, 108, 255, 0.55), transparent 70%);
}
body::after {
  width: 30rem;
  height: 30rem;
  bottom: -12rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(255, 126, 182, 0.5), transparent 70%);
}

.shell {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.band {
  padding-block: var(--section-y);
  position: relative;
}

.band-tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Display", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--duo-a-deep);
  background: var(--bg);
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-out-sm);
  margin-bottom: 1.1rem;
}

.eyebrow svg {
  width: 1rem;
  height: 1rem;
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.9rem);
  font-weight: 800;
}

.section-head p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.grad-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Display", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast),
    filter var(--t-fast);
  text-align: center;
}

.btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.btn-primary {
  color: #fff;
  background: var(--accent-grad);
  box-shadow: 0.3rem 0.3rem 0.9rem rgba(124, 108, 255, 0.45),
    -0.2rem -0.2rem 0.6rem rgba(255, 255, 255, 0.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-soft {
  color: var(--duo-a-deep);
  background: var(--bg);
  box-shadow: var(--sh-out-sm);
}
.btn-soft:hover {
  transform: translateY(-2px);
}
.btn-soft:active {
  box-shadow: var(--sh-press);
  transform: translateY(0);
}

.btn-block {
  width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(233, 236, 246, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Display", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: var(--accent-grad);
  box-shadow: var(--sh-out-sm);
  flex: none;
}
.brand-mark svg {
  width: 1.3rem;
  height: 1.3rem;
}
.brand b {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-main a {
  font-family: "Display", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: color var(--t-fast), box-shadow var(--t-fast),
    background var(--t-fast);
}
.nav-main a:hover {
  color: var(--ink);
}
.nav-main a.is-active {
  color: var(--duo-a-deep);
  box-shadow: var(--sh-press);
}

.nav-cta {
  display: inline-flex;
}

.burger {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  border-radius: 0.85rem;
  background: var(--bg);
  box-shadow: var(--sh-out-sm);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(82vw, 20rem);
  transform: translateX(-105%);
  transition: transform var(--t-mid);
  background: var(--bg);
  z-index: 80;
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0.7rem 0 2.5rem rgba(120, 124, 160, 0.4);
  overflow-y: auto;
}
.drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.drawer-close {
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 0.75rem;
  background: var(--bg);
  box-shadow: var(--sh-out-sm);
  cursor: pointer;
  color: var(--ink);
  display: grid;
  place-items: center;
}
.drawer-close svg {
  width: 1.2rem;
  height: 1.2rem;
}
.drawer a.drawer-link {
  font-family: "Display", sans-serif;
  font-weight: 600;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-m);
  transition: box-shadow var(--t-fast), color var(--t-fast);
}
.drawer a.drawer-link:hover,
.drawer a.drawer-link.is-active {
  box-shadow: var(--sh-press);
  color: var(--duo-a-deep);
}
.drawer .btn {
  margin-top: 0.8rem;
}
.drawer-foot {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(40, 42, 70, 0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid), visibility var(--t-mid);
  z-index: 70;
}
.scrim.open {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-copy .lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.stat {
  background: var(--bg);
  border-radius: var(--radius-m);
  padding: 1.15rem 1rem;
  box-shadow: var(--sh-out);
  text-align: center;
}
.stat .num {
  font-family: "Display", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .lbl {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
}
.hero-frame {
  position: relative;
  border-radius: var(--radius-l);
  padding: 0.9rem;
  background: var(--bg);
  box-shadow: var(--sh-out);
}
.hero-frame img {
  border-radius: calc(var(--radius-l) - 0.5rem);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1rem 0.6rem 0.6rem;
  box-shadow: var(--sh-out-sm);
  font-family: "Display", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}
.hero-tag .ic {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent-grad);
}
.hero-tag .ic svg {
  width: 1.1rem;
  height: 1.1rem;
}
.hero-tag.t1 {
  top: 1rem;
  left: -1rem;
}
.hero-tag.t2 {
  bottom: 1.3rem;
  right: -0.8rem;
}
.hero-tag small {
  display: block;
  font-family: "Text", sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--ink-faint);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 1.3rem;
}

.tile {
  background: var(--bg);
  border-radius: var(--radius-m);
  padding: 1.4rem;
  box-shadow: var(--sh-out);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.tile:hover {
  transform: translateY(-5px);
}

.tile-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tile-icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 1.05rem;
  flex: none;
  box-shadow: var(--sh-out-sm);
  background: var(--bg);
  padding: 0.25rem;
}
.tile-icon img {
  border-radius: 0.85rem;
}
.tile-head h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}
.tile-genre {
  font-size: 0.78rem;
  color: var(--ink-faint);
}

.tile-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Display", sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--duo-b-deep);
  background: var(--bg);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-press);
  align-self: flex-start;
  margin-bottom: 0.9rem;
}
.tile-rating svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #f6b73c;
}

.tile p {
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.tile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}
.chip {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-out-sm);
}

.tile-foot {
  margin-top: auto;
}

.score {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Display", sans-serif;
  font-weight: 800;
}
.score .ring {
  width: 2.7rem;
  height: 2.7rem;
  position: relative;
}
.score .ring svg {
  transform: rotate(-90deg);
}
.score .ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.split.flip .split-media {
  order: 2;
}
.split-media {
  border-radius: var(--radius-l);
  padding: 0.8rem;
  background: var(--bg);
  box-shadow: var(--sh-out);
}
.split-media img {
  border-radius: calc(var(--radius-l) - 0.4rem);
  width: 100%;
}
.split-body h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
}
.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.feature-list .fi {
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent-grad);
  box-shadow: var(--sh-out-sm);
}
.feature-list .fi svg {
  width: 1.15rem;
  height: 1.15rem;
}
.feature-list h4 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}
.feature-list p {
  margin: 0;
  font-size: 0.9rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.3rem;
  counter-reset: step;
}
.step {
  background: var(--bg);
  border-radius: var(--radius-m);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--sh-out);
  position: relative;
}
.step .n {
  counter-increment: step;
  font-family: "Display", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: var(--accent-grad);
  box-shadow: var(--sh-out-sm);
  margin-bottom: 1rem;
}
.step .n::before {
  content: counter(step, decimal-leading-zero);
}
.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.step p {
  margin: 0;
  font-size: 0.9rem;
}

.board-wrap {
  background: var(--bg);
  border-radius: var(--radius-l);
  padding: clamp(1rem, 3vw, 1.8rem);
  box-shadow: var(--sh-out);
}
.board-scroll {
  overflow-x: auto;
}
.board {
  width: 100%;
  border-collapse: collapse;
  min-width: 38rem;
}
.board thead th {
  font-family: "Display", sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: left;
  padding: 0.75rem 1rem;
}
.board tbody tr {
  background: var(--bg);
}
.board tbody td {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(174, 179, 209, 0.35);
  font-size: 0.92rem;
  color: var(--ink-soft);
  vertical-align: middle;
}
.board .rank {
  font-family: "Display", sans-serif;
  font-weight: 800;
  width: 3rem;
}
.board .rank b {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  box-shadow: var(--sh-out-sm);
  color: var(--ink);
  font-size: 0.85rem;
}
.board tr.top .rank b {
  color: #fff;
  background: var(--accent-grad);
}
.board .bgame {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Display", sans-serif;
  font-weight: 700;
  color: var(--ink);
}
.board .bgame img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  box-shadow: var(--sh-out-sm);
}
.board .pts {
  font-family: "Display", sans-serif;
  font-weight: 800;
  color: var(--duo-a-deep);
}
.trend {
  font-size: 0.8rem;
  font-weight: 700;
}
.trend.up {
  color: #1fa97c;
}
.trend.flat {
  color: var(--ink-faint);
}

.reviews {
  columns: 3 18rem;
  column-gap: 1.3rem;
}
.review {
  break-inside: avoid;
  background: var(--bg);
  border-radius: var(--radius-m);
  padding: 1.4rem;
  box-shadow: var(--sh-out);
  margin-bottom: 1.3rem;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}
.review-av {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-family: "Display", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: var(--sh-out-sm);
}
.review-who b {
  display: block;
  font-family: "Display", sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
}
.review-who span {
  font-size: 0.75rem;
  color: var(--ink-faint);
}
.review-stars {
  display: inline-flex;
  gap: 0.1rem;
  margin-bottom: 0.5rem;
  color: #f6b73c;
}
.review-stars svg {
  width: 0.9rem;
  height: 0.9rem;
}
.review p {
  font-size: 0.9rem;
  margin: 0;
}
.review .game-of {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--duo-a-deep);
  background: var(--bg);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-press);
}

.faq {
  max-width: 50rem;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}
.qa {
  background: var(--bg);
  border-radius: var(--radius-m);
  box-shadow: var(--sh-out);
  overflow: hidden;
}
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Display", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.qa summary::-webkit-details-marker {
  display: none;
}
.qa summary .pm {
  flex: none;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-out-sm);
  transition: transform var(--t-mid);
  color: var(--duo-a-deep);
}
.qa[open] summary .pm {
  transform: rotate(45deg);
}
.qa .qa-body {
  padding: 0 1.4rem 1.3rem;
}
.qa .qa-body p {
  margin: 0;
  font-size: 0.92rem;
}

.signup {
  background: var(--bg);
  border-radius: var(--radius-l);
  box-shadow: var(--sh-out);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.signup-info {
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--accent-grad);
  color: #fff;
  position: relative;
}
.signup-info h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.signup-info p {
  color: rgba(255, 255, 255, 0.92);
}
.contact-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.6rem;
}
.contact-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: #fff;
}
.contact-list .ci {
  flex: none;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.contact-list .ci svg {
  width: 1.1rem;
  height: 1.1rem;
}
.contact-list a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
.contact-list b {
  display: block;
  font-family: "Display", sans-serif;
  font-size: 0.95rem;
}

.signup-form {
  padding: clamp(1.8rem, 4vw, 3rem);
}
.signup-form h3 {
  font-size: 1.3rem;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-family: "Display", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"] {
  width: 100%;
  font-family: "Text", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: var(--radius-s);
  background: var(--bg);
  box-shadow: var(--sh-in);
}
.field input::placeholder {
  color: var(--ink-faint);
}
.field input:focus {
  outline: none;
  box-shadow: var(--sh-in), 0 0 0 2px var(--duo-a);
}
.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.consent input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--duo-a-deep);
  flex: none;
}
.consent a {
  color: var(--duo-a-deep);
  font-weight: 600;
}
.success-msg {
  display: none;
  margin-top: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-s);
  background: rgba(31, 169, 124, 0.12);
  color: #14785a;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--sh-out-sm);
}
.success-msg.show {
  display: block;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  gap: 1.3rem;
}
.value {
  background: var(--bg);
  border-radius: var(--radius-m);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--sh-out);
}
.value .vi {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  color: var(--duo-a-deep);
  background: var(--bg);
  box-shadow: var(--sh-press);
  margin-bottom: 1rem;
}
.value .vi svg {
  width: 1.4rem;
  height: 1.4rem;
}
.value h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.value p {
  margin: 0;
  font-size: 0.9rem;
}

.genre-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.genre-pill {
  font-family: "Display", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--bg);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-out-sm);
}

.page-hero {
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 3vw, 2rem);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}
.page-hero p {
  font-size: 1.05rem;
  max-width: 42rem;
}
.crumbs {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.crumbs a {
  color: var(--ink-soft);
}
.prose {
  background: var(--bg);
  border-radius: var(--radius-l);
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: var(--sh-out);
  max-width: 52rem;
}
.prose h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: 1.1rem;
  margin-top: 1.4rem;
}
.prose p,
.prose li {
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.prose ul {
  list-style: disc;
  padding-left: 1.3rem;
  margin-bottom: 1rem;
}
.prose ul li {
  margin-bottom: 0.4rem;
}
.prose a {
  color: var(--duo-a-deep);
  font-weight: 600;
  text-decoration: underline;
}
.prose .updated {
  font-size: 0.82rem;
  color: var(--ink-faint);
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.info-card {
  background: var(--bg);
  border-radius: var(--radius-l);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--sh-out);
}
.info-card h2 {
  font-size: 1.4rem;
}

.err {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.err .big {
  font-family: "Display", sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 20vw, 11rem);
  line-height: 0.9;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  background: var(--bg);
  border-radius: var(--radius-l);
  box-shadow: 0.5rem 0.5rem 2rem rgba(120, 124, 160, 0.5),
    -0.3rem -0.3rem 1rem rgba(255, 255, 255, 0.9);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  max-width: 60rem;
  margin-inline: auto;
  transform: translateY(150%);
  transition: transform var(--t-mid);
}
.cookie.show {
  transform: translateY(0);
}
.cookie p {
  margin: 0;
  font-size: 0.88rem;
  flex: 1 1 18rem;
}
.cookie p a {
  font-weight: 600;
}
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex: none;
}

.foot {
  margin-top: var(--section-y);
  background: var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
}
.foot-brand p {
  font-size: 0.9rem;
  max-width: 22rem;
  margin-top: 1rem;
}
.foot h4 {
  font-family: "Display", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.foot ul li {
  margin-bottom: 0.6rem;
}
.foot ul a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color var(--t-fast);
}
.foot ul a:hover {
  color: var(--duo-a-deep);
}
.foot-nap {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.foot-nap a {
  color: var(--ink-soft);
}
.foot-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(174, 179, 209, 0.4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.socials {
  display: flex;
  gap: 0.6rem;
}
.socials a {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  background: var(--bg);
  box-shadow: var(--sh-out-sm);
  transition: transform var(--t-fast), color var(--t-fast);
}
.socials a:hover {
  transform: translateY(-2px);
  color: var(--duo-a-deep);
}
.socials svg {
  width: 1.1rem;
  height: 1.1rem;
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-reveal .reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 30rem;
    margin-inline: auto;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split.flip .split-media {
    order: 0;
  }
  .signup {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .reviews {
    columns: 2 16rem;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-main,
  .nav-cta {
    display: none;
  }
  .burger {
    display: grid;
  }
  .stat-band {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
  .stat {
    padding: 0.9rem 0.5rem;
  }
  .hero-tag.t1 {
    left: 0.4rem;
  }
  .hero-tag.t2 {
    right: 0.4rem;
  }
}

@media (max-width: 560px) {
  .reviews {
    columns: 1;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-brand {
    grid-column: 1 / -1;
  }
  .cookie {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .btn {
    flex: 1;
  }
  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
