:root {
  --bg: #fff7d1;
  --surface: #ffffff;
  --text: #2a1900;
  --text-muted: #e0a34e;
  --border: #ecd688;

  --primary: #ff8a00;
  --on-primary: #ffffff;
  --accent: #fff27a;
  --on-accent: #06202a;
  --cta: #e53935;
  --on-cta: #ffffff;
  --btn-edge: #e53935;

  --focus: #06e5ff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  --gradient-hero: linear-gradient(
    135deg,
    #fff27a 0%,
    #ffb52e 40%,
    #ff7a00 72%,
    #ff3d00 100%
  );

  --hero-overlay: radial-gradient(
      1100px 520px at 12% 18%,
      rgba(255, 181, 46, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      900px 480px at 88% 12%,
      rgba(6, 195, 255, 0.12) 0%,
      transparent 55%
    );
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  line-height: 1.5;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  margin: 0;
}

main {
  flex: 1 0 auto;
}

@supports not (height: 100dvh) {
  body {
    min-height: 100vh;
  }
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 10px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

section:last-of-type {
  margin-bottom: 30px;
}

/* ========== Header ========== */
.site-header {
  background-image: var(--hero-overlay), var(--gradient-hero);
  background-blend-mode: overlay;

  color: var(--on-primary);
  padding: 20px 0;
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  z-index: 10;

  border-bottom: 2px solid #fff;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--on-primary);
  text-shadow: 0 2px 5px rgba(42, 25, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(255, 242, 122, 0.5);
}

.site-logo:hover {
  transform: scale(1.05);
}

.main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 36px;
}

.main-navigation a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: var(--on-primary);
  padding: 8px 4px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.main-navigation a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

.main-navigation a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-out;
}

.main-navigation a:hover::after {
  width: 100%;
}

.main-navigation a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
  border-radius: 4px;
}
/* ========== Buttons ========== */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HERO */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 84px) 0;
  background: var(--gradient-hero);
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding-top: 40px;
}
@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}
.hero-eyebrow .age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 800;
}
.hero-eyebrow .dot {
  opacity: 0.5;
}

.hero-title {
  font-size: clamp(28px, 4.6vw, 48px);
  line-height: 1.05;
  margin: 4px 0 10px;
  color: var(--text);
}
.hero-subtitle {
  font-size: clamp(16px, 2.1vw, 18px);
  color: var(--text-muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero-actions .btn {
  min-width: 180px;
}

.hero-bullets {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.hero-bullets li {
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.85));
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.hero-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 2px var(--focus), 0 0 0 10px rgba(6, 229, 255, 0.14),
    0 18px 50px rgba(0, 0, 0, 0.18);

  padding: 0;
}

.hero-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}

