:root {
  --sand: #c9bd9b;
  --sand-soft: #ded2b4;
  --sand-deep: #958867;
  --olive-950: #11170f;
  --olive-900: #172016;
  --olive-820: #202a1f;
  --olive-760: #2c3729;
  --amber: #d9a441;
  --amber-soft: #f0c96a;
  --turquoise: #40d4c4;
  --turquoise-dark: #1b7f79;
  --silver: #b9b8ad;
  --silver-dim: rgba(214, 215, 204, 0.32);
  --ink: #11130d;
  --white: #fffaf0;
  --glass: rgba(24, 33, 21, 0.72);
  --radius: 8px;
  --shadow: 0 24px 90px rgba(17, 23, 15, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(17, 23, 15, 0.94), rgba(32, 42, 31, 0.78)),
    radial-gradient(circle at 18% 12%, rgba(217, 164, 65, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--sand), #a99c79 48%, #716947);
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(64, 212, 196, 0.34);
}

.page-fade {
  animation: pageFade 780ms ease both;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.particle-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    radial-gradient(circle, rgba(64, 212, 196, 0.22) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(217, 164, 65, 0.2) 0 1px, transparent 1.8px);
  background-size: 74px 74px, 128px 128px;
  background-position: 0 0, 34px 18px;
  animation: particles 24s linear infinite;
  opacity: 0.62;
}

@keyframes particles {
  to {
    background-position: 220px 160px, -180px 240px;
  }
}

.geo-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.38;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(185, 184, 173, 0.12) 18.1% 18.3%, transparent 18.4% 100%),
    linear-gradient(64deg, transparent 0 68%, rgba(64, 212, 196, 0.16) 68.1% 68.3%, transparent 68.4% 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px clamp(14px, 4vw, 42px);
  transition: padding 260ms ease, background 260ms ease, border 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.inner-page .site-header {
  padding-block: 10px;
  background: rgba(17, 23, 15, 0.82);
  border-bottom: 1px solid var(--silver-dim);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(64, 212, 196, 0.45);
  box-shadow: 0 0 26px rgba(64, 212, 196, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(185, 184, 173, 0.22);
  border-radius: var(--radius);
  background: rgba(17, 23, 15, 0.28);
  backdrop-filter: blur(16px);
}

.nav-links a {
  position: relative;
  padding: 10px 13px;
  color: rgba(255, 250, 240, 0.8);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 1px;
  background: var(--turquoise);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(64, 212, 196, 0.08);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--silver-dim);
  border-radius: var(--radius);
  background: rgba(17, 23, 15, 0.7);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--turquoise);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 23, 15, 0.95), rgba(17, 23, 15, 0.64) 48%, rgba(17, 23, 15, 0.84)),
    linear-gradient(180deg, rgba(17, 23, 15, 0.36), rgba(17, 23, 15, 0.98));
}

.hero-gridline {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(185, 184, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 184, 173, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
  animation: gridDrift 18s linear infinite;
}

@keyframes gridDrift {
  to {
    transform: translate3d(58px, 58px, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding-top: 86px;
}

.eyebrow,
.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--turquoise);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--amber);
  box-shadow: 0 0 16px rgba(217, 164, 65, 0.7);
}

.label-chip {
  padding: 6px 9px;
  color: var(--white);
  border: 1px solid rgba(64, 212, 196, 0.35);
  background: rgba(64, 212, 196, 0.08);
  border-radius: 6px;
}

h1,
h2,
h3 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.94;
}

.hero h1 {
  max-width: 820px;
  margin: 20px 0 20px;
  font-size: clamp(4.1rem, 10vw, 9.4rem);
}

.hero p,
.page-hero p,
.section-heading p {
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-future {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(185, 184, 173, 0.34);
  border-radius: var(--radius);
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-future:hover {
  transform: translateY(-2px);
}

.btn-amber {
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.95), rgba(151, 112, 37, 0.95));
  box-shadow: 0 16px 40px rgba(217, 164, 65, 0.22);
}

.btn-ghost {
  background: rgba(17, 23, 15, 0.46);
  border-color: rgba(64, 212, 196, 0.48);
  box-shadow: inset 0 0 28px rgba(64, 212, 196, 0.1);
}

