:root {
  --bg: #ebe7ff;
  --bg-soft: #f4f7ff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --card: #ffffff;
  --card-soft: #f7f8ff;
  --line: rgba(109, 115, 188, 0.16);
  --line-strong: rgba(104, 110, 192, 0.26);
  --ink: #232549;
  --ink-soft: #60668b;
  --brand: #6f6adf;
  --brand-2: #8c7cff;
  --brand-3: #b39bff;
  --pink: #ffd8ef;
  --sky: #d6e7ff;
  --mint: #d8fff5;
  --gold: #ffd789;
  --shadow-xl: 0 48px 120px rgba(96, 95, 173, 0.18);
  --shadow-lg: 0 28px 60px rgba(98, 96, 176, 0.15);
  --shadow-md: 0 18px 32px rgba(94, 95, 170, 0.12);
  --shadow-sm: 0 10px 20px rgba(94, 95, 170, 0.08);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 38%),
    radial-gradient(circle at 85% 10%, rgba(255, 213, 243, 0.7), transparent 24%),
    radial-gradient(circle at 92% 42%, rgba(212, 231, 255, 0.82), transparent 26%),
    linear-gradient(180deg, #eee8ff 0%, #edf3ff 46%, #f7f7ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(48px);
  opacity: 0.55;
}

body::before {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  left: -70px;
  top: 180px;
  background: rgba(173, 169, 255, 0.32);
}

body::after {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -90px;
  top: 520px;
  background: rgba(255, 201, 235, 0.32);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  position: relative;
  z-index: 1;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 52%, #997dff 100%);
  box-shadow: 0 18px 32px rgba(111, 106, 223, 0.24);
}

.btn--secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(111, 106, 223, 0.16);
  box-shadow: var(--shadow-sm);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(111, 106, 223, 0.18);
  color: var(--ink);
}

.hero-card,
.section-card,
.legal-card,
.cta-card,
.notice-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 251, 255, 0.88) 100%);
  border: 1px solid rgba(109, 115, 188, 0.14);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(18px);
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  overflow: hidden;
  padding: 56px 54px 44px;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-card::before {
  width: 520px;
  height: 520px;
  right: -130px;
  top: -210px;
  background: radial-gradient(circle, rgba(156, 140, 255, 0.2), rgba(156, 140, 255, 0));
}

.hero-card::after {
  width: 420px;
  height: 420px;
  left: -110px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(255, 208, 239, 0.26), rgba(255, 208, 239, 0));
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(111, 106, 223, 0.09);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-2), #b78cff);
  box-shadow: 0 0 0 6px rgba(111, 106, 223, 0.08);
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.meta-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(244, 247, 255, 0.98), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(111, 106, 223, 0.12);
  box-shadow: var(--shadow-sm);
}

.meta-card span {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.meta-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-note__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(111, 106, 223, 0.32);
}

.hero-visual {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1.06 / 1;
}

.visual-glow,
.visual-orb {
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.95;
}

.visual-glow {
  right: 12%;
  top: 8%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 211, 242, 0.9) 0%, rgba(180, 185, 255, 0.45) 42%, rgba(180, 185, 255, 0) 72%);
  animation: pulse 8s ease-in-out infinite;
}

.visual-orb {
  left: 8%;
  bottom: 10%;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(198, 231, 255, 0.9) 0%, rgba(198, 231, 255, 0.22) 62%, rgba(198, 231, 255, 0) 76%);
  animation: pulse 9s ease-in-out infinite reverse;
}

.rails {
  position: absolute;
  inset: 0;
}

.platform {
  position: absolute;
  left: 18%;
  right: 7%;
  bottom: 16%;
  height: 44%;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.84));
  border: 1px solid rgba(111, 106, 223, 0.15);
  box-shadow: 0 22px 50px rgba(93, 97, 181, 0.14);
  transform: perspective(1200px) rotateX(61deg) rotateZ(-22deg);
  overflow: hidden;
}

.platform::before,
.platform::after {
  content: "";
  position: absolute;
  inset: 0;
}

.platform::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(232, 242, 255, 0.88));
}

.platform::after {
  inset: 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(237,244,255,0.72)),
    linear-gradient(90deg, rgba(135, 126, 255, 0.07), rgba(255, 210, 240, 0.06));
  border: 1px solid rgba(111, 106, 223, 0.1);
  box-shadow: inset 0 -24px 40px rgba(111, 106, 223, 0.05);
}

.platform__screen {
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  overflow: hidden;
}

.platform__line {
  position: absolute;
  height: 8px;
  left: 14%;
  right: 14%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(111, 106, 223, 0.0), rgba(111, 106, 223, 0.1), rgba(255, 213, 243, 0.18), rgba(111, 106, 223, 0));
}

.platform__line:nth-child(1) { top: 18%; }
.platform__line:nth-child(2) { top: 34%; }
.platform__line:nth-child(3) { top: 50%; }
.platform__line:nth-child(4) { top: 66%; }

