@font-face {
  font-family: "Roobert";
  src: url("./fonts/Roobert-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roobert";
  src: url("./fonts/Roobert-medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Roobert";
  src: url("./fonts/Roobert-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Roobert";
  src: url("./fonts/Roobert-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --purple: #7c4dff;
  --purple6: #412297;
  --purple7: #2d1861;
  --ink: #0f0821;
  --page: #f7f6f9;
  --surface: #fbfaff;
  --lav: #ece5ff;
  --lav2: #cebdff;
  --magenta: #ff62e1;
  --blue: #5d96fc;
  --lightblue: #95f0ff;
  --grey: #3f3b48;
  --muted: #6d6877;
  --line: #eceaf1;
  --white: #ffffff;
  --grad: linear-gradient(120deg, #2d1861 0%, #7c4dff 55%, #7c8bfc 100%);
  --shadow: 0 18px 50px rgba(45, 24, 97, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 80% -10%, rgba(124, 77, 255, 0.14), transparent 32%),
    radial-gradient(circle at 4% 12%, rgba(149, 240, 255, 0.22), transparent 26%),
    var(--page);
  color: var(--ink);
  font-family: "Roobert", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 249, 0.88);
  padding: 20px 0;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

header img {
  height: 30px;
  width: auto;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

nav a {
  text-decoration: none;
  transition: color 0.15s;
}

nav a:hover {
  color: var(--purple6);
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--lav2);
  border-radius: 999px;
  background: var(--white);
  color: var(--purple6);
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 4px;
  width: min(420px, calc(100vw - 48px));
  max-height: 360px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 10px;
  box-shadow: var(--shadow);
}

.language-menu a {
  border-radius: 12px;
  color: var(--grey);
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
  background: var(--lav);
  color: var(--purple6);
}

.nav-cta {
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(124, 77, 255, 0.35);
}

.hero-section {
  padding: 86px 0 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  border-radius: 999px;
  background: var(--lav);
  color: var(--purple6);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  margin: 22px 0 20px;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2.4px;
  line-height: 0.98;
}

.hero p {
  max-width: 62ch;
  color: var(--grey);
  font-size: clamp(16px, 2vw, 19px);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(124, 77, 255, 0.35);
}

.btn-ghost {
  border: 1px solid var(--lav2);
  background: var(--white);
  color: var(--purple6);
}

.btn-ghost:hover {
  border-color: var(--purple);
}

.hero-panel {
  border: 1px solid rgba(206, 189, 255, 0.68);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    var(--white);
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-panel span {
  display: block;
  margin-bottom: 22px;
  color: var(--purple6);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 14px;
  list-style: none;
}

.hero-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.hero-panel li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 5px var(--lav);
}

section {
  padding: 74px 0;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--lightblue);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-intro h2,
.split h2,
.trust h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.06;
}

.section-intro p,
.split p,
.trust p {
  color: var(--muted);
  font-size: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 2px 10px rgba(72, 64, 88, 0.04);
  transition: transform 0.18s, box-shadow 0.18s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(72, 64, 88, 0.12);
}

.product-card {
  grid-column: span 2;
  min-height: 220px;
}

.product-card:nth-child(4),
.product-card:nth-child(5) {
  grid-column: span 3;
}

.acquiring-card {
  min-height: 200px;
}

.card .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--purple);
  vertical-align: middle;
}

.card h3 {
  display: inline;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.card p {
  margin-top: 12px;
  color: var(--grey);
  font-size: 14.5px;
}

.split-section,
.trust-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.split,
.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.audience-list {
  display: grid;
  gap: 12px;
}

.audience-list div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(72, 64, 88, 0.04);
}

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

.reason-grid article {
  border-radius: 24px;
  background: var(--purple7);
  color: var(--white);
  padding: 30px;
  min-height: 230px;
}

.reason-grid h3 {
  margin-bottom: 14px;
  font-size: 20px;
  letter-spacing: -0.4px;
}

.reason-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  border-radius: 999px;
  background: var(--lav);
  color: var(--purple6);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}

.ctaband {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 24px;
  background: var(--grad);
  color: var(--white);
  padding: 52px 48px;
  box-shadow: 0 22px 60px rgba(45, 24, 97, 0.2);
}

.ctaband h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.8px;
}

.ctaband p {
  max-width: 58ch;
  font-size: 16px;
  opacity: 0.94;
}

.ctaband .btn-white {
  background: var(--white);
  color: var(--purple6);
  white-space: nowrap;
}

.ctaband .btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

footer {
  padding: 28px 0 56px;
  color: var(--grey);
}

footer .disc {
  max-width: 80ch;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.8;
}

footer .legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13px;
  font-weight: 500;
}

footer a {
  color: var(--purple6);
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(124, 77, 255, 0.35);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  nav {
    display: none;
  }

  .hero,
  .section-intro,
  .split,
  .trust,
  .reason-grid {
    grid-template-columns: 1fr;
  }

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

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

  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: auto;
  }

  .ctaband {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 18px;
  }

  header {
    padding: 16px 0;
  }

  .nav {
    gap: 12px;
  }

  .language-switcher summary {
    padding: 8px 11px;
  }

  .language-menu {
    right: -78px;
    grid-template-columns: 1fr;
    width: min(300px, calc(100vw - 36px));
  }

  .hero-section {
    padding: 58px 0 42px;
  }

  section {
    padding: 52px 0;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-panel,
  .card,
  .ctaband {
    border-radius: 20px;
    padding: 24px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
