:root {
  --blue-950: #021c3a;
  --blue-900: #06366f;
  --blue-800: #064b97;
  --blue-700: #075db8;
  --blue-600: #0872d8;
  --blue-500: #1494ee;
  --blue-100: #e7f4ff;
  --red-700: #c40818;
  --red-600: #e31a2b;
  --red-500: #ff3343;
  --green-600: #00a67a;
  --green-500: #00b67a;
  --ink: #0c1b2f;
  --ink-soft: #42526a;
  --muted: #6e7d91;
  --line: rgba(18, 54, 92, 0.13);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --page: #f5f9ff;
  --shadow-sm: 0 12px 35px rgba(5, 49, 94, 0.10);
  --shadow-md: 0 24px 70px rgba(5, 49, 94, 0.16);
  --shadow-lg: 0 38px 100px rgba(3, 35, 73, 0.24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1220px;
  --header-height: 78px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(20, 148, 238, .12), transparent 28rem),
    radial-gradient(circle at 96% 12%, rgba(227, 26, 43, .08), transparent 24rem),
    var(--page);
  color: var(--ink);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

::selection {
  background: rgba(8, 114, 216, .22);
  color: var(--blue-950);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: .8rem 1rem;
  border-radius: 10px;
  background: #fff;
  color: var(--blue-900);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #9bd9ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

p {
  color: var(--ink-soft);
}

.section-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--red-500));
  box-shadow: 0 0 16px rgba(20, 148, 238, .55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(248, 252, 255, .79);
  box-shadow: 0 10px 35px rgba(4, 44, 88, .08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 116px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 10px 13px;
  border-radius: 12px;
  color: #334761;
  font-size: .93rem;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-600), var(--red-600));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-800);
  background: rgba(255, 255, 255, .66);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.age-chip,
.footer-age {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid rgba(196, 8, 24, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--red-700);
  font-size: .86rem;
  font-weight: 850;
  box-shadow: 0 8px 24px rgba(196, 8, 24, .08);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--blue-900);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -.01em;
  cursor: pointer;
  isolation: isolate;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s ease, background .22s ease;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-link:focus-visible,
.currency-card:focus-visible,
.trust-card:focus-visible,
.back-to-top:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(20, 148, 238, .32);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 93, 184, .28);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(7, 93, 184, .34);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 13px;
  font-size: .9rem;
}

.button-ghost {
  border-color: rgba(7, 93, 184, .22);
  background: rgba(255, 255, 255, .72);
  color: var(--blue-800);
  box-shadow: 0 10px 28px rgba(4, 53, 104, .08);
}

.button-ghost:hover {
  border-color: rgba(7, 93, 184, .42);
  background: #fff;
}

.button-light {
  background: #fff;
  color: var(--blue-900);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}

.shine::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -35%;
  z-index: -1;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  transform: skewX(-22deg);
  animation: button-shine 4.2s ease-in-out infinite;
}

@keyframes button-shine {
  0%, 45% { left: -35%; }
  70%, 100% { left: 125%; }
}

.fluent-panel {
  border: 1px solid rgba(255, 255, 255, .72);
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.62)),
    rgba(255,255,255,.68);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.fluent-card,
.fluent-dark-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fluent-card::before,
.fluent-dark-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(260px circle at var(--mouse-x) var(--mouse-y), rgba(64, 184, 255, .18), transparent 54%);
  transition: opacity .25s ease;
  pointer-events: none;
}

.fluent-card:hover::before,
.fluent-dark-card:hover::before {
  opacity: 1;
}

.hero-section {
  position: relative;
  padding: 22px 0 86px;
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: .65;
  pointer-events: none;
}

.ambient-one {
  top: 6%;
  left: -10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(20,148,238,.26), transparent 68%);
  animation: ambient-float 10s ease-in-out infinite;
}

.ambient-two {
  right: -10%;
  bottom: 2%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(227,26,43,.16), transparent 70%);
  animation: ambient-float 12s ease-in-out infinite reverse;
}

@keyframes ambient-float {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-18px,0) scale(1.06); }
}

