/* Custom: 1.css */
@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&family=Montserrat:wght@700&family=Spartan:wght@600&family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: block;
  src: url(":r:icomoon.woff2") format("woff2");
}
header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  margin-bottom: var(--section-gap);
}

body {
 font-family: var(--font-family-main) !important;
 font-weight: var(--font-weight-body) !important;
 font-size: var(--font-size-base) !important;
  background: var(--background);
  color: var(--dark);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}
ul, ol {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.content-container {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-container {
    padding-left: var(--page-gap-reduced);
    padding-right: var(--page-gap-reduced);
  }
    section > div > div,
  section > div > div > div {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 20px var(--page-gap-reduced);
  }



  ul, ol {
    padding-left: 16px;
  }
}

.breadcrumbs-section {
  width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
}

.breadcrumbs-list .breadcrumbs-list-item {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}

.breadcrumbs-list .breadcrumbs-list-item:last-child {
  color: var(--primary);
}

.breadcrumbs-list .breadcrumbs-list-item a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list .breadcrumbs-list-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-list .breadcrumbs-list-item a::after {
  content: "";
  margin: 0 10px 0 10px;
  border: solid rgba(0, 0, 0, 0.25);
  border-width: 0 2px 2px 0;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  padding: 5px;
  transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.layout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--section-gap);
  margin: var(--page-gap) auto;
  max-width: 1200px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.sidebar-column {
  position: relative;
}
@media (max-width: 768px) {
 .layout-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    grid-row: 1; 
  }

  .main-column {
    grid-row: 2;
  }
}

/* FAQ блок */
details {
  width: 100%;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  transition: var(--transition);
  font-family: var(--font-family-main);
}

details[open] {
  background: var(--accent);
}

details summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  color: var(--light);
  list-style: none;
  outline: none;
  transition: var(--transition);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  background: var(--primary-hover);
}

details[open] summary {
  background: var(--accent-hover);
}

details div {
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body);
  color: var(--light);
  background: var(--accent-transparent);
  line-height: 1.6;
}

/* Color scheme: color8 */
:root {
    --primary: #0077be;
    --primary-hover: #1491d5;
    --accent: #00a9e0;
    --accent-hover: #14b3e4;
    --accent-secondary: #28bde8;
    --accent-transparent: rgba(0, 169, 224, 0.3);
    --background: #e0f7fa;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;

  color: var(--light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* Header */

.u_8b5c3d {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: var(--header);
  box-shadow: var(--shadow);
}

.u_7cb69b {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px var(--page-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.u_a68ae8 {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.u_1b4e61 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Buttons */

.u_b8ceda,
.u_7c6c30,
.u_d160f1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  min-width: 0;
}

.u_f62c49 {
  padding: 13px 26px;
  font-size: 15px;
}

.u_b8ceda {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: var(--light);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
}

.u_b8ceda::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.u_b8ceda:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
  background: linear-gradient(120deg, var(--primary-hover), var(--accent));
}

.u_b8ceda:hover::after {
  opacity: 1;
}

.u_7c6c30 {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.u_7c6c30:hover {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: var(--primary-hover);
  color: var(--primary-hover);
}

.u_d160f1 {
  background-color: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--light);
  backdrop-filter: blur(16px);
}

.u_d160f1:hover {
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.28);
}

/* Hero layout */

.u_cc6aab {
  min-height: 100vh;
  background-color: #000000;
  padding-top: 64px;
}

.u_966752 {
  position: relative;
  min-height: calc(100vh - 64px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px var(--page-gap) 32px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.u_edf6ae {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.u_3a883c {
  position: absolute;
  inset: 0;
  width: 120%;
  height: 120%;
  transform: translate3d(-10%, -8%, 0);
}

.u_134e21 {
  position: absolute;
  inset: -80px -140px 0 35%;
  opacity: 0.45;
}

.u_b9fa44 {
  position: relative;
  width: 100%;
  height: 100%;
}

.u_b9fa44 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.2) saturate(1.1);
  transform-origin: center;
  transform: scale(1.12) translate3d(0, 0, 0);
}

.u_c870d7 {
  position: absolute;
  inset: 12% 10%;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 60%), radial-gradient(circle at 80% 100%, rgba(255, 0, 80, 0.28), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.75;
  pointer-events: none;
}

/* Soft SVG shapes */

.u_226313 {
  position: absolute;
  width: 300px;
  height: 440px;
  filter: blur(4px);
}

.u_2ee261 {
  left: -40px;
  bottom: -40px;
}

.u_98a665 {
  right: -60px;
  top: -80px;
}

.u_f71ee4 {
  animation: floatShape 14s ease-in-out infinite alternate;
}

@keyframes floatShape {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }
  to {
    transform: translate3d(0, -18px, 0) scale(1.08);
    opacity: 0.95;
  }
}

/* Light orbits */

.u_5d0a14 {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.75;
  mix-blend-mode: screen;
}

.u_1920c7 {
  width: 340px;
  height: 340px;
  right: 10%;
  top: 8%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 0, 120, 0.35), transparent 60%);
  animation: orbitPulse 11s ease-in-out infinite alternate;
}