.hero-widgets {
  display: grid;
  gap: 18px;
}

.floating-widget,
.status-card,
.mini-story,
.vault-card,
.number-tile,
.testimonial-card,
.news-card,
.guide-card,
.review-card,
.legal-card,
.contact-console,
.contact-side,
.filter-panel {
  position: relative;
  border: 1px solid var(--silver-dim);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(32, 42, 31, 0.8), rgba(17, 23, 15, 0.66));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-widget {
  padding: 24px;
  overflow: hidden;
}

.floating-widget::before,
.status-card::before,
.vault-card::before,
.news-card::before,
.review-card::before,
.guide-card::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(64, 212, 196, 0.52), transparent 28%, rgba(217, 164, 65, 0.34));
  opacity: 0;
  transition: opacity 180ms ease;
}

.floating-widget:hover::before,
.status-card:hover::before,
.vault-card:hover::before,
.news-card:hover::before,
.review-card:hover::before,
.guide-card:hover::before,
.legal-card:hover::before {
  opacity: 1;
}

.offset-widget {
  transform: translateX(40px);
}

.widget-kicker {
  display: block;
  color: var(--amber-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-widget strong {
  display: block;
  margin: 8px 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 2.25rem;
  line-height: 1;
}

.floating-widget small {
  color: rgba(255, 250, 240, 0.62);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(64, 212, 196, 0.5);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--turquoise);
  transform: translateX(-50%);
  animation: cue 1.5s ease infinite;
}

@keyframes cue {
  50% {
    transform: translate(-50%, 14px);
    opacity: 0.45;
  }
}

.section-panel {
  position: relative;
  padding: clamp(74px, 9vw, 128px) 0;
}

.diagonal-top {
  clip-path: polygon(0 42px, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(17, 23, 15, 0.84), rgba(32, 42, 31, 0.72));
}

.diagonal-both {
  clip-path: polygon(0 0, 100% 48px, 100% calc(100% - 42px), 0 100%);
  background: rgba(17, 23, 15, 0.42);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.page-hero h1 {
  margin: 14px 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.48fr);
  gap: 28px;
  align-items: end;
}

.pulse-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
}

.feature-story {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--silver-dim);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-story img,
.magazine-hero img,
.featured-guide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(17, 23, 15, 0.9));
}

.story-body {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 2;
}

.story-body h3,
.magazine-content h2,
.featured-guide h2,
.review-lead h2 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.story-body p,
.mini-story p,
.status-card p,
.vault-card p,
.news-card p,
.guide-card p,
.review-card p,
.legal-card p {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.65;
}

.story-body a,
.inline-link {
  color: var(--turquoise);
  font-weight: 800;
  text-transform: uppercase;
}

.mini-stack {
  display: grid;
  gap: 18px;
}

.mini-story {
  padding: 24px;
}

.mini-story h3 {
  margin: 16px 0 10px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.status-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.status-card {
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
}

.status-card h3 {
  margin: 18px 0 12px;
  font-size: 2rem;
}

.live-card {
  background:
    linear-gradient(145deg, rgba(32, 42, 31, 0.78), rgba(17, 23, 15, 0.7)),
    radial-gradient(circle at 84% 18%, rgba(64, 212, 196, 0.18), transparent 17rem);
}

.status-dot {
  position: absolute;
  top: 23px;
  right: 23px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 18px var(--turquoise);
  animation: pulseDot 1.8s ease infinite;
}

@keyframes pulseDot {
  50% {
    transform: scale(1.45);
    opacity: 0.45;
  }
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.68);
  font-weight: 800;
}

.countdown span {
  color: var(--amber-soft);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
}

.rank-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.rank-list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(185, 184, 173, 0.16);
  background: rgba(255, 250, 240, 0.04);
}

.rank-list span {
  color: var(--amber);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
}

.rank-list strong {
  color: var(--turquoise);
}

.activity-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 700;
}

meter {
  width: 100%;
  height: 10px;
}

meter::-webkit-meter-bar {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
}

