@font-face {
  font-family: "ADLaM Display";
  src: url("/assets/fonts/ADLaMDisplay-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Minecraft";
  src: url("/assets/fonts/Minecraft.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: dark;
  --bg: #101413;
  --bg-deep: #090c0b;
  --surface: #202221;
  --surface-raised: #252827;
  --surface-soft: rgba(32, 34, 33, 0.78);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --text: #f7faf8;
  --text-soft: #d5d9d7;
  --muted: #8b918e;
  --green: #24d66b;
  --green-bright: #20f06b;
  --cyan: #10d7df;
  --blue: #2aa3ff;
  --purple: #9a63ff;
  --pink: #ff5c8a;
  --red: #ff6258;
  --orange: #ffa30f;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-lg: 0 36px 100px rgba(0, 0, 0, 0.42);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.24);
  --page-width: 1200px;
  font-family: Inter, Roboto, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 280px;
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  min-width: 280px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 2%, rgba(36, 214, 107, 0.08), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(154, 99, 255, 0.08), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--green);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: #8cf4b5;
}

button,
select,
input {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  background: rgba(36, 214, 107, 0.34);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--green);
  color: #07120b;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: #07120b;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(16, 20, 19, 0.72);
  backdrop-filter: blur(18px) saturate(145%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(16, 20, 19, 0.91);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.header-inner {
  display: flex;
  width: min(var(--page-width), calc(100% - 40px));
  min-height: 76px;
  align-items: center;
  gap: 22px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.brand-text {
  background: linear-gradient(90deg, var(--green-bright), var(--cyan) 58%, var(--purple));
  background-clip: text;
  color: transparent;
  font-family: "ADLaM Display", Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.primary-nav a,
.header-home-link {
  border-radius: 999px;
  padding: 8px 13px;
  color: #b8bfbb;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.primary-nav a:hover,
.header-home-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.header-context {
  overflow: hidden;
  border-left: 1px solid var(--line-strong);
  margin-right: auto;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-nav {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.language-control {
  position: relative;
  display: block;
}

.language-control::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 13px;
  width: 15px;
  height: 15px;
  border: 1.5px solid #a8afab;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}

.language-control::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 20px;
  width: 1px;
  height: 15px;
  background: #a8afab;
  box-shadow: -4px 0 0 -0.2px #a8afab, 4px 0 0 -0.2px #a8afab;
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transform: translateY(-50%);
}

.language-select {
  max-width: 188px;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 34px 0 38px;
  background: rgba(37, 40, 39, 0.88);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 750;
}

.home-hero {
  position: relative;
  isolation: isolate;
  width: min(1320px, calc(100% - 40px));
  min-height: clamp(700px, 72vw, 800px);
  overflow: hidden;
  margin: 24px auto 0;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #050711;
  box-shadow: var(--shadow-lg);
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  right: -7%;
  bottom: -35%;
  width: 55%;
  height: 70%;
  border-radius: 50%;
  background: rgba(154, 99, 255, 0.22);
  content: "";
  filter: blur(100px);
}

.home-hero__art,
.home-hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__art {
  object-fit: cover;
  object-position: left center;
}

.home-hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 26%, rgba(3, 5, 13, 0.26) 43%, rgba(3, 5, 13, 0.93) 69%, rgba(3, 5, 13, 0.99)),
    linear-gradient(180deg, rgba(3, 5, 13, 0.04), rgba(3, 5, 13, 0.38));
}

.home-hero__content {
  display: flex;
  width: min(50%, 610px);
  min-height: clamp(700px, 72vw, 800px);
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  padding: 64px clamp(34px, 5vw, 76px) 64px 30px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.home-hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: "ADLaM Display", Inter, sans-serif;
  font-size: clamp(3rem, 5.2vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-wrap: balance;
}

.home-hero h1 .hero-title__main,
.home-hero h1 .hero-title__accent {
  display: block;
}

.home-hero h1 .hero-title__accent {
  background: linear-gradient(90deg, var(--green-bright), var(--cyan) 48%, #6d8cff 72%, #bd63ff);
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 570px;
  margin: 24px 0 0;
  color: #b8c0bd;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.store-card {
  display: grid;
  width: min(100%, 500px);
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 13px 15px;
  background:
    radial-gradient(circle at 12% 20%, rgba(36, 214, 107, 0.14), transparent 42%),
    rgba(8, 12, 17, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.store-card:hover {
  border-color: rgba(70, 235, 135, 0.55);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36), 0 0 36px rgba(36, 214, 107, 0.11);
  color: #fff;
  transform: translateY(-3px);
}

.store-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.store-card__icon img {
  width: 29px;
  height: 32px;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.28));
}

.store-card__copy {
  display: grid;
  min-width: 0;
}

.store-card__copy small {
  color: var(--green-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.store-card__copy strong {
  margin-top: 2px;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.store-card__copy > span {
  margin-top: 5px;
  overflow: hidden;
  color: #aeb8b4;
  font-size: 0.75rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-card__arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--cyan));
  color: #05130b;
  font-size: 1.05rem;
  font-weight: 950;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 19px;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  color: inherit;
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(110deg, var(--green-bright), var(--cyan));
  box-shadow: 0 12px 32px rgba(16, 215, 223, 0.2);
  color: #06120c;
}

.button--primary:hover {
  box-shadow: 0 16px 38px rgba(16, 215, 223, 0.3);
  color: #06120c;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(5, 8, 17, 0.38);
  color: #a9b1ae;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.content-section,
.trust-section,
.feature-section__inner {
  width: min(var(--page-width), calc(100% - 40px));
  margin-inline: auto;
}

.content-showcase {
  padding-block: clamp(92px, 11vw, 150px);
}

.section-intro {
  max-width: 730px;
  margin-bottom: 40px;
}

.section-intro h2,
.brand-moment h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.section-intro > p:last-child,
.brand-moment__copy > p:last-child {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.75;
}

.category-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.category-cluster {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 7fr) minmax(330px, 5fr);
  gap: 16px;
}

.category-cluster--reverse .category-card {
  order: 2;
}

.category-cluster--reverse .content-card-list {
  order: 1;
}

.category-card {
  position: relative;
  display: block;
  grid-column: span 5;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
}

.category-card--wide {
  grid-column: span 7;
}

.category-cluster .category-card {
  grid-column: auto;
  min-height: 500px;
}

.category-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 450ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.category-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color 180ms ease;
}

.category-card:hover > img {
  filter: saturate(1.08) brightness(1.03);
  transform: scale(1.035);
}

.category-card:hover::after {
  border-color: rgba(36, 214, 107, 0.36);
}

.category-card:hover {
  color: var(--text);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(180deg, transparent 38%, rgba(4, 7, 6, 0.25) 58%, rgba(4, 7, 6, 0.94));
}

.category-card__index {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(5, 8, 7, 0.42);
  color: rgba(255, 255, 255, 0.78);
  font-family: "Minecraft", monospace;
  font-size: 0.78rem;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.category-card__overlay > div {
  max-width: 430px;
  margin-left: auto;
  text-align: right;
}

.category-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.category-card p {
  max-width: 390px;
  margin: 8px 0 0;
  color: #c4cbc8;
  font-size: 0.9rem;
  line-height: 1.55;
}

.category-card__cta,
.feature-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--green-bright);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.content-card-list {
  display: grid;
  min-width: 0;
  min-height: 500px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.content-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 0;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #111613;
  box-shadow: var(--shadow-card);
  color: var(--text);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.content-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 6, 0.48) 0%, rgba(4, 7, 6, 0.16) 42%, transparent 68%),
    linear-gradient(180deg, transparent 44%, rgba(4, 7, 6, 0.18) 68%, rgba(4, 7, 6, 0.62));
  content: "";
  pointer-events: none;
}

.content-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 350ms ease, transform 550ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.content-card:not(.content-card--skin) {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.content-card--skin {
  background: #202221;
}

.content-card--skin::after {
  background: linear-gradient(90deg, rgba(8, 11, 10, 0.99) 0%, rgba(8, 11, 10, 0.9) 43%, rgba(8, 11, 10, 0.1) 78%);
}

.content-card--skin > img {
  right: 0;
  left: auto;
  width: 56%;
  object-fit: contain;
  object-position: center 34%;
}

.content-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(72%, 330px);
  gap: 4px;
  padding: 18px 20px;
}

.content-card:not(.content-card--skin) .content-card__body {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.88);
}

.content-card__type {
  color: var(--green-bright);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-card strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(0.96rem, 1.3vw, 1.16rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.18;
  overflow-wrap: anywhere;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-card__cta {
  margin-top: 3px;
  color: #b6c0bc;
  font-size: 0.7rem;
  font-weight: 800;
}

.content-card:hover {
  border-color: rgba(36, 214, 107, 0.44);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32), 0 0 28px rgba(36, 214, 107, 0.08);
  color: var(--text);
  transform: translateY(-2px);
}

.content-card:hover > img {
  filter: saturate(1.08) brightness(1.04);
  transform: scale(1.035);
}

.content-card--skin:hover > img {
  transform: scale(1.025);
}

.feature-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: clamp(92px, 10vw, 142px);
  background:
    linear-gradient(135deg, rgba(22, 28, 26, 0.96), rgba(9, 12, 11, 0.98)),
    var(--bg-deep);
}

.feature-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.055) 1px, transparent 1.5px);
  background-size: 30px 30px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 22%, black 78%, transparent);
  opacity: 0.38;
}