.u_ce1a7e {
  width: 260px;
  height: 260px;
  left: 5%;
  bottom: -40px;
  background: radial-gradient(circle at 50% 0%, rgba(120, 100, 255, 0.35), transparent 60%);
  animation: orbitPulse 9s ease-in-out infinite alternate-reverse;
}

@keyframes orbitPulse {
  from {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0.6;
  }
  to {
    transform: translate3d(10px, -18px, 0) scale(1.1);
    opacity: 1;
  }
}

/* Hero content */

.u_89f63c {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
}

.u_d8c308 {
  flex: 2 1 360px;
  min-width: 0;
  max-width: 620px;
}

.u_27d5a7 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.u_8528dc {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--light);
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.8);
}

.u_584958 {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  max-width: 540px;
}

.u_b1be30 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.u_12e040 {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), transparent 60%), rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.u_78c55f {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.u_c629cc {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.u_bb478d {
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
}

.u_fbe53a {
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.55), transparent);
}

/* Side interactive panel */

.u_7610b5 {
  flex: 1.2 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.u_44681e {
  position: relative;
  padding: 16px 16px 14px;
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.07), transparent 60%), linear-gradient(145deg, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.u_44681e::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 0%, rgba(255, 0, 90, 0.12), transparent 55%), radial-gradient(circle at 80% 100%, rgba(80, 110, 255, 0.14), transparent 60%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_44681e > * {
  position: relative;
  z-index: 1;
}

.u_31b4ea {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.u_d9110f {
  position: relative;
  width: 40px;
  height: 40px;
}

.u_c68a60 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 12px rgba(255, 0, 100, 0.6);
  animation: avatarPulse 2.2s ease-out infinite;
}

.u_7df63b {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0.9));
}

@keyframes avatarPulse {
  0% {
    transform: scale(0.98);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1.09);
    opacity: 0.1;
  }
}

.u_ccb107 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.u_24854c,
.u_e7e1b3,
.u_02e622 {
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12));
  overflow: hidden;
}

.u_24854c {
  height: 11px;
  width: 72px;
}

.u_e7e1b3 {
  height: 10px;
  width: 96px;
}

