 @import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap");
 
 :root {
   color-scheme: light;
   --bg: #f4f7fb;
   --bg-deep: #e8eef8;
   --ink: #0e1b2b;
   --muted: #4c5f75;
   --primary: #1f4bd8;
   --primary-dark: #1537a3;
   --accent: #13b0a6;
   --card: #ffffff;
   --line: #dbe3ee;
   --warning: #b91c1c;
   --success: #0f766e;
   --shadow: 0 14px 30px rgba(8, 20, 40, 0.12);
   --radius: 16px;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background-color: var(--bg);
   background-image:
     linear-gradient(180deg, rgba(244, 247, 251, 0.95) 0%, rgba(232, 238, 248, 0.98) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3CradialGradient id='g1' cx='18%25' cy='18%25' r='58%25'%3E%3Cstop offset='0%25' stop-color='%231f4bd8' stop-opacity='0.35'/%3E%3Cstop offset='100%25' stop-color='%231f4bd8' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='g2' cx='82%25' cy='28%25' r='55%25'%3E%3Cstop offset='0%25' stop-color='%2313b0a6' stop-opacity='0.28'/%3E%3Cstop offset='100%25' stop-color='%2313b0a6' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='1200' height='800' fill='%230f172a' opacity='0.05'/%3E%3Crect width='1200' height='800' fill='url(%23g1)'/%3E%3Crect width='1200' height='800' fill='url(%23g2)'/%3E%3Ccircle cx='190' cy='610' r='70' fill='none' stroke='%2313b0a6' stroke-opacity='0.22' stroke-width='8'/%3E%3Ccircle cx='190' cy='610' r='36' fill='none' stroke='%231f4bd8' stroke-opacity='0.24' stroke-width='6'/%3E%3Crect x='880' y='150' width='120' height='170' rx='16' fill='%231f4bd8' opacity='0.12'/%3E%3Crect x='920' y='190' width='120' height='170' rx='16' fill='%2313b0a6' opacity='0.12'/%3E%3Ccircle cx='980' cy='590' r='90' fill='none' stroke='%231f4bd8' stroke-opacity='0.16' stroke-width='6'/%3E%3Cpath d='M980 500 L980 680 M900 590 L1060 590 M920 530 L1040 650 M920 650 L1040 530' stroke='%2313b0a6' stroke-opacity='0.18' stroke-width='3'/%3E%3Cpath d='M140 430c120-80 260-80 420 0 160 80 300 80 420 0' fill='none' stroke='%231f4bd8' stroke-width='4' stroke-opacity='0.12'/%3E%3C/svg%3E");
   background-size: cover;
   background-attachment: fixed;
 }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background: repeating-linear-gradient(
    135deg,
    rgba(220, 20, 60, 0.35) 0 10px,
    rgba(30, 64, 175, 0.35) 10px 22px,
    transparent 22px 46px
  );
}
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
 }
 
 .container {
   width: min(1140px, 92vw);
   margin: 0 auto;
 }
 
 header {
   background: rgba(255, 255, 255, 0.92);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 50;
 }
 
 .topbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0.45rem 0;
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .badge-18 {
   background: #0f172a;
   color: #fff;
   padding: 0.2rem 0.55rem;
   border-radius: 999px;
   font-weight: 700;
   font-size: 0.75rem;
  animation: pulse18 2.8s ease-in-out infinite;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0.8rem 0 1.1rem;
 }
 
 .logo {
   font-weight: 800;
   font-size: 1.25rem;
   letter-spacing: 0.02em;
 }
 
 .logo span {
   color: var(--primary);
  animation: accentGlow 5s ease-in-out infinite;
 }
 
 .nav-links {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding: 0.35rem 0.6rem;
   border-radius: 8px;
   color: var(--muted);
 }
 
 .nav-links a:hover,
 .nav-links a.active {
   background: var(--bg-deep);
   color: var(--ink);
 }
 
 .hero {
   padding: 4.5rem 0 3rem;
 }
 
 .hero-grid {
   display: grid;
   gap: 2.5rem;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   align-items: center;
 }
 
 .hero-card {
   background: var(--card);
   border-radius: var(--radius);
   padding: 1.6rem;
   box-shadow: var(--shadow);
   border: 1px solid #eef2f7;
 }
 
 .hero h1 {
   font-size: clamp(2rem, 4vw, 3.3rem);
   margin: 0 0 1rem;
   line-height: 1.1;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
   margin-bottom: 1.5rem;
 }
 
 .cta {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.75rem 1.3rem;
   border-radius: 999px;
   background: var(--primary);
   color: #fff;
   font-weight: 700;
   box-shadow: 0 12px 22px rgba(31, 75, 216, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
 }

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(31, 75, 216, 0.3);
}
 
 .cta.secondary {
   background: #e3ecff;
   color: var(--primary-dark);
   box-shadow: none;
 }
 
 .section {
   padding: 3rem 0;
 }
 
 .section h2 {
   font-size: clamp(1.6rem, 3vw, 2.3rem);
   margin-bottom: 0.8rem;
 }
 
 .section p {
   color: var(--muted);
 }
 
 .pill-row {
   display: flex;
   gap: 0.6rem;
   flex-wrap: wrap;
   margin-top: 1rem;
 }
 
 .pill {
   background: #eef2ff;
   color: var(--primary-dark);
   padding: 0.3rem 0.7rem;
   border-radius: 999px;
   font-size: 0.82rem;
   font-weight: 600;
 }
 
 .grid {
   display: grid;
   gap: 1.4rem;
 }
 
 .grid.cards {
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
 }
 
 .card {
   background: var(--card);
   border-radius: var(--radius);
   padding: 1.5rem;
   border: 1px solid var(--line);
   box-shadow: 0 12px 24px rgba(12, 22, 40, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
 }

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(12, 22, 40, 0.12);
}
 
 .card .logo-badge {
   width: 48px;
   height: 48px;
   border-radius: 14px;
   background: var(--bg-deep);
   display: grid;
   place-items: center;
   font-weight: 800;
   color: var(--primary);
   margin-bottom: 1rem;
 }