.hero-wrap {
  position: relative;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateZ(0);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 38%),
    linear-gradient(90deg, rgba(7,93,184,.04), transparent 34%, rgba(227,26,43,.03));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: auto;
  transition: transform .4s var(--ease);
  will-change: transform;
}

.hero-reflection {
  position: absolute;
  top: -65%;
  left: -22%;
  width: 34%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  transform: rotate(15deg);
  animation: hero-sheen 7.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-sheen {
  0%, 30% { left: -32%; }
  62%,100% { left: 122%; }
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(760px, calc(100% - 52px));
  margin: -52px auto 0;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 28px;
  text-align: center;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500) 46%, var(--red-600) 48%, var(--red-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 680px;
  margin: 0 auto 26px;
  font-size: clamp(.98rem, 1.2vw, 1.06rem);
}

.eyebrow {
  margin-inline: auto;
}

.status-dot,
.mini-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 6px rgba(0, 182, 122, .12);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 5px rgba(0,182,122,.10); }
  50% { box-shadow: 0 0 0 9px rgba(0,182,122,.03); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: #3e526c;
  font-size: .84rem;
  font-weight: 650;
}

.hero-chips svg {
  width: 16px;
  height: 16px;
  color: var(--blue-700);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.currency-section {
  padding-top: 42px;
  overflow: hidden;
}

.section-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.orb-blue {
  top: 9%;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(20,148,238,.18), transparent 70%);
}

.orb-red {
  bottom: 0;
  left: -180px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(227,26,43,.11), transparent 70%);
}

.currency-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.currency-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(9, 76, 145, .12);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(6, 60, 116, .08);
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s ease;
}

.currency-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 114, 216, .3);
  box-shadow: 0 18px 42px rgba(6, 60, 116, .14);
}

.currency-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(5, 50, 98, .16);
}

.currency-copy {
  display: grid;
}

.currency-copy strong {
  font-size: 1rem;
}

.currency-copy small {
  color: var(--muted);
  font-size: .8rem;
}

.card-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(8,114,216,.08);
  color: var(--blue-700);
  font-size: 1.1rem;
  transition: transform .22s ease, background .22s ease;
}

.currency-card:hover .card-arrow {
  transform: translate(2px,-2px);
  background: rgba(8,114,216,.14);
}

.crypto-card {
  border-color: rgba(0,166,122,.2);
}

.crypto-card .card-arrow {
  background: rgba(0,166,122,.10);
  color: var(--green-600);
}

.legal-inline {
  display: flex;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.legal-inline span {
  flex: 0 0 auto;
  color: var(--red-700);
  font-weight: 900;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.phone-halo {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.95), transparent 24%),
    linear-gradient(145deg, rgba(20,148,238,.24), rgba(7,93,184,.06) 50%, rgba(227,26,43,.12));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.8),
    0 45px 100px rgba(6, 68, 133, .17);
  animation: halo-breathe 6s ease-in-out infinite;
}

@keyframes halo-breathe {
  0%,100% { transform: scale(.97); }
  50% { transform: scale(1.03); }
}

.phone-image {
  position: relative;
  z-index: 2;
  width: min(84%, 470px);
  height: auto;
  transform: rotate(18deg);
  transform-origin: center center;
  filter: drop-shadow(0 32px 36px rgba(4, 27, 51, .25));
  animation: phone-float 5.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes phone-float {
  0%,100% { transform: translate3d(0,0,0) rotate(18deg); }
  50% { transform: translate3d(0,-12px,0) rotate(16deg); }
}

.floating-pill {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
  color: var(--blue-900);
  font-size: .84rem;
  font-weight: 760;
  backdrop-filter: blur(16px);
}

.pill-one {
  top: 22%;
  left: 7%;
  animation: pill-float 5s ease-in-out infinite;
}

.pill-two {
  right: 6%;
  bottom: 25%;
  animation: pill-float 5.6s ease-in-out infinite reverse;
}

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

.stats-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 12% 0%, rgba(32,159,255,.42), transparent 32rem),
    radial-gradient(circle at 92% 120%, rgba(227,26,43,.23), transparent 28rem),
    linear-gradient(115deg, #063f86, #052c62 56%, #061f45);
  color: #fff;
}

.stats-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent);
}