.feature-section__glow {
  position: absolute;
  z-index: -1;
  top: -40%;
  left: 60%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(36, 214, 107, 0.2), rgba(16, 215, 223, 0.18), rgba(154, 99, 255, 0.22), transparent 70%);
  filter: blur(100px);
}

.section-intro--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: clamp(30px, 7vw, 100px);
  margin-bottom: 52px;
}

.section-intro--split > p:last-child {
  margin: 0 0 5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 330px;
  overflow: hidden;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(40, 44, 42, 0.88), rgba(26, 29, 28, 0.9));
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: var(--line-strong);
  color: var(--text);
  transform: translateY(-5px);
}

.feature-card::after {
  position: absolute;
  right: -70px;
  bottom: -88px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--card-glow, rgba(36, 214, 107, 0.12));
  content: "";
  filter: blur(36px);
}

.feature-card:nth-child(2) { --card-glow: rgba(154, 99, 255, 0.16); }
.feature-card:nth-child(3) { --card-glow: rgba(255, 92, 138, 0.15); }
.feature-card:nth-child(4) { --card-glow: rgba(36, 214, 107, 0.15); }

.feature-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 12px 26px rgba(0, 0, 0, 0.2);
}

.feature-card__icon img {
  width: 24px;
  height: 24px;
}

