 

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fr-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fr-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fr-600i.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fr-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fr-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Albert";
  src: url("../fonts/al-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Albert";
  src: url("../fonts/al-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Albert";
  src: url("../fonts/al-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Albert";
  src: url("../fonts/al-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #100f0b;
  --ink-2: #16140e;
  --panel: #1c1a12;
  --panel-2: #232014;
  --line: #34301f;
  --line-soft: #2a2718;
  --gold: #d4af56;
  --gold-bright: #f3d98c;
  --gold-deep: #a9822f;
  --cream: #f4eedd;
  --paper: #efe7d2;
  --muted: #b3a988;
  --muted-2: #8f8568;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Albert", system-ui, -apple-system, sans-serif;
  --r: 0.25rem;
  --r-lg: 0.4rem;
  --wrap: 75rem;
  --gut: 1.5rem;
}

* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--gold-bright);
  text-decoration: none;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.1;
  margin: 0 0 0.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 1rem;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 0.125rem solid var(--gold-bright);
  outline-offset: 0.18rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r);
  border: 0.0625rem solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a1505;
  border-color: var(--gold-deep);
}
.btn--gold:hover {
  transform: translateY(-0.125rem);
  background: linear-gradient(135deg, #ffe7a6, var(--gold));
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn--block {
  width: 100%;
}

.hd {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(16, 15, 11, 0.86);
  backdrop-filter: blur(0.6rem);
  border-bottom: 0.0625rem solid var(--line-soft);
}
.hd__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.5rem;
}
.hd__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.hd__brand svg {
  width: 1.85rem;
  height: 1.85rem;
  flex: none;
}
.hd__brand b {
  color: var(--gold);
  font-weight: 700;
}
.hd__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.hd__link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 0.25rem 0;
}
.hd__link:hover,
.hd__link[aria-current="page"] {
  color: var(--gold-bright);
}
.hd__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 0.0625rem;
  background: var(--gold);
}
.hd__cta {
  display: inline-flex;
}
.hd__burger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0.0625rem solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
}
.hd__burger span {
  display: block;
  width: 1.2rem;
  height: 0.09rem;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(20rem, 84vw);
  background: var(--ink-2);
  border-left: 0.0625rem solid var(--line);
  box-shadow: -1.5rem 0 3rem rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem 2rem;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.drawer__close {
  width: 2.4rem;
  height: 2.4rem;
  border: 0.0625rem solid var(--line);
  background: transparent;
  border-radius: var(--r);
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.drawer__nav a {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cream);
  padding: 0.7rem 0;
  border-bottom: 0.0625rem solid var(--line-soft);
}
.drawer__nav a:hover {
  color: var(--gold-bright);
  padding-left: 0.4rem;
}
.drawer__foot {
  margin-top: auto;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted-2);
  line-height: 1.6;
}
.drawer__foot a {
  color: var(--gold);
}
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 4, 0.62);
  backdrop-filter: blur(0.15rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 55;
}
.scrim.is-open {
  opacity: 1;
  visibility: visible;
}
body.is-locked {
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 0.0625rem solid var(--line-soft);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(70% 90% at 12% 18%, rgba(212, 175, 86, 0.16), transparent 60%),
    radial-gradient(60% 80% at 92% 88%, rgba(169, 130, 47, 0.18), transparent 62%),
    linear-gradient(135deg, #14120c, #0d0c08 60%, #16130b);
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    conic-gradient(from 210deg at 30% 40%, transparent, rgba(243, 217, 140, 0.07), transparent 40%),
    conic-gradient(from 20deg at 78% 70%, transparent, rgba(212, 175, 86, 0.06), transparent 45%);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) rotate(0deg); }
  to   { transform: translate3d(3%, 2%, 0) rotate(8deg); }
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 5.5rem;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.hero__lead {
  font-size: 1.18rem;
  color: var(--paper);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
}
.hero__stat b {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.hero__stat span {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__visual {
  position: relative;
  min-height: 26rem;
}
.hero__phone {
  position: absolute;
  border-radius: var(--r-lg);
  border: 0.0625rem solid var(--line);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.hero__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__phone--a {
  width: 62%;
  aspect-ratio: 42 / 76;
  top: 0;
  right: 8%;
  z-index: 2;
  transform: rotate(2deg);
}
.hero__phone--b {
  width: 50%;
  aspect-ratio: 42 / 76;
  bottom: 0;
  left: 2%;
  z-index: 1;
  transform: rotate(-4deg);
  opacity: 0.96;
}
.hero__badge {
  position: absolute;
  z-index: 3;
  bottom: 2.4rem;
  right: 0;
  background: rgba(20, 18, 11, 0.92);
  border: 0.0625rem solid var(--gold-deep);
  border-radius: var(--r);
  padding: 0.7rem 0.95rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.5);
}
.hero__badge b {
  font-family: var(--serif);
  font-size: 1.1rem;
  display: block;
  color: var(--cream);
}

.section {
  padding: 4.5rem 0;
}
.section--alt {
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  border-top: 0.0625rem solid var(--line-soft);
  border-bottom: 0.0625rem solid var(--line-soft);
}
.section__head {
  max-width: 42rem;
  margin-bottom: 2.6rem;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
}
.section__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.section__sub {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.ticker {
  border-top: 0.0625rem solid var(--line-soft);
  border-bottom: 0.0625rem solid var(--line-soft);
  background: var(--ink-2);
  overflow: hidden;
  padding: 0.9rem 0;
}
.ticker__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: slide 32s linear infinite;
}
.ticker__item {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.ticker__item svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--gold);
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.featrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.feature {
  background: var(--panel);
  border: 0.0625rem solid var(--line-soft);
  border-radius: var(--r);
  padding: 1.8rem 1.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature:hover {
  border-color: var(--gold-deep);
  transform: translateY(-0.25rem);
}
.feature__ico {
  width: 2.8rem;
  height: 2.8rem;
  border: 0.0625rem solid var(--gold-deep);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.feature__ico svg {
  width: 1.4rem;
  height: 1.4rem;
}
.feature h3 {
  font-size: 1.3rem;
}
.feature p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 1.4rem;
}
.tile {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 0.0625rem solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.tile:hover {
  border-color: var(--gold-deep);
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
}
.tile__top {
  display: flex;
  gap: 1rem;
  padding: 1.3rem 1.3rem 0.9rem;
  align-items: center;
}
.tile__icon {
  width: 4rem;
  height: 4rem;
  flex: none;
  border-radius: var(--r);
  border: 0.0625rem solid var(--line);
}
.tile__meta {
  min-width: 0;
}
.tile__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
}
.tile__cat {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.tile__rate {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-top: 0.35rem;
}
.tile__rate svg {
  width: 0.85rem;
  height: 0.85rem;
}
.tile__body {
  padding: 0 1.3rem 1.1rem;
  flex: 1;
}
.tile__body p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}
.tile__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0 1.3rem 1.3rem;
}
.tile__score {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.tile__score b {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  display: block;
}

.spotlight {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  background: var(--panel-2);
  border: 0.0625rem solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.spotlight__media {
  position: relative;
  min-height: 22rem;
  background:
    linear-gradient(180deg, rgba(16, 15, 11, 0.1), rgba(16, 15, 11, 0.65)),
    var(--panel);
}
.spotlight__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight__body {
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight__body h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
}
.spotlight__body p {
  color: var(--paper);
}
.spotlight__list {
  list-style: none;
  margin: 1rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.spotlight__list li {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
}
.spotlight__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.revs {
  columns: 3;
  column-gap: 1.4rem;
}
.rev {
  break-inside: avoid;
  background: var(--panel);
  border: 0.0625rem solid var(--line-soft);
  border-radius: var(--r);
  padding: 1.5rem 1.5rem 1.3rem;
  margin-bottom: 1.4rem;
}
.rev__stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}
.rev__text {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--cream);
  margin: 0 0 1.1rem;
}
.rev__who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.rev__av {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1505;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  flex: none;
}
.rev__name {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--paper);
}
.rev__role {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--muted-2);
}

.board {
  border: 0.0625rem solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.board__scroll {
  overflow-x: auto;
}
.board table {
  width: 100%;
  border-collapse: collapse;
  min-width: 34rem;
}
.board th,
.board td {
  text-align: left;
  padding: 1rem 1.1rem;
  border-bottom: 0.0625rem solid var(--line-soft);
}
.board th {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  background: var(--panel-2);
}
.board tr:last-child td {
  border-bottom: 0;
}
.board tbody tr:hover {
  background: rgba(212, 175, 86, 0.05);
}
.board__rank {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  width: 3rem;
}
.board__game {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}
.board__game img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--r);
  flex: none;
}
.board__score b {
  color: var(--gold-bright);
}
.board__bar {
  height: 0.4rem;
  border-radius: 1rem;
  background: var(--line-soft);
  overflow: hidden;
  min-width: 6rem;
}
.board__bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}