.card .logo-badge img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
 
 .card h3 {
   margin: 0 0 0.6rem;
 }
 
.tier-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.35rem 0.75rem 0.35rem 0.6rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}

.tier-ribbon::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent currentColor;
  opacity: 0.45;
}

.tier-ribbon small {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.85;
}

.tier--elite {
  background: linear-gradient(135deg, #1f4bd8, #13b0a6);
  color: #ffffff;
}

.tier--strong {
  background: linear-gradient(135deg, #13b0a6, #1f4bd8);
  color: #ffffff;
}

.tier--basic {
  background: linear-gradient(135deg, #64748b, #1e293b);
  color: #ffffff;
}

 .card ul {
   padding-left: 1.1rem;
   margin: 0.6rem 0 1rem;
   color: var(--muted);
 }
 
 .card .meta {
   font-size: 0.86rem;
   color: var(--muted);
 }
 
 .card .warning {
   margin-top: 0.8rem;
   font-size: 0.85rem;
   color: var(--warning);
 }
 
 .comparison {
   width: 100%;
   border-collapse: collapse;
   background: var(--card);
   border-radius: var(--radius);
   overflow: hidden;
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
 }
 
 .comparison th,
 .comparison td {
   padding: 0.9rem 0.8rem;
   border-bottom: 1px solid var(--line);
   text-align: left;
   font-size: 0.95rem;
 }
 
 .comparison th {
   background: #f0f5ff;
 }
 
 .comparison td small {
   color: var(--muted);
 }
 
 .info-grid {
   display: grid;
   gap: 1.2rem;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 }
 
 .info-tile {
   background: #ffffff;
   border-radius: 14px;
   padding: 1.1rem 1.2rem;
   border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
 }

.info-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(12, 22, 40, 0.12);
}
 
 .info-tile h4 {
   margin: 0 0 0.4rem;
 }
 
 .faq {
   display: grid;
   gap: 1rem;
 }
 
 .faq-item {
   background: var(--card);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 1rem 1.2rem;
 }
 
 .regulators {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
   gap: 1rem;
   margin-top: 1.5rem;
 }
 
 .reg-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
   padding: 0.9rem 1rem;
   background: #ffffff;
   border: 1px dashed var(--line);
   border-radius: 12px;
   font-weight: 700;
   color: var(--primary-dark);
  transition: transform 180ms ease, box-shadow 180ms ease;
 }

.reg-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(12, 22, 40, 0.12);
}