.hero-glow {
  position: absolute;
  inset: 10% 8%;
  border-radius: 18px;
  background: radial-gradient(
      60% 60% at 30% 30%,
      rgba(255, 181, 46, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      70% 70% at 70% 65%,
      rgba(6, 195, 255, 0.26) 0%,
      transparent 65%
    ),
    linear-gradient(135deg, rgba(255, 186, 74, 0.45), rgba(255, 122, 0, 0.22));
  filter: blur(2px);
}

.btn {
  --r: 12px;
  border: 0;
  border-radius: var(--r);
  padding: 12px 18px;
  color: var(--btn-text, #fff);
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--btn-glow, 0 8px 26px rgba(255, 122, 0, 0.35));
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover {
  filter: brightness(1.05);
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn--primary {
  background: linear-gradient(135deg, #ffb84a, #ff8a00 55%, #ff5a00);
  color: var(--on-primary, #fff);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #ffc15f, #ff971c 55%, #ff6a1a);
}
.btn--accent {
  background: linear-gradient(135deg, #f43f5e, #ef4444);
  color: #fff;
  box-shadow: 0 8px 26px rgba(6, 195, 255, 0.28);
}
.btn--accent:hover {
  background: linear-gradient(135deg, #f43f5e, #ef4444);
}

/* ===== Demo / Game Preview ===== */
.demo {
  padding: clamp(22px, 6vw, 48px) 0;
  background: radial-gradient(
      900px 520px at 0% 15%,
      rgba(34, 211, 238, 0.08),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 100% 25%,
      rgba(124, 58, 237, 0.1),
      transparent 60%
    );
}

.demo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .demo-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 20px;
  }
}

.demo-shot {
  margin: 0;
}
.demo-frame {
  position: relative;
  padding: 2px;
  border-radius: 16px;
  background: linear-gradient(90deg, #22d3ee, #a78bfa);
  box-shadow: var(--shadow);
}
.demo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  background: var(--surface);
}
.demo-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #0b1020;
  background: linear-gradient(135deg, #22d3ee, #a5b4fc);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35);
}
.demo-caption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.demo-title {
  margin: 0 0 6px 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(20px, 3.4vw, 28px);
  line-height: 1.2;
}
.demo-text {
  margin: 0;
  color: var(--text-muted);
  max-width: 62ch;
}
.demo-text strong {
  color: #fff;
  font-weight: 800;
}
.demo-text em {
  font-style: normal;
  color: color-mix(in srgb, #fff 86%, transparent);
}

.demo-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about {
  position: relative;
  padding: clamp(40px, 5vw, 84px) 0 clamp(28px, 4vw, 48px);
  background: radial-gradient(
      800px 380px at 8% 0%,
      rgba(255, 181, 46, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      720px 320px at 100% 14%,
      rgba(6, 195, 255, 0.09) 0%,
      transparent 55%
    );
}
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}
@media (max-width: 980px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

.about__lead {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
  position: relative;
}
.about__ribbon {
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--btn-edge);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.about__title {
  margin: 8px 0 10px;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.15;
  color: var(--text);
}
.about__title em {
  font-style: normal;
  color: var(--primary);
}
.about__text {
  color: var(--text-muted);
  max-width: 70ch;
  font-size: clamp(15px, 2.1vw, 18px);
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.9));
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.about__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.about__cta .btn {
  min-width: 180px;
}

.about__trust {
  position: sticky;
  top: 18px;
  align-self: start;
}
@media (max-width: 980px) {
  .about__trust {
    position: static;
  }
}

.trust__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(16px, 2.4vw, 22px);
  box-shadow: var(--shadow);
}
.trust__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 3vw, 22px);
  color: var(--text);
}
.trust__list {
  margin: 0 0 12px;
  padding-left: 0;
  list-style: none;
  color: var(--text);
}
.trust__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0;
}
.tick {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  flex: 0 0 18px;
  background: var(--btn-edge);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}
.tick::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      45deg,
      transparent 46%,
      #000 46% 54%,
      transparent 54%
    ),
    linear-gradient(-45deg, transparent 46%, #000 46% 54%, transparent 54%);
  transform: scale(0.55) rotate(0.125turn);
  opacity: 0.7;
}
.trust__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust__links a {
  font-weight: 700;
  text-decoration: none;
  color: var(--primary);
}
.trust__links a:hover {
  filter: brightness(1.1);
}

.trust__tags {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.88));
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 800;
  font-size: 12px;
}

.about__guarantee {
  margin-top: clamp(24px, 4vw, 40px);
  border-top: 1px dashed var(--border);
  background: linear-gradient(
    90deg,
    rgba(255, 181, 46, 0.12),
    rgba(6, 195, 255, 0.1)
  );
}
.guarantee__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: var(--text);
}
.shield {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--btn-edge);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.guarantee__inner p {
  margin: 0;
  color: var(--text-muted);
}
.guarantee__inner strong {
  color: var(--text);
}

/* ===== Duo sections (2x2 items) ===== */
.duo {
  position: relative;
  padding: clamp(36px, 6vw, 84px) 0;
  background: radial-gradient(
      900px 420px at 6% 0%,
      rgba(255, 181, 46, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 360px at 100% 16%,
      rgba(6, 195, 255, 0.08) 0%,
      transparent 55%
    );
}
.duo--policy {
  background: radial-gradient(
      900px 420px at 10% 0%,
      rgba(6, 195, 255, 0.09) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 360px at 96% 18%,
      rgba(255, 181, 46, 0.1) 0%,
      transparent 55%
    );
}
.duo__headline {
  margin: 0 0 18px;
  font-size: clamp(22px, 4vw, 34px);
  color: var(--text);
}

.duo__item {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
  margin: clamp(14px, 2.6vw, 24px) 0;
}
.duo__item--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}
.duo__item--reverse .duo__media {
  order: 2;
}
.duo__item--reverse .duo__content {
  order: 1;
}

@media (max-width: 980px) {
  .duo__item,
  .duo__item--reverse {
    grid-template-columns: 1fr;
  }
  .duo__item--reverse .duo__media,
  .duo__item--reverse .duo__content {
    order: initial;
  }
}

.duo__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.15)
  );
  box-shadow: 0 0 0 2px var(--focus), 0 0 0 10px rgba(6, 229, 255, 0.12),
    var(--shadow);
  aspect-ratio: 4/3;
}
.duo__media picture,
.duo__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.duo__content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(16px, 2.6vw, 24px);
  box-shadow: var(--shadow);
  color: var(--text);
}
.duo__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 3.4vw, 26px);
}
.duo__text {
  color: var(--text-muted);
  margin: 0 0 10px;
  font-size: clamp(15px, 2.1vw, 18px);
}
.duo__bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text);
}
.duo__bullets li {
  margin: 6px 0;
}