.faq {
  max-width: 48rem;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 0.0625rem solid var(--line-soft);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.25rem 2.5rem 1.25rem 0;
  position: relative;
  cursor: pointer;
}
.faq__q::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 1.1rem;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.25s ease;
}
.faq__q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__a p {
  color: var(--muted);
  padding: 0 2.5rem 1.4rem 0;
  margin: 0;
}

.sub {
  position: relative;
  overflow: hidden;
}
.sub__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sub__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 12, 8, 0.96), rgba(13, 12, 8, 0.82));
}
.sub__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sub__info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.sub__info p {
  color: var(--paper);
}
.contacts {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.contacts li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contacts svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--gold);
  flex: none;
  margin-top: 0.3rem;
}
.contacts b {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}
.contacts span {
  color: var(--cream);
}
.contacts a {
  color: var(--cream);
}
.contacts a:hover {
  color: var(--gold-bright);
}

.card-form {
  background: var(--panel);
  border: 0.0625rem solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
}
.card-form h3 {
  font-size: 1.5rem;
}
.fld {
  margin-bottom: 1rem;
}
.fld label {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.fld input[type="text"],
.fld input[type="tel"],
.fld input[type="email"] {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: var(--ink);
  border: 0.0625rem solid var(--line);
  border-radius: var(--r);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.fld input::placeholder {
  color: var(--muted-2);
}
.fld input:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 0.18rem rgba(212, 175, 86, 0.18);
}
.fld--consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.fld--consent input {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold);
  flex: none;
}
.fld--consent label {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--muted);
  margin: 0;
}
.fld--consent a {
  color: var(--gold-bright);
}
.success-msg {
  display: none;
  margin-top: 0.9rem;
  padding: 0.7rem 0.9rem;
  background: rgba(212, 175, 86, 0.12);
  border: 0.0625rem solid var(--gold-deep);
  border-radius: var(--r);
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.85rem;
}
.success-msg.show {
  display: block;
}