meter::-webkit-meter-optimum-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--turquoise));
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vault-card {
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  transition: transform 220ms ease, min-height 220ms ease;
}

.vault-card:hover {
  transform: translateY(-8px);
}

.vault-card span {
  color: rgba(217, 164, 65, 0.7);
  font-family: "Rajdhani", sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

.vault-card h3 {
  margin: 28px 0 12px;
  font-size: 1.65rem;
}

.numbers-band {
  background: linear-gradient(90deg, rgba(201, 189, 155, 0.16), rgba(64, 212, 196, 0.08));
}

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

.number-tile {
  padding: 28px;
  text-align: center;
}

.number-tile strong {
  display: block;
  color: var(--amber-soft);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.number-tile span {
  color: rgba(255, 250, 240, 0.68);
  font-weight: 800;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(64, 212, 196, 0.46);
  border-radius: var(--radius);
  background: rgba(17, 23, 15, 0.58);
  position: relative;
}

.slider-controls button::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-top: 2px solid var(--turquoise);
  border-left: 2px solid var(--turquoise);
  transform: rotate(-45deg);
}

.slider-controls button[data-slider-next]::before {
  transform: rotate(135deg);
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 360ms ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: clamp(28px, 5vw, 52px);
}

.testimonial-card p {
  max-width: 840px;
  margin: 20px 0;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.35;
}

.rating {
  display: flex;
  gap: 6px;
}

.rating span {
  width: 22px;
  height: 6px;
  border-radius: 999px;
  background: var(--amber-soft);
  box-shadow: 0 0 18px rgba(217, 164, 65, 0.32);
}

.rating .empty {
  background: rgba(255, 250, 240, 0.18);
  box-shadow: none;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: rgba(255, 250, 240, 0.6);
}

.page-hero {
  position: relative;
  padding: 170px 0 74px;
  background:
    linear-gradient(135deg, rgba(17, 23, 15, 0.96), rgba(32, 42, 31, 0.72)),
    radial-gradient(circle at 82% 34%, rgba(217, 164, 65, 0.2), transparent 25rem);
  overflow: hidden;
}

.compact-hero::after {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -80px;
  width: 42vw;
  height: 220px;
  border: 1px solid rgba(64, 212, 196, 0.24);
  transform: skewX(-22deg);
  background: rgba(64, 212, 196, 0.05);
}

.page-hero .container-xl {
  position: relative;
  z-index: 2;
}

.page-hero p {
  max-width: 760px;
}

.magazine-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 440px;
  border: 1px solid var(--silver-dim);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass);
  box-shadow: var(--shadow);
}

.magazine-content {
  padding: clamp(28px, 5vw, 52px);
  align-self: end;
}

.magazine-content p,
.featured-guide p,
.review-lead p {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.7;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.meta-strip span,
.news-card small,
.guide-card small {
  color: var(--silver);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
  margin-top: 26px;
}

.news-card {
  overflow: hidden;
  transition: transform 220ms ease;
}

.news-card:hover,
.review-card:hover,
.guide-card:hover {
  transform: translateY(-7px);
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card div {
  padding: 22px;
}

.news-card h3,
.guide-card h3,
.review-card h3,
.legal-card h2 {
  margin: 14px 0 10px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.tall-card {
  grid-row: span 2;
}

.tall-card img {
  height: 430px;
}

.wide-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.wide-card img {
  height: 100%;
}

.academy-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.filter-pill {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(185, 184, 173, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 250, 240, 0.75);
  background: rgba(255, 250, 240, 0.035);
  text-align: left;
  text-transform: uppercase;
  font-weight: 800;
  transition: background 180ms ease, border 180ms ease;
}

.filter-pill:hover,
.filter-pill.active {
  border-color: rgba(64, 212, 196, 0.48);
  background: rgba(64, 212, 196, 0.1);
}

.filter-meter {
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.62);
  font-weight: 700;
}

.featured-guide {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--silver-dim);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass);
  box-shadow: var(--shadow);
}