.reg-logo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
 
 footer {
   padding: 2.5rem 0 3.5rem;
   border-top: 1px solid var(--line);
   background: rgba(255, 255, 255, 0.92);
 }
 
 .footer-grid {
   display: grid;
   gap: 1.5rem;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 }
 
 .footer-links a {
   display: block;
   margin: 0.35rem 0;
   color: var(--muted);
 }
 
 .note {
   font-size: 0.88rem;
   color: var(--muted);
 }
 
 .disclosure {
   background: #eff6ff;
   border: 1px solid #dbeafe;
   border-radius: 12px;
   padding: 1rem 1.2rem;
   color: #1e3a8a;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1.2rem;
   right: 1.2rem;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 1rem 1.2rem;
   box-shadow: var(--shadow);
   max-width: 340px;
   z-index: 100;
   display: none;
 }
 
 .cookie-banner.visible {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   gap: 0.6rem;
   margin-top: 0.8rem;
 }
 
 .cookie-actions button {
   border: none;
   border-radius: 999px;
   padding: 0.55rem 0.9rem;
   font-weight: 600;
   cursor: pointer;
 }
 
 .cookie-actions .accept {
   background: var(--primary);
   color: #fff;
 }
 
 .cookie-actions .decline {
   background: #f1f5f9;
   color: var(--ink);
 }
 
 .age-gate {
   position: fixed;
   inset: 0;
   background: rgba(15, 23, 42, 0.92);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 200;
   padding: 1.5rem;
 }
 
 .age-gate.visible {
   display: flex;
 }
 
 .age-gate-card {
   background: #ffffff;
   padding: 2rem;
   border-radius: 20px;
   max-width: 520px;
   text-align: center;
   box-shadow: var(--shadow);
 }
 
 .age-gate-card h3 {
   margin-top: 0;
 }
 
 .age-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.8rem;
   justify-content: center;
   margin-top: 1.2rem;
 }
 
 .age-actions button,
 .age-actions a {
   border: none;
   border-radius: 999px;
   padding: 0.65rem 1.1rem;
   font-weight: 600;
   cursor: pointer;
 }
 
 .age-actions .confirm {
   background: var(--success);
   color: #fff;
 }
 
 .age-actions .leave {
   background: #fee2e2;
   color: var(--warning);
 }
 
 .page-hero {
   padding: 3rem 0 2rem;
 }
 
 .page-hero h1 {
   margin-bottom: 0.7rem;
 }
 
 .list {
   padding-left: 1.1rem;
   color: var(--muted);
 }
 
 @media (max-width: 720px) {
   .nav {
     flex-direction: column;
     align-items: flex-start;
     gap: 0.8rem;
   }
 
   .cookie-banner {
     left: 1rem;
     right: 1rem;
     max-width: none;
   }
 }

@keyframes accentGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(31, 75, 216, 0.2);
  }
  50% {
    text-shadow: 0 0 18px rgba(19, 176, 166, 0.45);
  }
}

@keyframes pulse18 {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(31, 75, 216, 0);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 14px rgba(31, 75, 216, 0.25);
  }
}

.bg {
  background-image: url("assets/backgrounds/bg.png");
  background-size: cover;
  background-position: center;
}