.page-hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  border-bottom: 0.0625rem solid var(--line-soft);
  background:
    radial-gradient(60% 90% at 85% 10%, rgba(212, 175, 86, 0.14), transparent 60%),
    linear-gradient(135deg, #14120c, #0d0c08);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
}
.page-hero p {
  color: var(--muted);
  max-width: 40rem;
  margin: 0;
}
.prose {
  max-width: 50rem;
}
.prose h2 {
  font-size: 1.7rem;
  margin-top: 2.4rem;
  color: var(--gold-bright);
}
.prose h3 {
  font-size: 1.25rem;
  margin-top: 1.6rem;
}
.prose p,
.prose li {
  color: var(--paper);
}
.prose ul {
  padding-left: 1.2rem;
}
.prose li {
  margin-bottom: 0.5rem;
}
.prose a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}
.prose strong {
  color: var(--cream);
}
.callout {
  background: var(--panel);
  border-left: 0.2rem solid var(--gold);
  border-radius: var(--r);
  padding: 1.1rem 1.3rem;
  margin: 1.6rem 0;
}
.callout p {
  margin: 0;
  color: var(--paper);
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.6rem;
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 0.0625rem solid var(--line);
  aspect-ratio: 11 / 8;
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}
.about__stat {
  border: 0.0625rem solid var(--line-soft);
  border-radius: var(--r);
  padding: 1rem 1.1rem;
}
.about__stat b {
  font-size: 1.7rem;
  color: var(--gold-bright);
  display: block;
  line-height: 1.1;
}
.about__stat span {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.nf {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0;
}
.nf__code {
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--gold);
  font-style: italic;
}

.ft {
  background: var(--ink-2);
  border-top: 0.0625rem solid var(--line);
  padding: 3.4rem 0 2rem;
}
.ft__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.2rem;
}
.ft__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.9rem;
}
.ft__brand svg {
  width: 1.7rem;
  height: 1.7rem;
}
.ft__blurb {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 22rem;
}
.ft h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ft__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.ft__col a {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
}
.ft__col a:hover {
  color: var(--gold-bright);
}
.ft__nap {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.ft__nap a {
  color: var(--cream);
}
.ft__bottom {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 0.0625rem solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted-2);
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  background: var(--ink-2);
  border: 0.0625rem solid var(--gold-deep);
  border-radius: var(--r-lg);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.55);
  padding: 1.2rem 1.4rem;
  display: none;
  gap: 1.2rem;
  align-items: center;
  max-width: 54rem;
  margin: 0 auto;
}
.cookie.is-shown {
  display: flex;
}
.cookie p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--muted);
}
.cookie p a {
  color: var(--gold-bright);
}
.cookie__btns {
  display: flex;
  gap: 0.6rem;
  flex: none;
}

@media (max-width: 1024px) {
  .hero__grid {
    gap: 2rem;
  }
  .revs {
    columns: 2;
  }
  .ft__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 2rem;
  }
}

@media (max-width: 860px) {
  .hd__nav {
    display: none;
  }
  .hd__cta {
    display: none;
  }
  .hd__burger {
    display: flex;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    padding: 3.5rem 0 4rem;
  }
  .hero__visual {
    min-height: 22rem;
    max-width: 26rem;
    margin: 0 auto;
    width: 100%;
  }
  .featrow {
    grid-template-columns: 1fr;
  }
  .spotlight {
    grid-template-columns: 1fr;
  }
  .spotlight__media {
    min-height: 16rem;
  }
  .sub__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 3.2rem 0;
  }
  .revs {
    columns: 1;
  }
  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .hero__stats {
    gap: 1.4rem;
  }
  .ft__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .cookie {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie__btns .btn {
    flex: 1;
  }
}

@media (max-width: 400px) {
  :root {
    --gut: 1.1rem;
  }
  .hero__phone--b {
    display: none;
  }
  .hero__visual {
    min-height: 18rem;
  }
  .about__stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg::before {
    animation: none;
  }
  .ticker__track {
    animation: none;
  }
}