.u_d51362 {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.u_02e622 {
  height: 9px;
  width: 100%;
}

.u_ed01ea {
  width: 60%;
}

.u_652f5f {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #7cffb1, #0aff57);
  box-shadow: 0 0 8px rgba(0, 255, 128, 0.8);
}

/* Loading ring */

.u_7fd7fc {
  display: flex;
  align-items: center;
  gap: 12px;
}

.u_21094f {
  width: 32px;
  height: 32px;
}

.u_21094f svg {
  width: 100%;
  height: 100%;
}

.u_9a5627 {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 3;
}

.u_69f648 {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 80;
  transform-origin: center;
  transform: rotate(-90deg);
  animation: loaderSpin 1.6s ease-in-out infinite;
}

@keyframes loaderSpin {
  0% {
    stroke-dashoffset: 120;
    transform: rotate(-90deg);
  }
  50% {
    stroke-dashoffset: 60;
    transform: rotate(20deg);
  }
  100% {
    stroke-dashoffset: 120;
    transform: rotate(270deg);
  }
}

.u_1e0517 {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.u_7a4c4c {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4d9a;
  box-shadow: 0 0 8px rgba(255, 77, 154, 0.9);
  animation: pulseDot 1.2s ease-in-out infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(0.7);
    opacity: 0.3;
  }
}

/* Matches stream */

.u_ee4c6f {
  padding: 12px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(18, 18, 18, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.u_3570ed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.u_c87616 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.u_2a71a9 {
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.u_838b9f {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3355;
  box-shadow: 0 0 10px rgba(255, 51, 85, 0.9);
  animation: liveBlink 1s ease-in-out infinite;
}

@keyframes liveBlink {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.u_712ee7 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.u_5768d2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.u_a8023f {
  position: relative;
  width: 30px;
  height: 20px;
  flex-shrink: 0;
}

.u_10910e {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.u_d2c446 {
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #ff8fa5, #ff4d9a);
}

.u_a22d9c {
  right: 0;
  top: 0;
  background: linear-gradient(135deg, #7aa8ff, #586bff);
}

.u_39d7a5 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.u_83bd93 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.u_80c125 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.54);
}

/* Shimmer effect */

.u_7320d5 {
  position: relative;
  overflow: hidden;
}

.u_7320d5::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
  opacity: 0.7;
  animation: shimmerMove 1.6s infinite;
}

@keyframes shimmerMove {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(110%);
  }
}

/* Fade-in + parallax */

.u_31d0e2 {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: fadeUp 0.9s ease-out forwards;
}

.u_27d5a7.u_31d0e2 {
  animation-delay: 0.08s;
}

.u_8528dc.u_31d0e2 {
  animation-delay: 0.18s;
}

.u_584958.u_31d0e2 {
  animation-delay: 0.3s;
}

.u_b1be30.u_31d0e2 {
  animation-delay: 0.42s;
}

.u_12e040.u_31d0e2 {
  animation-delay: 0.54s;
}

.u_7610b5.u_31d0e2 {
  animation-delay: 0.48s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Parallax layers */

.u_5ec04a {
  will-change: transform;
}

/* Responsive */

@media (max-width: 1024px) {
  .u_966752 {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .u_89f63c {
    gap: 24px;
  }

  .u_134e21 {
    inset: -60px -120px 0 30%;
  }

  .u_7610b5 {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .u_7cb69b {
    padding-inline: var(--page-gap-reduced);
  }

  .u_1b4e61 {
    gap: 8px;
  }

  .u_7c6c30 {
    padding-inline: 14px;
  }

  .u_cc6aab {
    padding-top: 60px;
  }

  .u_966752 {
    padding: 22px var(--page-gap-reduced) 20px;
    align-items: flex-start;
  }

  .u_89f63c {
    flex-direction: column;
  }

  .u_d8c308 {
    max-width: 100%;
  }

  .u_7610b5 {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    gap: 12px;
  }

  .u_44681e {
    flex: 1.2 1 0;
  }

  .u_ee4c6f {
    flex: 1 1 0;
  }

  .u_134e21 {
    inset: 10% -80px -40% -40px;
    opacity: 0.4;
  }

  .u_2ee261 {
    left: -80px;
    bottom: -60px;
  }

  .u_98a665 {
    right: -80px;
    top: -100px;
  }

  .u_8528dc {
    font-size: clamp(26px, 7vw, 34px);
  }

  .u_b1be30 {
    flex-direction: row;
    align-items: stretch;
  }

  .u_f62c49 {
    flex: 1 1 auto;
    justify-content: center;
  }

  .u_12e040 {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 540px) {
  .u_7cb69b {
    padding-block: 10px;
    gap: 10px;
  }

  .u_1b4e61 {
    flex-wrap: nowrap;
  }

  .u_7c6c30 {
    display: none;
  }

  .u_cc6aab {
    padding-top: 58px;
  }

  .u_966752 {
    padding-inline: 14px;
  }

  .u_d8c308 {
    text-align: left;
  }

  .u_b1be30 {
    flex-direction: column;
    align-items: stretch;
  }

  .u_f62c49 {
    width: 100%;
  }

  .u_12e040 {
    flex-direction: row;
    border-radius: 18px;
    padding: 9px 12px;
  }

  .u_7610b5 {
    flex-direction: column;
  }

  .u_ee4c6f {
    order: -1;
  }

  .u_712ee7 {
    gap: 6px;
  }
}

/* LINKS */
.u_df2b43 {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--page-gap);
  box-sizing: border-box;
}

.u_d6af50 {
  box-sizing: border-box;
  position: relative;
  padding: calc(var(--section-gap) * 0.75);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 10%, transparent),
    0 22px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.u_d6af50::before,
.u_d6af50::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--accent) 40%, transparent) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, color-mix(in srgb, var(--primary) 40%, transparent) 0, transparent 55%);
  opacity: 0.16;
  pointer-events: none;
  mix-blend-mode: screen;
}

.u_d6af50::after {
  inset: -60%;
  filter: blur(14px);
  opacity: 0.22;
}

.u_d5a618 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1.6rem;
  z-index: 1;
}

.u_d38d51 {
  margin: 0;
  font-size: clamp(1.6rem, 2.1vw, 2.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
}

.u_7782fe {
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 400;
  color: color-mix(in srgb, var(--light) 70%, var(--primary) 30%);
}

.u_cc595e {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1;
}

.u_cc595e li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u_cc595e a {
  --tag-bg: color-mix(in srgb, var(--primary) 70%, transparent);
  --tag-border: color-mix(in srgb, var(--accent) 55%, transparent);
  --tag-shadow: 0 14px 26px rgba(0, 0, 0, 0.38);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: calc(var(--radius) * 1.1);
  text-decoration: none;
  background:
    radial-gradient(circle at 0 0, color-mix(in srgb, var(--accent) 40%, transparent) 0, transparent 55%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 80%, transparent), color-mix(in srgb, var(--dark) 65%, transparent));
  color: var(--light);
  border: 1px solid var(--tag-border);
  box-shadow: var(--tag-shadow);
  overflow: hidden;
  transform-origin: center;
  transform: translate3d(0, 0, 0);
  transition:
    transform 180ms var(--transition),
    box-shadow 200ms var(--transition),
    border-color 180ms var(--transition),
    background 200ms var(--transition),
    color 200ms var(--transition);
}

.u_cc595e a::before {
  content: "";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, var(--light) 0, transparent 55%),
    radial-gradient(circle at 80% 80%, color-mix(in srgb, var(--accent) 80%, transparent) 0, transparent 55%);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--light) 40%, transparent),
    0 0 18px color-mix(in srgb, var(--accent) 45%, transparent);
  opacity: 0.9;
}