.feature-card__icon--cyan { background: linear-gradient(135deg, #0caeb9, #0875d1); }
.feature-card__icon--purple { background: linear-gradient(135deg, #9f54ef, #6547d8); }
.feature-card__icon--pink { background: linear-gradient(135deg, #ff5c8a, #bb3fd2); }
.feature-card__icon--green { background: linear-gradient(135deg, #24d66b, #00a88e); }

.feature-card__number {
  position: absolute;
  top: 28px;
  right: 26px;
  color: #8c9691;
  font-family: "Minecraft", monospace;
  font-size: 0.8rem;
}

.feature-card h3 {
  margin: 88px 0 0;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.feature-card p {
  margin: 12px 0 0;
  color: #9da5a1;
  font-size: 0.92rem;
  line-height: 1.65;
}

.feature-card__cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 22px;
}

.store-card:focus-visible,
.category-card:focus-visible,
.content-card:focus-visible,
.feature-card:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.brand-moment {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  padding-block: clamp(92px, 11vw, 150px);
}

.brand-moment__mark {
  position: relative;
}

.brand-moment__mark::before {
  position: absolute;
  z-index: -1;
  inset: 13%;
  border-radius: 50%;
  background: conic-gradient(var(--pink), var(--cyan), var(--green), #effb41, var(--pink));
  content: "";
  filter: blur(42px);
  opacity: 0.28;
}

.brand-moment__mark img {
  width: 220px;
  height: 220px;
  border-radius: 28%;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
}

.brand-moment__copy h2 {
  max-width: 690px;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
}

.brand-moment__facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-moment__facts > li {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.brand-moment__facts strong {
  min-width: 38px;
  background: linear-gradient(130deg, var(--green), var(--cyan));
  background-clip: text;
  color: transparent;
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand-moment__facts span {
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.trust-section {
  padding: clamp(70px, 9vw, 110px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0, rgba(154, 99, 255, 0.11), transparent 30rem),
    linear-gradient(145deg, rgba(31, 35, 33, 0.96), rgba(20, 23, 22, 0.96));
  box-shadow: var(--shadow-lg);
}

.section-intro--trust {
  max-width: 780px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.policy-card {
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(14, 17, 16, 0.56);
  color: var(--text);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.policy-card__content {
  min-width: 0;
}

.policy-card:hover {
  border-color: rgba(36, 214, 107, 0.34);
  background: rgba(24, 29, 27, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.23);
  color: var(--text);
  transform: translateY(-5px);
}

.policy-card--terms:hover { border-color: rgba(154, 99, 255, 0.4); }
.policy-card--deletion:hover { border-color: rgba(255, 98, 88, 0.4); }

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(36, 214, 107, 0.22);
  border-radius: 15px;
  background: rgba(36, 214, 107, 0.1);
}

.policy-card--terms .card-icon {
  border-color: rgba(154, 99, 255, 0.23);
  background: rgba(154, 99, 255, 0.11);
}

.policy-card--deletion .card-icon {
  border-color: rgba(255, 98, 88, 0.24);
  background: rgba(255, 98, 88, 0.1);
}

.card-icon img {
  width: 24px;
  height: 24px;
}

.card-kicker {
  display: block;
  margin-top: 38px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-card--terms .card-kicker { color: #b989ff; }
.policy-card--deletion .card-kicker { color: #ff8d85; }

.policy-card h3 {
  margin: 7px 0 9px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.policy-card p {
  margin: 0;
  color: #929a96;
  font-size: 0.88rem;
  line-height: 1.6;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: #dce2df;
  font-size: 0.82rem;
  font-weight: 850;
}

.regional-disclosures {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 30px;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  padding-top: 38px;
}

.regional-disclosures__heading h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.regional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.regional-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11, 14, 13, 0.42);
  color: var(--text);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.regional-card:hover {
  border-color: rgba(16, 215, 223, 0.35);
  background: rgba(22, 27, 25, 0.88);
  color: var(--text);
}

.regional-card__code {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(16, 215, 223, 0.1);
  color: var(--cyan);
  font-family: "Minecraft", monospace;
  font-size: 0.75rem;
}

.regional-card h4 {
  margin: 1px 0 7px;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.regional-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.language-panel {
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 12, 11, 0.38);
}

.language-panel summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.language-panel summary::-webkit-details-marker {
  display: none;
}

.language-panel summary > span:first-child {
  display: grid;
  gap: 2px;
}

.language-panel summary strong {
  font-size: 0.96rem;
}

.language-panel summary small {
  color: var(--muted);
  font-size: 0.78rem;
}

.summary-action {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.summary-action__close {
  display: none;
}

.language-panel[open] .summary-action__open {
  display: none;
}

.language-panel[open] .summary-action__close {
  display: inline;
}

.locale-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 20px 22px 22px;
  list-style: none;
}

.locale-list a {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.025);
  color: #aeb5b2;
  font-size: 0.78rem;
  font-weight: 720;
  text-decoration: none;
}

.locale-list a:hover {
  border-color: rgba(36, 214, 107, 0.42);
  color: #fff;
}

.independence-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-block: 30px 90px;
  border: 1px solid rgba(255, 163, 15, 0.2);
  border-radius: 18px;
  padding: 20px 22px;
  background: rgba(255, 163, 15, 0.055);
}

.independence-note__icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 163, 15, 0.14);
}

.independence-note__icon img {
  width: 21px;
  height: 21px;
}

.independence-note p {
  margin: 0;
  color: #aeb4b1;
  font-size: 0.86rem;
  line-height: 1.65;
}

.independence-note strong {
  color: #f4f6f5;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 11, 10, 0.62);
}

.footer-inner {
  display: grid;
  width: min(var(--page-width), calc(100% - 40px));
  grid-template-columns: 250px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  margin-inline: auto;
  padding-block: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 11px;
}

.footer-brand > div {
  display: grid;
}

.footer-brand strong {
  font-family: "ADLaM Display", Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-disclaimer {
  max-width: 560px;
  margin: 0;
  color: #89928d;
  font-size: 0.72rem;
  line-height: 1.65;
}

.footer-meta {
  display: grid;
  gap: 4px;
  color: #818884;
  font-size: 0.74rem;
  text-align: right;
}

.footer-meta p {
  margin: 0;
}

.footer-meta a {
  color: #9ca4a0;
}

/* Policy and account-control pages */
.not-found-shell {
  display: grid;
  width: min(880px, calc(100% - 40px));
  min-height: calc(100svh - 250px);
  margin-inline: auto;
  padding-block: clamp(64px, 10vw, 120px);
  place-items: center;
}

.not-found-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(30px, 7vw, 76px);
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(36, 214, 107, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(34, 38, 36, 0.98), rgba(18, 22, 20, 0.98));
  box-shadow: var(--shadow-lg);
}

.not-found-card > img {
  position: absolute;
  top: 30px;
  right: 34px;
  width: clamp(58px, 10vw, 96px);
  height: auto;
  opacity: 0.72;
  transform: rotate(8deg);
}

.not-found-card h1 {
  max-width: 690px;
  margin: 18px 0;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.not-found-card > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
}

.not-found-card .hero-actions {
  margin-top: 30px;
}

.policy-page .page-shell {
  width: min(var(--page-width), calc(100% - 40px));
  margin-inline: auto;
  padding-block: clamp(42px, 7vw, 86px);
}

.document-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 248px;
  align-items: start;
  gap: 24px;
}

.document-wrap > .document {
  grid-column: 1;
  grid-row: 1;
}

.document-wrap > .side-nav {
  grid-column: 2;
  grid-row: 1;
}

.document {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: clamp(26px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(35, 38, 37, 0.97), rgba(26, 29, 28, 0.98)),
    var(--surface);
  box-shadow: var(--shadow-card);
}

.document::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--purple));
  content: "";
}

.document h1 {
  max-width: 880px;
  margin: 0 0 30px;
  font-size: clamp(2.1rem, 5vw, 3.85rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.04;
  text-wrap: balance;
}

.document h2 {
  margin: 2.5em 0 0.68em;
  color: #f6f8f7;
  font-size: clamp(1.3rem, 2vw, 1.68rem);
  letter-spacing: -0.025em;
  line-height: 1.32;
}

.document h3 {
  margin: 1.9em 0 0.55em;
  color: #edf1ef;
  font-size: 1.1rem;
  line-height: 1.4;
}

.document p,
.document li {
  color: #cbd1ce;
}

.document p {
  margin: 0.9em 0;
}

.document ul,
.document ol {
  padding-inline-start: 1.35em;
}

.document li + li {
  margin-top: 0.42em;
}

.document strong {
  color: #f0f4f2;
}

.document a {
  color: #60e99a;
}

.document a:hover {
  color: #a4f8c4;
}

.policy-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 1.4rem 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 11, 10, 0.3);
}

.document table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  color: #d5d9d7;
  font-size: 0.92rem;
}

.document th,
.document td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.document th {
  background: rgba(36, 214, 107, 0.08);
  color: var(--text);
  font-weight: 850;
}

.document tbody tr:last-child td {
  border-bottom: 0;
}

.document .align-center { text-align: center; }
.document .align-right { text-align: right; white-space: nowrap; }

.document code {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.1em 0.38em;
  background: #0b0e0d;
  color: #dcf8e7;
  font-size: 0.9em;
}

.side-nav {
  position: sticky;
  top: 96px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(28, 31, 30, 0.87);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.side-nav::before {
  display: block;
  padding: 6px 10px 9px;
  color: #89928d;
  content: attr(aria-label);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.side-nav a {
  display: block;
  border-radius: 10px;
  padding: 9px 10px;
  color: #9ca49f;
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.4;
  text-decoration: none;
}

.side-nav a[aria-current="page"],
.side-nav a:hover {
  background: rgba(36, 214, 107, 0.1);
  color: #69e99b;
}

.deletion-panel {
  margin: 0 0 38px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(255, 98, 88, 0.34);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(96, 34, 38, 0.2), rgba(41, 26, 28, 0.36));
}

.deletion-panel h2 {
  margin: 0 0 8px;
}

.deletion-panel p,
.deletion-panel li {
  color: #ded4d4;
}

.notice {
  margin: 18px 0;
  border-left: 3px solid var(--red);
  padding: 11px 14px;
  background: rgba(255, 98, 88, 0.07);
}

.auth-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px;
  background: rgba(7, 10, 9, 0.5);
}

.auth-summary[hidden],
.confirmation[hidden],
[hidden] {
  display: none !important;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

button {
  min-height: 44px;
  border: 0;
  border-radius: 11px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--green), #18b75b);
  color: #06130b;
  cursor: pointer;
  font-weight: 850;
}

button.secondary {
  border: 1px solid var(--line);
  background: var(--surface-raised);
  color: var(--text);
}

button.danger {
  background: linear-gradient(135deg, #ff7d75, #f05558);
  color: #260809;
}

button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.5);
  opacity: 0.45;
}

.confirm-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
}

.confirm-label input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--red);
}

.typed-confirmation {
  display: block;
  margin: 12px 0 18px;
}

.typed-confirmation span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.typed-confirmation input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 10px 12px;
  background: #0b0e0d;
  color: var(--text);
}

.status {
  margin: 14px 0 0;
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(42, 163, 255, 0.1);
  color: #dcecff;
}

.status[data-state="error"] {
  background: rgba(255, 98, 88, 0.11);
  color: #ffd8d5;
}

.status[data-state="success"] {
  background: rgba(36, 214, 107, 0.1);
  color: #c8ffdd;
}

.js [data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .home-hero__content {
    width: 55%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 280px;
  }

  .feature-card h3 {
    margin-top: 58px;
  }

  .category-cluster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-cluster .category-card,
  .content-card-list {
    min-height: 460px;
  }

  .brand-moment {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .brand-moment__mark img {
    width: 170px;
    height: 170px;
  }

  .brand-moment__facts {
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-moment__facts > li {
    min-width: 0;
  }

  .footer-inner {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .footer-meta {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    text-align: left;
  }
}

@media (min-width: 841px) {
  .category-cluster--landscape {
    grid-template-columns: minmax(0, 2fr) minmax(330px, 1fr);
    align-items: stretch;
  }

  .category-cluster--landscape .category-card,
  .category-cluster--landscape .content-card-list {
    min-height: 0;
  }

  .category-cluster--landscape .content-card-list {
    grid-template-rows: repeat(3, auto);
    align-content: start;
  }

  .category-cluster--landscape .content-card {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 840px) {
  .primary-nav {
    display: none;
  }

  .home-page .top-nav {
    margin-left: auto;
  }

  .home-hero {
    min-height: 900px;
  }

  .home-hero__art {
    height: clamp(300px, 54vw, 414px);
    object-position: left center;
    transform: none;
    transform-origin: left center;
  }

  .home-hero__veil {
    background:
      linear-gradient(180deg, rgba(3, 5, 13, 0.03) 20%, rgba(3, 5, 13, 0.88) 47%, rgba(3, 5, 13, 0.99) 66%),
      linear-gradient(90deg, transparent, rgba(3, 5, 13, 0.35));
  }

  .home-hero__content {
    width: 100%;
    min-height: 900px;
    justify-content: flex-end;
    padding: 350px 34px 44px;
  }

  .category-cluster {
    grid-template-columns: minmax(0, 1fr);
  }

  .category-cluster--reverse .category-card,
  .category-cluster--reverse .content-card-list {
    order: initial;
  }

  .category-cluster .category-card {
    grid-column: 1;
    min-height: 380px;
  }

  .content-card-list {
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .category-cluster--landscape .content-card-list {
    grid-template-rows: none;
  }

  .content-card {
    min-height: 260px;
  }

  .content-card::after {
    background: linear-gradient(180deg, transparent 38%, rgba(4, 7, 6, 0.3) 70%, rgba(4, 7, 6, 0.66));
  }

  .content-card--skin::after {
    background: linear-gradient(180deg, rgba(8, 11, 10, 0.04) 26%, rgba(8, 11, 10, 0.98) 80%);
  }

  .content-card--skin > img {
    left: 0;
    width: 100%;
    object-position: center 28%;
  }

  .content-card__body {
    width: 100%;
    padding: 18px;
  }

  .category-cluster--landscape .content-card__body {
    padding: 14px;
  }

  .category-card__overlay {
    padding: 22px;
  }

  .category-card__overlay > div {
    text-align: left;
  }

  .category-card__index {
    position: absolute;
    top: 18px;
    left: 18px;
  }

  .section-intro--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-intro--split > p:last-child {
    margin-top: 0;
  }

  .trust-section {
    padding: 52px 30px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-card {
    min-height: 240px;
  }

  .card-kicker {
    margin-top: 26px;
  }

  .regional-disclosures {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .document-wrap {
    display: flex;
    flex-direction: column;
  }

  .side-nav {
    position: static;
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding: 8px;
  }

  .side-nav::before {
    display: none;
  }

  .side-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .content-section,
  .trust-section,
  .feature-section__inner,
  .policy-page .page-shell,
  .footer-inner {
    width: min(100% - 24px, var(--page-width));
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 1.16rem;
  }

  .header-context,
  .header-home-link {
    display: none;
  }

  .policy-page .top-nav,
  .home-page .top-nav {
    margin-left: auto;
  }

  .language-select {
    width: 132px;
    max-width: 132px;
    padding-right: 24px;
    text-overflow: ellipsis;
  }

  .home-hero {
    width: calc(100% - 24px);
    min-height: 880px;
    margin-top: 12px;
    border-radius: 25px;
  }

  .home-hero__content {
    min-height: 880px;
    padding: 300px 22px 34px;
  }

  .home-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .store-card {
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px;
  }

  .store-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .store-card__arrow {
    width: 36px;
    height: 36px;
  }

  .button {
    width: 100%;
  }

  .content-showcase {
    padding-block: 82px;
  }

  .section-intro {
    margin-bottom: 28px;
  }

  .section-intro h2,
  .brand-moment h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .category-cluster .category-card {
    min-height: 340px;
  }

  .content-card-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .content-card {
    min-height: 230px;
  }

  .content-card__body {
    padding: 20px;
  }

  .category-cluster--landscape .content-card__body {
    padding: 20px;
  }

  .content-card strong {
    font-size: 1.12rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 260px;
  }

  .brand-moment {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .brand-moment__mark {
    margin-inline: auto;
  }

  .brand-moment__mark img {
    width: 150px;
    height: 150px;
  }

  .brand-moment .eyebrow {
    justify-content: center;
  }

  .brand-moment__facts {
    grid-column: 1;
  }

  .brand-moment__facts > li {
    align-items: center;
    flex-direction: column;
    gap: 5px;
    padding-inline: 4px;
  }

  .brand-moment__facts strong {
    min-width: 0;
  }

  .trust-section {
    padding: 42px 18px;
    border-radius: 24px;
  }

  .regional-grid {
    grid-template-columns: 1fr;
  }

  .language-panel summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .independence-note {
    margin-bottom: 70px;
    padding: 17px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-meta {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .document {
    border-radius: 20px;
    padding: 24px 20px 32px;
  }

  .document h1 {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .auth-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 410px) {
  .brand-text {
    display: none;
  }

  .home-hero__content {
    padding-top: 270px;
  }

  .hero-tags {
    gap: 6px;
  }

  .category-cluster .category-card {
    min-height: 300px;
  }

  .content-card {
    min-height: 210px;
  }

  .category-card__overlay {
    padding: 18px;
  }

  .category-card p {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body,
  .document {
    background: #fff !important;
    color: #111 !important;
  }

  .site-header,
  .site-footer,
  .side-nav,
  .deletion-panel,
  body::before {
    display: none !important;
  }

  .policy-page .page-shell {
    width: 100%;
    padding: 0;
  }

  .document-wrap {
    display: block;
  }

  .document {
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .document p,
  .document li,
  .document h1,
  .document h2,
  .document h3,
  .document strong,
  .document table {
    color: #111 !important;
  }
}