.float-card,
.tiny-chip {
  position: absolute;
  border-radius: 26px;
  border: 1px solid rgba(111, 106, 223, 0.16);
  box-shadow: var(--shadow-md);
}

.float-card {
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.92));
  width: 220px;
  color: var(--ink);
}

.float-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.float-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.float-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.float-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.float-card__bar {
  margin-top: 14px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(111, 106, 223, 0.16), rgba(255, 210, 239, 0.56));
}

.float-card--aml {
  top: 8%;
  left: 0;
  background: linear-gradient(180deg, rgba(240, 245, 255, 0.96), rgba(255, 255, 255, 0.92));
  animation: floatOne 8.8s ease-in-out infinite;
}

.float-card--aml .float-card__icon {
  background: linear-gradient(180deg, rgba(214, 231, 255, 0.9), rgba(255, 255, 255, 0.9));
}

.float-card--acq {
  top: 2%;
  right: 10%;
  background: linear-gradient(180deg, rgba(255, 241, 249, 0.95), rgba(255, 255, 255, 0.92));
  animation: floatTwo 7.8s ease-in-out infinite;
}

.float-card--acq .float-card__icon {
  background: linear-gradient(180deg, rgba(255, 219, 240, 0.92), rgba(255, 255, 255, 0.92));
}

.float-card--payouts {
  right: -2%;
  bottom: 18%;
  width: 236px;
  background: linear-gradient(180deg, rgba(236, 243, 255, 0.96), rgba(255, 255, 255, 0.92));
  animation: floatThree 9.2s ease-in-out infinite;
}

.float-card--payouts .float-card__icon {
  background: linear-gradient(180deg, rgba(214, 231, 255, 0.92), rgba(255, 255, 255, 0.92));
}

.tiny-chip {
  min-width: 110px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.2;
  color: var(--ink-soft);
}

.tiny-chip strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.tiny-chip__dot {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  flex: 0 0 auto;
  background: linear-gradient(180deg, rgba(255, 217, 239, 0.95), rgba(212, 232, 255, 0.92));
  display: grid;
  place-items: center;
  color: var(--brand);
}

.tiny-chip--users {
  left: 8%;
  bottom: 3%;
  animation: floatTwo 7.2s ease-in-out infinite reverse;
}

.tiny-chip--risk {
  right: 22%;
  bottom: 2%;
  animation: floatOne 8s ease-in-out infinite reverse;
}

.sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12), 0 0 24px rgba(255, 255, 255, 0.6);
  animation: twinkle 2.6s ease-in-out infinite;
}

.sparkle--one { top: 20%; left: 44%; }
.sparkle--two { top: 55%; right: 13%; animation-delay: 0.6s; }
.sparkle--three { bottom: 24%; left: 34%; animation-delay: 1.1s; }

.section {
  padding-top: 26px;
}

.section-card {
  padding: 42px;
}

.ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 22px auto 0;
}

.ribbon-chip {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(111, 106, 223, 0.14);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-head p {
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.modules-grid,
.audience-grid,
.why-grid,
.regulatory-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.module-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(111, 106, 223, 0.11);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 255, 0.93));
  box-shadow: var(--shadow-sm);
}

.module-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -52px;
  top: -50px;
  border-radius: 50%;
  opacity: 0.74;
}

.module-card:nth-child(1)::before { background: radial-gradient(circle, rgba(214, 232, 255, 0.85), rgba(214, 232, 255, 0)); }
.module-card:nth-child(2)::before { background: radial-gradient(circle, rgba(255, 217, 239, 0.85), rgba(255, 217, 239, 0)); }
.module-card:nth-child(3)::before { background: radial-gradient(circle, rgba(255, 215, 137, 0.7), rgba(255, 215, 137, 0)); }
.module-card:nth-child(4)::before { background: radial-gradient(circle, rgba(214, 255, 245, 0.8), rgba(214, 255, 245, 0)); }
.module-card:nth-child(5)::before { background: radial-gradient(circle, rgba(214, 232, 255, 0.85), rgba(214, 232, 255, 0)); }
.module-card:nth-child(6)::before { background: radial-gradient(circle, rgba(255, 217, 239, 0.85), rgba(255, 217, 239, 0)); }

.module-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(111, 106, 223, 0.12), rgba(255,255,255,0.96));
  color: var(--brand);
}

.module-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.module-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 15px;
}

.module-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.module-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.module-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.cycle-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
}

.cycle-steps,
.why-grid {
  align-self: stretch;
}

.cycle-steps {
  display: grid;
  gap: 14px;
}

.step-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,249,255,0.92));
  border: 1px solid rgba(111, 106, 223, 0.12);
  box-shadow: var(--shadow-sm);
}

.step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(111,106,223,0.12), rgba(255,255,255,0.9));
  color: var(--brand);
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
}

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