.stats-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.stats-heading h2,
.stats-heading p {
  color: #fff;
}

.stats-heading p {
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-item {
  padding: 30px 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
  box-shadow: inset 0 1px rgba(255,255,255,.15), 0 24px 70px rgba(0,0,0,.16);
  text-align: center;
  backdrop-filter: blur(14px);
}

.stat-item strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(2.35rem, 5.3vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.stat-item span {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
}

.stats-note {
  position: relative;
  z-index: 2;
  margin: 24px 0 0;
  color: rgba(255,255,255,.52);
  font-size: .76rem;
  text-align: center;
}

.trust-section {
  background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(245,249,255,.45));
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.trust-card {
  display: block;
  padding: 30px;
  border-radius: 28px;
  color: inherit;
  text-decoration: none;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.trust-card:hover {
  transform: translateY(-6px) rotate(-.25deg);
  box-shadow: 0 32px 90px rgba(5,49,94,.2);
}

.trust-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.trust-star {
  color: var(--green-500);
  font-size: 1.35rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 22px 0 14px;
}

.rating-row > strong {
  font-size: clamp(4.5rem, 9vw, 6.8rem);
  line-height: .9;
  letter-spacing: -.075em;
}

.rating-label {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.star-boxes {
  display: flex;
  gap: 4px;
}

.star-boxes span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  background: var(--green-500);
  color: #fff;
  font-size: 1.05rem;
}

.star-boxes .partial {
  background: linear-gradient(90deg, var(--green-500) 60%, #d8dde3 60%);
}

.review-count {
  margin-bottom: 24px;
  color: var(--muted);
}

.trust-bars {
  display: grid;
  gap: 9px;
  margin-bottom: 25px;
}

.trust-bars div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .75rem;
}

.trust-bars i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #d7dce1;
}

.trust-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green-500);
}

.trust-bars .negative b {
  background: var(--green-500);
}

.trust-link {
  color: var(--blue-700);
  font-weight: 800;
}

.trust-points {
  display: grid;
  gap: 12px;
}

.trust-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 10px 28px rgba(5,49,94,.06);
}

.point-icon,
.category-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(20,148,238,.13), rgba(7,93,184,.06));
  color: var(--blue-700);
}

.point-icon svg,
.category-icon svg {
  width: 24px;
  height: 24px;
}

.trust-point strong,
.trust-point small {
  display: block;
}

.trust-point small {
  margin-top: 3px;
  color: var(--muted);
}

.source-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.platform-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(234,245,255,.82), rgba(255,255,255,.7));
}

.platform-pattern {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: radial-gradient(circle at center, var(--blue-700) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.platform-grid {
  position: relative;
}

.model-stage {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: end center;
}

.model-backdrop {
  position: absolute;
  inset: 15% 10% 7%;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 52% 48% 45% 55% / 42% 51% 49% 58%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.95), transparent 22%),
    linear-gradient(145deg, rgba(20,148,238,.22), rgba(7,93,184,.08) 55%, rgba(227,26,43,.11));
  box-shadow: var(--shadow-lg);
  animation: morph 12s ease-in-out infinite;
}

@keyframes morph {
  0%,100% { border-radius: 52% 48% 45% 55% / 42% 51% 49% 58%; transform: rotate(-1deg); }
  50% { border-radius: 45% 55% 55% 45% / 55% 44% 56% 45%; transform: rotate(1deg); }
}

.model-stage img {
  position: relative;
  z-index: 2;
  width: min(88%, 540px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 28px 30px rgba(4,31,59,.20));
}

.provider-badge {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-sm);
  color: var(--blue-900);
  font-size: .82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.provider-one { top: 22%; left: 5%; animation: pill-float 5s ease-in-out infinite; }
.provider-two { top: 45%; right: 3%; animation: pill-float 6s ease-in-out infinite reverse; }
.provider-three { bottom: 13%; left: 10%; animation: pill-float 5.5s ease-in-out infinite; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 12px 32px rgba(5,49,94,.07);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8,114,216,.24);
  box-shadow: 0 18px 44px rgba(5,49,94,.12);
}

.category-icon {
  margin-bottom: 16px;
}

.category-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
}

