:root {
  --ink: #071525;
  --ink-soft: #243b55;
  --paper: #f3f7fc;
  --paper-2: #e4edf7;
  --line: #c2d0e3;
  --accent: #0ea5a0;
  --accent-deep: #0b7c78;
  --accent-soft: #d5faf5;
  --accent-bright: #2dd4bf;
  --gold: #d4a017;
  --warn: #b45309;
  --white: #ffffff;
  --shadow: 0 16px 48px rgba(7, 21, 37, 0.12);
  --shadow-lg: 0 28px 64px rgba(7, 21, 37, 0.18);
  --radius: 18px;
  --max: 1140px;
  --font-display: "Syne", "Trebuchet MS", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 90% 55% at 0% -5%, rgba(45, 212, 191, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(212, 160, 23, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(14, 165, 160, 0.1), transparent 60%),
    linear-gradient(180deg, #e8f1fa 0%, var(--paper) 35%, #e2ebf5 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(243, 247, 252, 0.78);
  border-bottom: 1px solid rgba(194, 208, 227, 0.55);
  box-shadow: 0 8px 32px rgba(7, 21, 37, 0.04);
}

.compliance-bar {
  background: linear-gradient(90deg, #071525 0%, #0b3d3a 55%, #071525 100%);
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(94, 234, 212, 0.25);
  font-size: 0.82rem;
  line-height: 1.45;
}

.compliance-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
}

.compliance-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.compliance-bar a {
  color: #99f6e4;
  font-weight: 600;
}

.compliance-age {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  border-radius: 8px;
  border: 2px solid #fbbf24;
  color: #fbbf24;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
}

.header-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-left: 0.35rem;
  border-radius: 8px;
  border: 2px solid var(--warn);
  color: var(--warn);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  background: #fff7ed;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.3s var(--ease);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo span {
  line-height: 1.15;
}

.logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--ink-soft);
  opacity: 0.75;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.hero-aurora {
  position: absolute;
  inset: -20% -10% auto;
  height: 120%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 55% at 18% 40%, rgba(14, 165, 160, 0.35), transparent 70%),
    radial-gradient(ellipse 40% 50% at 82% 30%, rgba(212, 160, 23, 0.22), transparent 68%),
    radial-gradient(ellipse 35% 40% at 55% 80%, rgba(36, 99, 235, 0.12), transparent 70%);
  filter: blur(8px);
  animation: aurora-shift 12s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: linear-gradient(135deg, rgba(213, 250, 245, 0.95), rgba(254, 243, 199, 0.75));
  border: 1px solid rgba(14, 165, 160, 0.25);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(14, 165, 160, 0.12);
  animation: rise 0.7s var(--ease) both;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(14, 165, 160, 0.5);
  animation: pulse-dot 2.2s ease-out infinite;
}

.hero h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.45rem);
  max-width: 13ch;
  margin-bottom: 1.1rem;
  line-height: 1.08;
  animation: rise 0.75s 0.06s var(--ease) both;
}

.hero h1 .text-gradient {
  background: linear-gradient(115deg, #071525 0%, #0b7c78 42%, #b45309 88%, #071525 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-pan 8s ease infinite;
}

.hero-lead {
  font-size: 1.14rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 1.85rem;
  animation: rise 0.75s 0.12s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 0.75s 0.18s var(--ease) both;
}

.hero-visual {
  position: relative;
  animation: float-in 1s 0.1s var(--ease) both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  border-radius: 32px;
  background: conic-gradient(from 180deg at 50% 50%, rgba(14, 165, 160, 0.35), rgba(212, 160, 23, 0.2), rgba(14, 165, 160, 0.05), rgba(14, 165, 160, 0.35));
  filter: blur(28px);
  opacity: 0.85;
  z-index: 0;
  animation: spin-slow 18s linear infinite;
}

.hero-ring {
  position: absolute;
  inset: -4%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(14, 165, 160, 0.15);
  animation: ring-breathe 4.5s ease-in-out infinite;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, #071525, #0b7c78);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  animation: float-y 5.5s ease-in-out infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.45rem;
  border-radius: 14px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

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

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #14b8a6 0%, #0b7c78 55%, #0a5f5c 100%);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(11, 124, 120, 0.38);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: none;
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 16px 40px rgba(11, 124, 120, 0.48);
}

.btn-primary:hover::after {
  animation: sheen 0.85s var(--ease);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  border-color: rgba(194, 208, 227, 0.9);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  box-shadow: 0 10px 28px rgba(7, 21, 37, 0.08);
}

.btn-sm {
  padding: 0.68rem 1.05rem;
  font-size: 0.9rem;
}

.section {
  padding: 3.75rem 0;
  position: relative;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 4px;
  margin-top: 0.65rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.section-head p {
  color: var(--ink-soft);
  margin: 0.85rem 0 0;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.platform-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 252, 0.96) 100%);
  border: 1px solid rgba(194, 208, 227, 0.85);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-bright), var(--gold), var(--accent));
  background-size: 200% 100%;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.platform-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 165, 160, 0.45);
}