.why-card,
.audience-card,
.reg-card,
.info-panel {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(111, 106, 223, 0.11);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,249,255,0.92));
  box-shadow: var(--shadow-sm);
}

.why-card h3,
.audience-card h3,
.reg-card h3,
.info-panel h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.why-card p,
.audience-card p,
.reg-card p,
.info-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-card {
  min-height: 190px;
}

.regulatory-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
}

.regulatory-lead {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 214, 241, 0.85), rgba(255,214,241,0) 36%),
    radial-gradient(circle at bottom left, rgba(214, 231, 255, 0.9), rgba(214, 231, 255, 0) 34%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,249,255,0.92));
  border: 1px solid rgba(111, 106, 223, 0.12);
  box-shadow: var(--shadow-sm);
}

.regulatory-lead h2 {
  margin: 12px 0 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.regulatory-lead p {
  margin: 0;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(111, 106, 223, 0.12);
  box-shadow: var(--shadow-sm);
  margin: 24px 0 0;
  font-weight: 700;
}

.status-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f7c96b, #f1a537);
  box-shadow: 0 0 0 6px rgba(241, 165, 55, 0.12);
}

.regulatory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.reg-card strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.reg-card small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.cta-card {
  padding: 30px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 214, 241, 0.88), rgba(255,214,241,0) 28%),
    radial-gradient(circle at 18% 84%, rgba(214, 232, 255, 0.88), rgba(214,232,255,0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247,249,255,0.92));
}

.cta-card h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.cta-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.info-panel {
  margin-top: 14px;
}

.info-panel strong {
  display: block;
  margin-bottom: 8px;
}

.form-card {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(111, 106, 223, 0.11);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,249,255,0.94));
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(111, 106, 223, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(111, 106, 223, 0.4);
  box-shadow: 0 0 0 4px rgba(111, 106, 223, 0.08);
}

.field--wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  align-items: center;
}

.form-note {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  max-width: 360px;
}

.notice-card {
  padding: 18px 22px;
  display: none;
  margin-top: 16px;
  border-radius: 22px;
  color: var(--ink);
}

.notice-card.is-visible {
  display: block;
}

.footer {
  padding: 28px 0 44px;
}

.footer-card {
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,249,255,0.9));
  border: 1px solid rgba(111, 106, 223, 0.14);
  box-shadow: var(--shadow-md);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.footer-brand img {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-col p,
.footer-col li,
.footer-bottom {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(111, 106, 223, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.legal-page {
  padding-bottom: 40px;
}

.legal-hero {
  padding: 42px;
}

.legal-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.legal-hero p {
  margin: 0;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.legal-content {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.legal-card {
  padding: 26px;
}

.legal-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.legal-card p,
.legal-card li {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  display: none;
  justify-content: center;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner__card {
  width: min(920px, 100%);
  padding: 18px 18px 18px 22px;
  border-radius: 22px;
  background: rgba(26, 28, 62, 0.88);
  color: rgba(255,255,255,0.88);
  box-shadow: 0 30px 70px rgba(20, 23, 52, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(18px);
}

.cookie-banner__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-banner .btn {
  min-height: 44px;
  padding-inline: 18px;
}

.btn--light {
  color: var(--ink);
  background: #fff;
}

.icon-stroke,
.icon-fill {
  width: 24px;
  height: 24px;
}

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

.icon-fill {
  fill: currentColor;
}

@keyframes floatOne {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1.2deg); }
}

@keyframes floatTwo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1.4deg); }
}

@keyframes floatThree {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes twinkle {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.28); opacity: 1; }
}

@media (max-width: 1120px) {
  .hero-card,
  .cycle-layout,
  .regulatory-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy p,
  .section-head p,
  .regulatory-lead p,
  .cta-card p {
    max-width: none;
  }

  .hero-visual {
    min-height: 480px;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .modules-grid,
  .audience-grid,
  .why-grid,
  .regulatory-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card,
  .section-card,
  .footer-card,
  .legal-card,
  .cta-card,
  .hero-hero {
    border-radius: 30px;
  }

  .hero-card {
    padding: 36px 24px 28px;
  }

  .section-card {
    padding: 30px 24px;
  }

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

  .cookie-banner__card {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner .btn {
    flex: 1 1 0;
  }
}

@media (max-width: 680px) {
  .topbar {
    gap: 12px;
    flex-wrap: wrap;
  }

  .topbar__actions {
    width: 100%;
  }

  .topbar__actions .btn {
    flex: 1 1 0;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p,
  .section-head p,
  .regulatory-lead p,
  .cta-card p,
  .legal-hero p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .visual-stage {
    width: 100%;
  }

  .float-card {
    width: 190px;
    padding: 16px;
  }

  .float-card--payouts {
    width: 210px;
  }

  .modules-grid,
  .audience-grid,
  .why-grid,
  .regulatory-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .ribbon {
    justify-content: start;
  }

  .footer-grid {
    gap: 24px;
  }
}

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