.u_cc595e a span {
  position: relative;
  z-index: 1;
}

.u_cc595e a::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.22) 0, transparent 55%),
    radial-gradient(circle at 120% 120%, rgba(255, 255, 255, 0.12) 0, transparent 55%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 180ms var(--transition);
}

.u_cc595e a:hover,
.u_cc595e a:focus-visible {
  transform: translate3d(0, -1px, 0) scale(1.02);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.48),
    0 0 24px color-mix(in srgb, var(--accent) 40%, transparent);
  border-color: color-mix(in srgb, var(--accent) 80%, var(--light) 20%);
  outline: none;
}

.u_cc595e a:hover::after,
.u_cc595e a:focus-visible::after {
  opacity: 1;
}

.u_cc595e a:active {
  transform: translate3d(0, 1px, 0) scale(0.99);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.52);
}

.u_cc595e a:focus-visible {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--light) 70%, transparent),
    0 0 0 4px color-mix(in srgb, var(--accent) 55%, transparent),
    0 16px 32px rgba(0, 0, 0, 0.45);
}

.u_cc595e a span.links-block-cupidwave91-text {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--light);
  word-break: break-word;
}

.u_cc595e a span.links-block-cupidwave91-arrow {
  margin-left: auto;
  font-size: 0.9rem;
  opacity: 0.8;
  color: color-mix(in srgb, var(--light) 80%, var(--accent) 20%);
  transform: translateX(0);
  transition:
    transform 180ms var(--transition),
    opacity 180ms var(--transition),
    color 180ms var(--transition);
}