.platform-card:hover::before {
  animation: gradient-pan 2.5s linear infinite;
  opacity: 1;
}

.platform-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.platform-logo {
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  white-space: nowrap;
}

.stars {
  letter-spacing: 1px;
  font-size: 0.95rem;
  background: linear-gradient(90deg, #f59e0b, #d4a017, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(180, 83, 9, 0.15));
}

.platform-card h3 {
  font-size: 1.2rem;
  margin: 0;
}

.platform-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
  flex-grow: 1;
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pay-methods span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.why-item {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, var(--paper-2) 100%);
  border: 1px solid rgba(194, 208, 227, 0.9);
  border-radius: var(--radius);
  padding: 1.45rem 1.25rem;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.why-item::after {
  content: "";
  position: absolute;
  right: -20%;
  top: -30%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 160, 0.15), transparent 70%);
  pointer-events: none;
}

.why-item:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent-soft), #fff);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  font-weight: 800;
  font-family: var(--font-display);
  border: 1px solid rgba(14, 165, 160, 0.2);
  box-shadow: 0 8px 20px rgba(14, 165, 160, 0.12);
}

.why-item h3 {
  font-size: 1.05rem;
}

.why-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(194, 208, 227, 0.9);
  background: var(--white);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.compare-table th {
  background: linear-gradient(135deg, #071525 0%, #0b3d3a 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr {
  transition: background 0.2s;
}

.compare-table tbody tr:hover td {
  background: rgba(213, 250, 245, 0.55);
}

.compare-table .score {
  font-weight: 800;
  color: var(--accent-deep);
  font-family: var(--font-display);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 820px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(194, 208, 227, 0.9);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}

.faq-item:hover {
  transform: translateX(2px);
}

.faq-item[open],
.faq-item.is-open {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(14, 165, 160, 0.12);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--accent-deep);
  font-weight: 400;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after,
.faq-item.is-open summary::after {
  content: "−";
}

.faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.regulators-panel {
  background: #071422;
  border: 1px solid #1e3a5f;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem 1.25rem 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.regulators-panel .section-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0 0 1.15rem;
  text-align: center;
}

.regulators {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.regulator-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #000;
  border: 2px solid #3d5a80;
  border-radius: 12px;
  padding: 1rem 0.75rem 0.85rem;
  min-height: 112px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}

.regulator-link:hover {
  border-color: #5eead4;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.regulator-link img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: none;
}

.regulator-link span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #99f6e4;
  text-align: center;
  line-height: 1.25;
}

.responsible {
  background:
    linear-gradient(125deg, rgba(7, 21, 37, 0.96), rgba(11, 124, 120, 0.9) 55%, rgba(7, 45, 55, 0.95)),
    radial-gradient(circle at 85% 15%, rgba(212, 160, 23, 0.35), transparent 42%);
  color: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: 2.5rem 1.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.responsible::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(45, 212, 191, 0.2), transparent 35%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 14px,
      rgba(255, 255, 255, 0.025) 14px,
      rgba(255, 255, 255, 0.025) 15px
    );
  pointer-events: none;
  animation: aurora-shift 10s ease-in-out infinite alternate;
}

.responsible-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.responsible h2 {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.responsible p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.85rem;
}

.responsible a {
  color: #99f6e4;
  font-weight: 600;
}

.age-badge-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #fbbf24;
  color: #fbbf24;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  background: linear-gradient(115deg, #071525 10%, #0b7c78 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  color: var(--ink-soft);
  max-width: 48ch;
}

.content-block {
  background: linear-gradient(180deg, #fff, #f7fafc);
  border: 1px solid rgba(194, 208, 227, 0.9);
  border-radius: var(--radius);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}

.content-block h2 {
  font-size: 1.35rem;
  margin-top: 1.5rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block ul {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.content-block li {
  margin-bottom: 0.45rem;
}

.anj-verify {
  margin: 1rem 0 0;
  padding: 0.9rem 1.05rem;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.22);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.anj-verify a {
  font-weight: 700;
}

.review-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.review-hero img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.rating-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  margin: 1rem 0 1.5rem;
}

.rating-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.site-footer {
  margin-top: 3.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(14, 165, 160, 0.18), transparent 50%),
    linear-gradient(180deg, #071525 0%, #0a1f33 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.25rem 0 2rem;
}

.site-footer a {
  color: #99f6e4;
}

.footer-risk {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-risk-mandatory {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fde68a;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.footer-grid p,
.footer-legal {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--accent-deep);
}

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

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes aurora-shift {
  from {
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(3%, 2%, 0) scale(1.05);
  }
}

@keyframes gradient-pan {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes sheen {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 165, 160, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(14, 165, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 160, 0);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes ring-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero h1 {
    max-width: none;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    background-attachment: scroll;
  }

  .hero-visual img {
    animation: none;
  }

  .hero-visual::before {
    animation: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(244, 247, 251, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--paper-2);
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .review-hero {
    grid-template-columns: 1fr;
  }

  .card-actions {
    flex-direction: column;
  }

  .card-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-visual img {
    transform: none;
  }
}