.license-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(20,148,238,.34), transparent 30rem),
    radial-gradient(circle at 100% 100%, rgba(227,26,43,.22), transparent 30rem),
    linear-gradient(135deg, #031f42, #042f64 58%, #071c3b);
  color: #fff;
}

.license-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}

.glow-one {
  top: -120px;
  right: 5%;
  width: 360px;
  height: 360px;
  background: rgba(20,148,238,.15);
}

.glow-two {
  bottom: -160px;
  left: 5%;
  width: 320px;
  height: 320px;
  background: rgba(227,26,43,.13);
}

.license-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.license-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 500px);
  min-height: 220px;
  margin: auto;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.045));
  box-shadow: inset 0 1px rgba(255,255,255,.18), 0 34px 90px rgba(0,0,0,.24);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(16px);
  transition: transform .24s var(--ease), border-color .24s ease, box-shadow .24s var(--ease);
}

.license-badge::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.20), transparent 38%, rgba(227,26,43,.20));
  opacity: .7;
}

.license-badge:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.30);
  box-shadow: inset 0 1px rgba(255,255,255,.2), 0 42px 100px rgba(0,0,0,.30);
}

.license-image-shell {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 15px;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
}

.license-image-shell img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(111, 0, 10, .14));
  transition: transform .24s var(--ease);
}

.license-badge:hover .license-image-shell img {
  transform: scale(1.012);
}

.license-logo-note {
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-align: center;
}

.license-copy h2,
.license-copy p {
  color: #fff;
}

.license-copy > p {
  max-width: 770px;
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
}

.license-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.license-fact {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  box-shadow: inset 0 1px rgba(255,255,255,.08);
}

.license-fact small,
.license-fact strong {
  display: block;
}

.license-fact small {
  margin-bottom: 8px;
  color: #9bd9ff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.license-fact strong {
  color: #fff;
  font-size: .92rem;
  line-height: 1.4;
}

.license-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.jurisdiction-details {
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.72);
}

.jurisdiction-details summary {
  padding: 17px 0 10px;
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}

.jurisdiction-details p {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
}

.home-banner-section {
  padding: 80px 0 12px;
}

.home-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.home-banner img {
  width: 100%;
  height: auto;
  transition: transform .5s var(--ease);
}

.home-banner:hover img {
  transform: scale(1.012);
}

.banner-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.banner-cta {
  position: static;
  display: inline-flex;
  margin: 0 auto;
}

.seo-section {
  padding-top: 96px;
}

.seo-heading {
  max-width: 920px;
  margin: 0 auto 44px;
  text-align: center;
}

.seo-heading .section-lead {
  margin-right: auto;
  margin-left: auto;
}

.seo-article {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-article article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 42px rgba(5,49,94,.08);
  backdrop-filter: blur(12px);
}

.seo-article article:first-child {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(231,244,255,.95), rgba(255,255,255,.88));
}

.seo-article h3 {
  color: var(--blue-900);
  font-size: 1.35rem;
}

.seo-article p:last-child {
  margin-bottom: 0;
}

.company-section {
  padding: 20px 0 104px;
}

.company-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 38px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
}

.company-logo {
  display: grid;
  justify-items: start;
  gap: 15px;
}

.company-logo img {
  width: min(210px, 100%);
}

.company-logo span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.company-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.company-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 68px 0 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(20,148,238,.16), transparent 24rem),
    linear-gradient(135deg, #061f42, #03152e);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap: 50px;
  align-items: start;
}

.footer-brand img {
  width: 125px;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,.18));
}