.u_cc595e a:hover span.links-block-cupidwave91-arrow,
.u_cc595e a:focus-visible span.links-block-cupidwave91-arrow {
  transform: translateX(2px);
  opacity: 1;
  color: var(--light);
}

/* Generic styling for injected links to wrap text inside the visual shell */
.u_cc595e li > a {
  position: relative;
}

.u_cc595e li > a::before {
  content: "";
}

/* Enhance injected plain anchors by wrapping text nodes visually */
.u_cc595e li > a {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile & tablet */
@media (max-width: 768px) {
  .u_df2b43 {
    padding-inline: calc(var(--page-gap) * 0.7);
  }

  .u_d6af50 {
    padding: calc(var(--section-gap) * 0.65);
  }

  .u_cc595e {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .u_cc595e li {
    flex: 1 1 100%;
  }

  .u_cc595e a {
    width: 100%;
    display: block;
    padding: 11px 18px;
  }

  .u_cc595e a::before {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
  }

  .u_cc595e a span.links-block-cupidwave91-arrow {
    display: inline-block;
  }
}

/* Large screens fine-tuning */
@media (min-width: 1024px) {
  .u_cc595e {
    gap: 16px 22px;
  }

  .u_cc595e a {
    padding: 11px 20px;
  }
}

/* FOOTER */
.u_62536f {
  background: var(--header);
  padding: calc(var(--section-gap) * 0.8) var(--page-gap);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18), 0 0 0 1px var(--shadow);
  border-radius: var(--radius) var(--radius) 0 0;
  max-width: 100%;
  overflow-x: hidden;
}

.u_82bc13 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--page-gap);
  flex-wrap: wrap;
}

.u_69dae6 {
  min-width: 220px;
  max-width: 420px;
}

.u_0ca588 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.u_ac59e8 {
  margin-top: calc(var(--page-gap) * 0.3);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--accent-secondary);
  opacity: 0.92;
}

.u_7a615c {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: calc(var(--page-gap) * 0.9);
  flex-wrap: wrap;
}

.u_018b79 {
  position: relative;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent-secondary);
  letter-spacing: 0.02em;
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
  opacity: 0.9;
}

.u_018b79::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  border-radius: 999px;
  transition: width var(--transition);
}

.u_018b79:hover {
  color: var(--primary-hover);
  opacity: 1;
  transform: translateY(-1px);
}

.u_018b79:hover::after {
  width: 100%;
}

.u_214113 {
  margin-top: calc(var(--page-gap) * 0.8);
  padding-top: calc(var(--page-gap) * 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--page-gap);
  flex-wrap: wrap;
}

.u_7591eb {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  opacity: 0.8;
}

.u_3b6571 {
  color: var(--primary);
}