.site-footer {
  background-color: var(--text);
  color: var(--text-muted);
  padding: 48px 0 0;

  border-top: 4px solid var(--primary);
  margin-top: auto;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 32px;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-about .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-about .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--on-primary);
  transition: transform 0.2s ease;
}
.footer-about .brand-link:hover {
  transform: scale(1.03);
}

.age-badge {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-weight: 900;
  background: var(--cta);
  color: var(--on-cta);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

.footer-disclaimer {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--on-primary);
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-out;
}

.footer-links a:hover::after {
  width: 100%;
}

.support-logos {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.support-logos a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  background: var(--surface);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-logos a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(6, 229, 255, 0.25);
}

.support-logos img {
  background: none;
  padding: 0;

  max-width: 85%;
  max-height: 85%;

  width: auto;
  height: auto;

  border-radius: 0;
}

.footer-sub {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  padding: 24px 0;
  text-align: center;
}

.footer-sub p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
  }
}

/* GAME PAGE */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.game-wrap {
  padding: clamp(18px, 5vw, 32px) 0;
}
.game-disclaimer {
  margin-bottom: 12px;
}

.game-frame {
  margin-top: 8px;
}
.frame-edge {
  padding: 2px;
  border-radius: 18px;
  background: linear-gradient(90deg, #22d3ee, #a78bfa);
  box-shadow: var(--shadow);
}
.frame-inner {
  position: relative;
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.game-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.frame-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.2px;
  background: repeating-linear-gradient(
    45deg,
    rgba(148, 163, 184, 0.08) 0 16px,
    rgba(148, 163, 184, 0.12) 16px 32px
  );
}

/* ===== How-to ===== */

.how-to-play {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background: var(--primary);
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%; /* Круглая форма */

  background: var(--btn-bg);
  box-shadow: var(--btn-glow);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: #ff7a00; /* Белый цвет иконки */
}

.step-card h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

.step-card p {
  font-size: 0.95rem; /* ~15px */
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== About page ===== */
.about-sec {
  padding: clamp(24px, 6vw, 56px) 0;
}

.about-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 22px;
  }
  .about-grid--rev {
    grid-template-columns: 1fr 1.05fr;
  }
}

.about-title {
  margin: 0 0 8px 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(22px, 3.6vw, 32px);
  line-height: 1.15;
}
.about-lead {
  margin: 0 0 10px 0;
  color: var(--text-muted);
  max-width: 68ch;
}
.about-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}
.about-list li {
  margin: 6px 0;
}

.about-media {
  margin: 0;
}
.about-frame {
  padding: 2px;
  border-radius: 16px;
  background: linear-gradient(90deg, #22d3ee, #a78bfa);
  box-shadow: var(--shadow);
}
.about-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  background: var(--surface);
}
.about-cap {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .about-grid--rev {
    direction: rtl;
  }
  .about-grid--rev > * {
    direction: ltr;
  }
}

/* ===== Policy base ===== */
.policy {
  padding: clamp(22px, 5vw, 48px) 0;
}
.policy-head {
  margin-bottom: clamp(12px, 3vw, 20px);
}
.policy-head h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(22px, 3.6vw, 32px);
  line-height: 1.15;
}
.policy-meta {
  margin: 6px 0 0 0;
  color: var(--text-muted);
}

/* TOC */
.policy-toc {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  margin-bottom: clamp(14px, 3.6vw, 22px);
}
.policy-toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.policy-toc a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-toc a:hover {
  color: var(--text);
}

/* Body */
.policy-body {
  display: grid;
  gap: clamp(12px, 3vw, 18px);
}
.policy-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  padding: clamp(12px, 2.6vw, 16px);
  box-shadow: var(--shadow);
}
.policy-item h2 {
  margin: 0 0 6px 0;
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 800;
}
.policy-item p {
  margin: 0;
  color: var(--text-muted);
}
.policy-item p + p,
.policy-item ul,
.policy-item ol {
  margin-top: 8px;
}
.policy-item ul,
.policy-item ol {
  color: var(--text-muted);
  padding-left: 18px;
}
.policy-item li {
  margin: 6px 0;
}

:target {
  scroll-margin-top: 80px;
}
.policy-item:target {
  outline-offset: 2px;
}

.policy-item code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95em;
  background: rgba(148, 163, 184, 0.15);
  padding: 1px 6px;
  border-radius: 6px;
}
.policy-item a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 420px) {
  .policy-toc {
    padding: 10px 12px;
  }
  .policy-item {
    padding: 12px;
  }
}