.featured-guide > div {
  padding: clamp(24px, 5vw, 46px);
  align-self: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.guide-card {
  padding: 24px;
}

.difficulty {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rookie {
  color: #fbf2cf;
  background: rgba(185, 184, 173, 0.22);
}

.skilled {
  color: #dffdf9;
  background: rgba(64, 212, 196, 0.18);
}

.elite {
  color: #fff0c2;
  background: rgba(217, 164, 65, 0.2);
}

.review-lead {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--silver-dim);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
}

.score-orbit {
  --score: 80;
  width: 164px;
  height: 164px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--olive-900) 58%, transparent 60%),
    conic-gradient(var(--turquoise) calc(var(--score) * 1%), rgba(255, 250, 240, 0.13) 0);
  box-shadow: 0 0 42px rgba(64, 212, 196, 0.18);
}

.score-orbit span {
  color: var(--amber-soft);
  font-family: "Rajdhani", sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

.score-orbit.small {
  width: 74px;
  height: 74px;
}

.score-orbit.small span {
  font-size: 1.35rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.review-card {
  overflow: hidden;
}

.review-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.review-card > :not(img) {
  margin-inline: 22px;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.genre {
  color: var(--turquoise);
  font-weight: 900;
  text-transform: uppercase;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-block: 18px 22px;
}

.pros-cons div {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(185, 184, 173, 0.16);
  background: rgba(255, 250, 240, 0.035);
}

.pros-cons strong {
  color: var(--amber-soft);
  text-transform: uppercase;
  font-size: 0.74rem;
}

.pros-cons span {
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.88rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
}

.contact-console,
.contact-side {
  padding: clamp(24px, 4vw, 38px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(185, 184, 173, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(17, 23, 15, 0.68);
  padding: 14px;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(64, 212, 196, 0.7);
  box-shadow: 0 0 0 4px rgba(64, 212, 196, 0.1);
  background: rgba(17, 23, 15, 0.9);
}

.contact-form .is-invalid {
  border-color: rgba(217, 93, 65, 0.85);
}

.form-status {
  min-height: 24px;
  color: var(--turquoise);
  font-weight: 800;
}

.form-status.error {
  color: #ffb08b;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.contact-detail {
  padding: 18px;
  border: 1px solid rgba(185, 184, 173, 0.17);
  background: rgba(255, 250, 240, 0.035);
}

.contact-detail span {
  display: block;
  color: var(--amber-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
}

.map-placeholder {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(64, 212, 196, 0.32);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(64, 212, 196, 0.26), transparent 90px),
    linear-gradient(135deg, rgba(17, 23, 15, 0.9), rgba(32, 42, 31, 0.74));
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(185, 184, 173, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 184, 173, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: rotate(-8deg) scale(1.2);
}

.map-placeholder strong,
.map-placeholder span {
  position: relative;
  z-index: 2;
}

.map-placeholder strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.map-placeholder span {
  color: rgba(255, 250, 240, 0.62);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.legal-card {
  padding: 28px;
}

.legal-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 38px;
  color: var(--olive-950);
  background: var(--amber);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--silver-dim);
  background: rgba(17, 23, 15, 0.9);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 250, 240, 0.68);
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(480px, calc(100% - 32px));
  display: none;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(64, 212, 196, 0.42);
  border-radius: var(--radius);
  background: rgba(17, 23, 15, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: rgba(255, 250, 240, 0.62);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-content,
  .pulse-layout,
  .magazine-hero,
  .featured-guide,
  .contact-layout,
  .review-lead {
    grid-template-columns: 1fr;
  }

  .hero-widgets {
    grid-template-columns: repeat(3, 1fr);
  }

  .offset-widget {
    transform: none;
  }

  .vault-grid,
  .news-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-card {
    grid-column: span 2;
  }

  .academy-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    padding: 12px;
    background: rgba(17, 23, 15, 0.95);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 90px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5.7rem);
  }

  .hero-widgets,
  .status-grid,
  .numbers-grid,
  .guide-grid,
  .legal-grid,
  .form-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .feature-story {
    min-height: 460px;
  }

  .wide-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .wide-card img,
  .tall-card img {
    height: 210px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 12px;
  }

  .section-panel {
    padding: 64px 0;
  }

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

  .vault-grid,
  .news-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-orbit {
    width: 132px;
    height: 132px;
  }
}

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