.footer-brand p,
.footer-responsible p {
  margin-bottom: 0;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-responsible {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
}

.footer-age {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  box-shadow: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: .78rem;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 800;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  color: var(--blue-800);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: opacity .22s ease, transform .22s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.noscript {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px;
  border-radius: 12px;
  background: #fff3cd;
  color: #664d03;
  text-align: center;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal[data-reveal="fade-right"] {
  transform: translateX(-34px);
}

.js .reveal[data-reveal="fade-left"] {
  transform: translateX(34px);
}

.js .reveal[data-reveal="zoom-in"] {
  transform: scale(.96);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
}

@media (max-width: 1080px) {
  :root {
    --header-height: 72px;
  }

  .header-shell {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .header-actions {
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 22px;
    background: rgba(248,252,255,.93);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px) scale(.98);
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(22px) saturate(160%);
    transition: opacity .2s ease, transform .2s var(--ease), visibility .2s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    padding: 13px 14px;
  }

  .nav-link::after {
    display: none;
  }

  .split-grid,
  .trust-grid,
  .license-layout {
    grid-template-columns: 1fr;
  }

  .currency-grid {
    gap: 46px;
  }

  .phone-stage {
    min-height: 470px;
  }

  .phone-image {
    width: min(78%, 430px);
  }

  .trust-grid {
    max-width: 820px;
  }

  .trust-card {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .model-stage {
    min-height: 520px;
    order: 2;
  }

  .model-stage img {
    width: min(82%, 500px);
  }

  .platform-copy {
    order: 1;
  }

  .license-badge {
    width: min(100%, 460px);
    min-height: 205px;
  }

  .license-facts {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .footer-responsible {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .site-header {
    background: rgba(248,252,255,.82);
    border-color: var(--line);
    backdrop-filter: blur(18px);
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    width: 96px;
  }

  .header-actions .age-chip {
    display: none;
  }

  .header-actions .button {
    min-height: 38px;
    padding-inline: 13px;
    font-size: .78rem;
  }

  .hero-section {
    padding-top: 14px;
    padding-bottom: 54px;
  }

  .hero-media {
    border-radius: 22px;
  }

  .hero-media img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .hero-copy {
    width: calc(100% - 16px);
    margin-top: -24px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-chips {
    gap: 7px;
  }

  .hero-chips span {
    font-size: .76rem;
  }

  .currency-list,
  .category-grid,
  .seo-article,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 390px;
  }

  .phone-image {
    width: min(82%, 360px);
  }

  .floating-pill {
    font-size: .74rem;
  }

  .pill-one { left: 0; }
  .pill-two { right: 0; }

  .stats-section {
    padding: 76px 0 62px;
  }

  .stat-item {
    padding: 25px 20px;
  }

  .trust-card {
    padding: 22px;
  }

  .rating-row {
    gap: 15px;
  }

  .star-boxes span {
    width: 26px;
    height: 26px;
    font-size: .9rem;
  }

  .model-stage {
    min-height: 420px;
  }

  .model-stage img {
    width: min(80%, 410px);
  }

  .provider-badge {
    font-size: .72rem;
  }

  .license-badge {
    width: min(100%, 390px);
    min-height: 180px;
    padding: 22px;
  }

  .license-image-shell {
    padding: 12px;
  }

  .home-banner-section {
    padding-top: 44px;
  }

  .home-banner {
    border-radius: 20px;
  }

  .home-banner img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .home-banner:hover img {
    transform: scale(1.01);
  }

  .banner-cta-wrap {
    margin-top: 14px;
  }

  .banner-cta {
    min-height: 42px;
    padding-inline: 18px;
    font-size: .82rem;
  }

  .seo-article article:first-child {
    grid-column: auto;
  }

  .company-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer-responsible {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 1.82rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .header-actions .button {
    display: none;
  }

  .currency-card {
    grid-template-columns: 52px 1fr auto;
    min-height: 76px;
  }

  .currency-card img {
    width: 52px;
    height: 52px;
  }

  .phone-stage {
    min-height: 330px;
  }

  .phone-image {
    width: min(80%, 300px);
  }

  .floating-pill {
    padding: 8px 10px;
  }

  .rating-row > strong {
    font-size: 4.2rem;
  }

  .trust-point {
    grid-template-columns: 42px 1fr;
  }

  .point-icon,
  .category-icon {
    width: 42px;
    height: 42px;
  }

  .model-stage {
    min-height: 350px;
  }

  .model-stage img {
    width: min(78%, 350px);
  }

  .provider-one { top: 22%; }
  .provider-two { top: 48%; }
  .provider-three { bottom: 8%; }

  .license-badge {
    width: 100%;
    min-height: 160px;
    padding: 18px;
    border-radius: 24px;
  }

  .license-logo-note {
    font-size: .72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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