/* Tablet */
@media (max-width: 1024px) {
  .u_62536f {
    padding: var(--section-gap) calc(var(--page-gap) * 0.9);
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .u_82bc13 {
    align-items: flex-start;
  }

  .u_7a615c {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .u_62536f {
    padding: calc(var(--section-gap) * 0.8) var(--page-gap);
    border-radius: 0;
  }

  .u_82bc13 {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--page-gap) * 0.6);
  }

  .u_69dae6 {
    width: 100%;
  }

  .u_7a615c {
    width: 100%;
    justify-content: flex-start;
    gap: calc(var(--page-gap) * 0.4);
  }

  .u_018b79 {
    font-size: 0.95rem;
  }

  .u_214113 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .u_7591eb {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

/* BODY */
.u_569f24 {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.u_c654e1 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.u_227b1b {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.u_227b1b img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.u_97f563,

.u_a96ada {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.u_97f563 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.u_a96ada {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.u_bc9a41 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.u_f6ee79 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.u_f6ee79 h2,

.u_f6ee79 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.u_f6ee79 h2 {

  font-size: 2rem;

}

.u_f6ee79 h3 {

  font-size: 1.3rem;

}



.u_f6ee79 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.u_f6ee79 ul,

.u_f6ee79 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.u_f6ee79 ul {

  list-style-type: disc;

}

.u_f6ee79 ol {

  list-style-type: decimal;

}

.u_f6ee79 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.u_f6ee79 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.u_f6ee79 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.u_f6ee79 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.u_f6ee79 thead {

  background: var(--accent-transparent);

}

.u_f6ee79 th,

.u_f6ee79 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.u_f6ee79 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.u_f6ee79 td {

  color: var(--dark);

}

.u_f6ee79 b, .u_f6ee79 strong {

  font-weight: 700;

  color: var(--primary);

}

.u_f6ee79 i {

  font-style: italic;

  color: var(--accent);

}



.u_68a23d.u_c8ada9 {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.u_68a23d.u_c8ada9:hover,

.u_68a23d.u_c8ada9:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .u_c654e1 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .u_227b1b,

  .u_bc9a41 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .u_c654e1 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .u_227b1b,

  .u_bc9a41 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .u_bc9a41 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .u_68a23d.u_c8ada9 {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .u_f6ee79 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .u_bc9a41 {

    padding: var(--page-gap-reduced);

  }

  .u_68a23d.u_c8ada9 {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.u_569f24, .u_c654e1 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* BODY1 */
.u_840f49 {

  position: relative;

  width: 100vw;

  max-width: 100%;

  min-height: 100vh;

  overflow-x: hidden;

  box-sizing: border-box;

  background: var(--background);

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

}



.u_80043f {

  position: absolute;

  inset: 0;

  z-index: 1;

  width: 100%;

  height: 100%;

  pointer-events: none;

  user-select: none;

}

.u_80043f img, 

.u_80043f > * {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  max-width: 100vw;

}





.u_a4b299 {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 70vh;

  width: 100%;

  padding: 0;

  z-index: 2;

}



.u_f273c7 {

  backdrop-filter: blur(0.5px);

  background: rgba(255, 255, 255, 0.56);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  max-width: 1200px;

  width: 100%;

  margin: 10vh auto 0 auto;

  padding: 48px 40px 80px 40px;

  transition: var(--transition);

  display: flex;

  flex-direction: column;

  align-items: center;

  animation: heroFadeInSlide 1.2s cubic-bezier(0.39, 0, 0.17, 0.99) both;

  box-sizing: border-box;

  min-width: 0;

}



@keyframes heroFadeInSlide {

  from {

    opacity: 0;

    transform: translateY(48px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.u_38fa04 {

  width: 100%;

  color: var(--dark);

  display: flex;

  flex-direction: column;

  gap: 24px;

}

.u_38fa04 .u_5721dc {

  width: 100%;

}

.u_38fa04 h2 {

  font-family: 'Inter', 'Montserrat', 'Segoe UI', Arial, sans-serif;

  font-size: 3rem;

  font-weight: 800;

  line-height: 1.1;

  color: var(--primary);

  letter-spacing: -1.5px;

  margin-bottom: 24px;

}

.u_38fa04 h3 {

  font-size: 1.5rem;

  font-weight: 600;

  color: var(--accent);

  margin-top: 28px;

  margin-bottom: 8px;

  letter-spacing: -0.3px;

}



.u_38fa04 p,

.u_38fa04 ul,

.u_38fa04 ol,

.u_38fa04 table {

  font-size: 1.17rem;

  color: var(--dark-default);

  margin: 0 0 16px 0;

}



.u_38fa04 ul, .u_38fa04 ol {

  padding-left: 24px;

  margin-bottom: 18px;

}

.u_38fa04 ul li,

.u_38fa04 ol li {

  margin-bottom: 6px;

  list-style-position: inside;

}



.u_38fa04 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

  font-weight: 600;

}

.u_38fa04 a:hover {

  color: var(--primary-hover);

}



.u_38fa04 table {

  width: 100%;

  border-collapse: collapse;

  background: var(--background);

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.u_38fa04 th,

.u_38fa04 td {

  border: 1px solid var(--accent-secondary);

  padding: 8px 16px;

  text-align: left;

}

.u_38fa04 thead {

  background: var(--accent-transparent);

  color: var(--dark);

}



.u_38fa04 b,

.u_38fa04 strong {

  color: var(--accent);

  font-weight: 700;

}



.u_38fa04 i,

.u_38fa04 em {

  color: var(--primary-hover);

}





.u_230ce5 {

  position: fixed;

  left: 0;

  right: 0;

  bottom: 32px;

  margin: 0 auto;

  display: flex;

  justify-content: center;

  z-index: 10;

  width: max-content;

  padding: 0;

  pointer-events: all;

  background: none;

}

.u_230ce5:focus {

  outline: none;

}

.u_230ce5 > * {

  pointer-events: none;

}

.u_230ce5 {

  background: var(--primary);

  color: var(--light);

  font-family: inherit;

  font-size: 1.28rem;

  font-weight: 700;

  padding: 18px 44px;

  border: none;

  border-radius: var(--radius);

  box-shadow: 0 4px 36px -6px var(--primary-hover), var(--shadow);

  cursor: pointer;

  transition: var(--transition), box-shadow 0.19s;

  box-sizing: border-box;

  min-width: 0;

  text-decoration: none;

  text-align: center;

  letter-spacing: 0.08em;

  will-change: transform, box-shadow;

}

.u_230ce5:hover, .u_230ce5:focus-visible {

  background: var(--primary-hover);

  transform: translateY(-3px) scale(1.025);

  box-shadow: 0 8px 48px -8px var(--primary-hover), var(--shadow);

}

@media (min-width: 1025px) {

  .u_230ce5 {

    display: none !important;

  }

}



@media (max-width: 1024px) {

  .u_f273c7 {

    padding: 32px 18px 70px 18px;

    max-width: 92vw;

    margin: 6vh auto 0 auto;

  }

  .u_38fa04 h2 {

    font-size: 2.1rem;

    margin-bottom: 18px;

  }

  .u_230ce5 {

    padding: 16px 28px;

    font-size: 1rem;

    bottom: 16px;

  }

}

@media (max-width: 768px) {

  .u_840f49 {

    min-height: 90vh;

  }

  .u_f273c7 {

    padding: 24px 6vw 58px 6vw;

    margin: 4vh auto 0 auto;

    max-width: 98vw;

  }

  .u_38fa04 h2 {

    font-size: 1.48rem;

    margin-bottom: 14px;

  }

  .u_230ce5 {

    bottom: 8px;

    padding: 14px 15vw;

    font-size: 0.96rem;

    width: 90vw;

    left: 50%;

    transform: translateX(-50%);

    border-radius: calc(var(--radius) + 6px);

    box-shadow: 0 4px 24px -8px var(--primary-hover), var(--shadow);

  }

}

@media (max-width: 480px) {

  .u_f273c7 {

    padding: 18px 3vw 48px 3vw;

  }

  .u_230ce5 {

    font-size: 0.95rem;

    padding: 13px 8vw;

    width: 94vw;

    left: 50%;

    transform: translateX(-50%);

  }

}





body, .u_840f49 {

  overflow-x: hidden;

}

/* BODY2 */
.u_20ccfe {

  background: var(--light);

  border: 1px solid var(--accent-transparent, rgba(171,161,251,0.15));

  box-shadow: var(--shadow), 0 6px 40px 0 rgba(10,0,93,0.06);

  border-radius: var(--radius);

  padding: var(--section-gap);

  max-width: 720px;

  margin: var(--section-gap) auto;

  box-sizing: border-box;

  overflow-x: hidden;

  transition: box-shadow 0.25s cubic-bezier(0.39,0,0.17,0.99), border 0.22s var(--transition);

  backdrop-filter: blur(0.5px);

  display: flex;

  flex-direction: column;

  gap: 0;

}



.u_f30946 {

  width: 100%;

  max-width: 100%;

  display: flex;

  flex-direction: column;

  box-sizing: border-box;

}



.u_8b72df {

  color: var(--dark-default);

  font-size: 1.08rem;

  line-height: 1.65;

  letter-spacing: 0;

  font-weight: 400;

  max-width: 100%;

  padding: 0;

  margin: 0;

  box-sizing: border-box;

}



.u_8b72df h2,

.u_8b72df h3 {

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 1.1em;

  margin-top: 0;

  line-height: 1.18;

  letter-spacing: -0.012em;

}



.u_8b72df h2 {

  font-size: 2rem;

}



.u_8b72df h3 {

  font-size: 1.25rem;

  margin-top: 1.5em;

}



.u_8b72df p {

  margin: 1.45em 0 1.55em 0;

}



.u_8b72df ul,

.u_8b72df ol {

  margin: 1em 0 1.5em 1.6em;

  padding: 0;

  list-style-position: outside;

  color: var(--dark-muted);

  font-size: 1em;

  line-height: 1.4;

}



.u_8b72df ul {

  list-style-type: disc;

}



.u_8b72df ol {

  list-style-type: decimal;

}



.u_8b72df li {

  margin: 0.18em 0 0.18em 0;

  padding: 0;

}



.u_8b72df a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.22s var(--transition);

  word-break: break-all;

}

.u_8b72df a:hover,

.u_8b72df a:focus {

  color: var(--accent-hover);

  text-decoration: none;

}



.u_8b72df table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0 1.5em 0;

  overflow-x: auto;

  display: block;

}



.u_8b72df thead {

  background: var(--accent-transparent);

}



.u_8b72df th,

.u_8b72df td {

  border: 1px solid var(--accent-transparent, rgba(171,161,251,0.18));

  padding: 0.6em 1em;

  text-align: left;

  color: var(--dark-default);

  font-size: 0.98em;

}



.u_8b72df th {

  font-weight: 600;

  color: var(--accent);

}



.u_8b72df b, .u_8b72df strong {

  font-weight: 600;

  color: var(--primary);

}

.u_8b72df i, .u_8b72df em {

  font-style: italic;

}



@media (max-width: 1024px) {

  .u_20ccfe {

    padding: calc(var(--section-gap) * 0.7);

    max-width: 96vw;

  }

  .u_8b72df h2 {

    font-size: 1.5rem;

  }

}



@media (max-width: 768px) {

  .u_20ccfe {

    padding: calc(var(--section-gap) * 0.55);

    margin: var(--page-gap-reduced) auto;

    max-width: 99vw;

    border-radius: calc(var(--radius) * 1.5);

    box-shadow: 0 2px 16px rgba(10,0,93,0.10);

  }

  .u_8b72df {

    font-size: 0.97rem;

  }

  .u_8b72df h2 {

    font-size: 1.13rem;

    margin-bottom: .85em;

  }

}





.u_20ccfe, .u_8b72df, .u_f30946 {

  min-width: 0;

  max-width: 100vw;

}