:root {
  --bg: #f3f7fd;
  --bg-elev: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #eef4ff;
  --line: rgba(20, 48, 86, 0.10);
  --line-strong: rgba(20, 48, 86, 0.18);
  --text: #10233c;
  --muted: #4d6278;
  --dim: #6b7f96;
  --teal: #1a56e8;
  --teal-dim: rgba(26, 86, 232, 0.12);
  --teal-ink: #ffffff;
  --gold: #b8862b;
  --white: #ffffff;
  --danger: #c24747;
  --shadow: 0 18px 40px rgba(24, 52, 92, 0.10);
  --radius: 18px;
  --max: 1180px;
  --nav-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 14px;
}
h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 520;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
h1 { font-size: clamp(40px, 6.4vw, 76px); }
h2 { font-size: clamp(30px, 4.2vw, 48px); }
h3 { font-size: 24px; }
.lede { font-size: 18px; color: var(--muted); max-width: 64ch; }
.muted { color: var(--muted); }
.dim { color: var(--dim); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 40;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; width: min(var(--max), calc(100% - 40px)); margin-inline: auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 28px; width: auto; display: block; }
.brand-mark {
  font-family: "Manrope", sans-serif;
  font-weight: 800; letter-spacing: 0.18em;
  font-size: 13px;
}
.brand-sub { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
.foot-logo { height: 36px; width: auto; margin-bottom: 10px; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: 0; cursor: pointer;
  border-radius: 999px; padding: 12px 18px;
  font-weight: 700; font-size: 14px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-teal,
.nav-links a.btn-teal,
.nav-links a.btn-teal:hover {
  background: #1a56e8;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(26, 86, 232, 0.28);
}
.btn-teal:hover,
.nav-links a.btn-teal:hover { background: #2b6bff; color: #ffffff !important; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-card); }
.menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  width: 42px; height: 42px; border-radius: 10px; color: var(--text);
}

/* HERO */
.hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% -10% auto auto;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(43,125,255,.20), transparent 62%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: start;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}
.hero-fact {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}
.hero-fact b { display: block; font-size: 13px; font-weight: 800; }
.hero-fact span { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.4; margin-top: 3px; }
.hero-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-card h3 { margin-bottom: 16px; font-size: 20px; }
.stack-item {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.stack-item:first-of-type { border-top: 0; padding-top: 0; }
.stack-item strong { display: block; font-size: 15px; }
.stack-item span { color: var(--muted); font-size: 14px; }

/* SECTIONS */
section { padding: 84px 0; }
.section-head { margin-bottom: 36px; max-width: 760px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card:hover { border-color: var(--line-strong); }
.card h3 { margin: 8px 0 8px; }
.num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* MODULES */
.module {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px 16px;
  align-items: start;
}
.module p { color: var(--muted); font-size: 14.5px; }
.markers { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.marker { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-live { background: var(--teal); }
.dot-partner { background: transparent; border: 2px solid var(--teal); }
.dot-road { background: transparent; border: 2px solid var(--muted); }

details.mod {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 18px;
}
details.mod + details.mod { margin-top: 10px; }
details.mod summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-weight: 700;
}
details.mod summary::-webkit-details-marker { display: none; }
details.mod summary::after { content: "+"; color: var(--teal); font-size: 22px; font-weight: 400; }
details.mod[open] summary::after { content: "–"; }
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  padding-bottom: 18px;
}
.feat { font-size: 14.5px; color: var(--muted); }
.feat b { color: var(--text); font-weight: 700; display: block; }
.status {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); font-weight: 800; margin-right: 6px;
}
.status.partner { color: var(--gold); }
.status.road { color: var(--dim); }

/* COMPARE */
.compare-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.compare-cols .num { margin-bottom: 8px; }
.diff {
  margin-top: 10px;
  padding-left: 14px;
  border-left: 3px solid var(--teal);
  color: var(--muted);
}

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { min-height: 180px; }
.step .num { font-size: 20px; }

/* PRICING */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 22px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.price-card h3 { margin: 6px 0 8px; font-size: 22px; }
.price-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border-radius: 999px;
  padding: 5px 10px;
  width: fit-content;
}
.price-amt {
  margin-top: 16px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.price-amt span {
  font-size: 14px;
  font-weight: 600;
  color: var(--dim);
  margin-left: 4px;
}
.price-month {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}
.price-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.price-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14.5px;
}
.price-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.price-card.featured {
  background: linear-gradient(180deg, #eef4ff, #ffffff);
  border: 2px solid var(--teal);
  box-shadow: 0 18px 40px rgba(26, 86, 232, 0.16);
  transform: translateY(-4px);
}
.price-card.addon {
  background: #f8fafc;
}
.price-table, .price-cards { display: none; }
.note-list { margin-top: 22px; color: var(--muted); font-size: 14.5px; }
.note-list li { margin: 8px 0 8px 18px; }

.included {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.included div {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.included .h { color: var(--dim); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
form { display: grid; gap: 12px; }
label { font-size: 13px; color: var(--muted); }
input, select, textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--teal); }
textarea { min-height: 120px; resize: vertical; }

footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 14px;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.banner {
  background: linear-gradient(180deg, #eaf1fb, #f3f7fd);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.section-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 8px;
}
.section-art {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #e8f0fb;
}
.section-art img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.art-wide { margin: 8px 0 28px; }
.art-wide img { width: 100%; max-height: 280px; object-fit: cover; min-height: 180px; }


.int-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.logo-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.logo-wrap img,
.logo-track img {
  width: auto;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-radius: 12px;
}
.logo-wrap img {
  height: 72px;
  max-width: 240px;
  padding: 14px 18px;
}
.logo-marquee {
  overflow: hidden;
  margin: 8px 0 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #e7eef8;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 22px 0;
  animation: logo-scroll 48s linear infinite;
}
.logo-track img {
  height: 80px;
  max-width: 260px;
  padding: 16px 22px;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

@media (max-width: 900px) {
  .hero-facts { grid-template-columns: 1fr; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .contact-grid, .steps, .compare-row, .section-split, .int-grid, .price-grid, .compare-cols {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #ffffff; padding: 18px 22px 24px;
    border-bottom: 1px solid var(--line);
  }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .feat-grid { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1.6fr repeat(4, 70px); }
}

/* Visual layer */
body {
  background:
    radial-gradient(900px 480px at 82% -8%, rgba(26,86,232,.12), transparent 58%),
    radial-gradient(700px 400px at 8% 18%, rgba(26,86,232,.06), transparent 60%),
    var(--bg);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(26,86,232,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
header, main, footer { position: relative; z-index: 1; }

.ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--teal-dim);
  color: #1a56e8;
  border: 1px solid rgba(43,125,255,.22);
  flex: 0 0 auto;
}
.ico svg { width: 20px; height: 20px; }

.card {
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(43,125,255,.38);
  background: var(--bg-card-hover);
}

.hero-visual { display: grid; gap: 14px; }
.hero-art {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #e8f0fb;
}
.hero-art img { width: 100%; height: auto; display: block; }

.stack-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.module {
  grid-template-columns: 42px 56px 1fr;
  align-items: center;
}
.module .num { grid-column: 2; }
.module div { grid-column: 3; }
.module .ico { grid-column: 1; grid-row: 1 / span 2; }


.section-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 8px;
}
.section-art {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #e8f0fb;
}
.section-art img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.art-wide { margin: 8px 0 28px; }
.art-wide img { width: 100%; max-height: 280px; object-fit: cover; min-height: 180px; }


.int-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.logo-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.logo-wrap img,
.logo-track img {
  width: auto;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-radius: 12px;
}
.logo-wrap img {
  height: 72px;
  max-width: 240px;
  padding: 14px 18px;
}
.logo-marquee {
  overflow: hidden;
  margin: 8px 0 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #e7eef8;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 22px 0;
  animation: logo-scroll 48s linear infinite;
}
.logo-track img {
  height: 80px;
  max-width: 260px;
  padding: 16px 22px;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

@media (max-width: 900px) {
  .module { grid-template-columns: 42px 1fr; }
  .module .num { grid-column: 2; }
  .module div { grid-column: 2; }
}

.logos-kyc img {
  height: 110px;
  max-width: 280px;
  padding: 16px 22px;
  min-width: 160px;
}

.logos-kyc img[alt="NameScan"],
.logo-track img[src*="namescan"] {
  height: 120px;
  min-width: 240px;
  max-width: 340px;
  padding: 18px 24px;
}

.logo-wrap img[alt="Kraken"],
.logo-track img[src*="kraken"] {
  height: 72px;
  min-width: 180px;
  max-width: 260px;
  padding: 14px 18px;
}

.legal { padding: 48px 0 80px; max-width: 760px; }
.legal h1 { margin-bottom: 12px; }
.legal h2 { margin: 32px 0 12px; font-size: 26px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { margin: 0 0 16px 18px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 12px; }
.foot-links a { color: var(--teal); font-size: 14px; }

#cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(16, 35, 60, 0.18);
  padding: 18px 20px;
}
#cookie-banner .cookie-copy p { margin: 0 0 6px; color: var(--muted); font-size: 14.5px; }
#cookie-banner .cookie-copy p:first-child { color: var(--text); }
#cookie-banner .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 700px) {
  #cookie-banner { flex-direction: column; align-items: stretch; }
  #cookie-banner .cookie-actions { width: 100%; }
  #cookie-banner .cookie-actions .btn { flex: 1; text-align: center; }
}

/* Visual polish */
body {
  background:
    radial-gradient(900px 480px at 8% -10%, rgba(255, 196, 140, 0.22), transparent 55%),
    radial-gradient(800px 420px at 100% 8%, rgba(26, 86, 232, 0.10), transparent 50%),
    linear-gradient(180deg, #f7f4ee 0%, #f3f7fd 28%, #eef4fb 100%);
}
::selection { background: #d7e4ff; color: #10233c; }

section:nth-of-type(even) {
  background: rgba(255,255,255,0.38);
}
section.banner {
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.card, .price-card, .hero-card, .hero-fact {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover, .price-card:hover, .hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(16, 35, 60, 0.10);
  border-color: rgba(26, 86, 232, 0.22);
}

.hero-visual img,
.section-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 22px 44px rgba(16, 35, 60, 0.14);
  border: 1px solid rgba(255,255,255,0.7);
}

.section-art {
  background: transparent;
  min-height: 280px;
}

footer {
  background: #fff;
  color: var(--muted);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(16, 35, 60, 0.04);
}

details.mod {
  background: #fff;
  border-radius: 14px;
  padding: 4px 8px;
  margin: 10px 0;
  border: 1px solid var(--line);
}

.price-cta { margin-top: 18px; }
.price-cta .btn { width: 100%; }

.skip {
  position: absolute; left: 12px; top: -40px;
  background: #1a56e8; color: #fff; padding: 8px 12px; border-radius: 8px; z-index: 100;
}
.skip:focus { top: 12px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 8px 0 12px;
}
.foot-grid a { display: block; color: var(--muted); font-size: 14px; margin: 6px 0; }
.foot-grid a:hover { color: var(--teal); }
.foot-h { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--text); margin-bottom: 10px; }
@media (max-width: 800px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

#wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
#wa-float svg { width: 30px; height: 30px; display: block; }
#wa-float:hover { background: #1ebe5d; }
#cookie-banner { bottom: 86px; }
