:root {
  --ink: #242424;
  --ink-soft: #4f5355;
  --paper: #ffffff;
  --mist: #f1f5f5;
  --mist-2: #e8eded;
  --line: rgba(36, 36, 36, 0.12);
  --pink: #fe42b4;
  --pink-dark: #e12295;
  --pink-soft: #ffd6ef;
  --lilac: #d9cfff;
  --purple: #735cff;
  --lime: #d9ff71;
  --green: #1ca76f;
  --shadow: 0 20px 70px rgba(36, 36, 36, 0.12);
  --shadow-soft: 0 8px 40px rgba(36, 36, 36, 0.08);
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  position: relative;
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.section-pad {
  padding-block: 140px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  content: "";
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.eyebrow-light::before {
  background: var(--lime);
}

.section-heading {
  max-width: 900px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.operations-title h2,
.split-copy h2,
.freedom-card h2,
.pricing-copy h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.operations-title > p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 12px 30px rgba(254, 66, 180, 0.26);
}

.button-primary:hover {
  background: var(--pink-dark);
  box-shadow: 0 16px 38px rgba(254, 66, 180, 0.35);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(36, 36, 36, 0.56);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  color: #fff;
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 80px;
  padding: 12px 28px;
  pointer-events: none;
}

.brand,
.nav-pill,
.header-actions,
.menu-button {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: #fff;
  background: var(--ink);
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(36, 36, 36, 0.14);
}

.brand-mark b {
  font-size: 15px;
  line-height: 1;
}

.brand-mark i {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
}

.nav-pill {
  padding: 4px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 8px 40px rgba(36, 36, 36, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled .nav-pill {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 45px rgba(36, 36, 36, 0.13);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1px;
}

.main-nav a {
  position: relative;
  padding: 13px 17px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a.is-active:not(.nav-cta) {
  background: var(--mist-2);
}

.main-nav .nav-cta {
  padding-inline: 22px;
  color: #fff;
  background: var(--ink);
}

.main-nav .nav-cta:hover {
  background: var(--pink);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
}

.header-actions a {
  padding: 10px 6px;
}

.language {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.menu-button {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
}

.menu-button i {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-button i:first-of-type {
  top: 20px;
}

.menu-button i:last-of-type {
  top: 28px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 950px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.95) 0 8%, transparent 31%),
    radial-gradient(circle at 86% 57%, rgba(254, 66, 180, 0.18), transparent 31%),
    linear-gradient(112deg, #f7ecf8 0%, #f3e9f5 42%, #eadff1 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 220px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.35), transparent);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 18%;
  right: -8%;
  width: 52vw;
  height: 52vw;
  background: rgba(254, 66, 180, 0.22);
  border-radius: 50%;
  filter: blur(50px);
}

.hero-art {
  position: absolute;
  top: 46px;
  right: -175px;
  z-index: 1;
  width: min(81vw, 1240px);
  max-width: none;
  height: auto;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  min-height: 950px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(850px, 68vw);
  padding-top: 135px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker span {
  color: var(--pink);
  font-size: 16px;
}

.hero h1 {
  position: relative;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(84px, 8.3vw, 126px);
  font-weight: 700;
  line-height: 0.87;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  width: fit-content;
  white-space: nowrap;
}

.hero h1 span:nth-child(3) {
  position: relative;
}

.hero h1 span:nth-child(3)::after {
  position: absolute;
  right: -70px;
  bottom: 18px;
  width: 54px;
  height: 18px;
  background: var(--pink);
  border-radius: 999px;
  transform: rotate(-8deg);
  content: "";
}

.hero-lead {
  max-width: 610px;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-float-card {
  position: absolute;
  right: 2%;
  bottom: 178px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 330px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.float-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green);
  background: #e6faef;
  border-radius: 13px;
  font-weight: 800;
}

.hero-float-card span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-float-card small,
.hero-float-card time {
  color: #7c8182;
  font-size: 10px;
}

.hero-float-card strong {
  font-size: 12px;
}

.hero-facts {
  position: absolute;
  right: 0;
  bottom: 35px;
  left: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(36, 36, 36, 0.14);
}

.hero-facts > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 82px;
  padding: 18px 22px;
  border-right: 1px solid rgba(36, 36, 36, 0.14);
}

.hero-facts > div:first-child {
  padding-left: 0;
}

.hero-facts > div:last-child {
  border-right: 0;
}

.hero-facts small {
  color: #727777;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts strong {
  font-size: 15px;
}

/* Overview */
.feature-overview {
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 64px;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 370px;
  padding: 24px;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid rgba(36, 36, 36, 0.05);
  border-radius: 24px;
}

.feature-card h3 {
  max-width: 260px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

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

.feature-card-zero {
  background: linear-gradient(145deg, #fff2fb, #f5eef8 55%, #efeafd);
}

.zero-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 205px;
  margin: 0 -24px -24px;
}

.zero-art strong {
  position: relative;
  z-index: 2;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 0.8;
  letter-spacing: -0.08em;
  text-shadow: 0 18px 28px rgba(254, 66, 180, 0.2);
}

.zero-art span {
  position: absolute;
  right: 40px;
  bottom: 36px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  transform: rotate(12deg);
}

.zero-art i {
  position: absolute;
  right: -20px;
  bottom: -42px;
  width: 175px;
  height: 175px;
  border: 1px solid rgba(254, 66, 180, 0.3);
  border-radius: 50%;
}

.feature-card-invoice {
  background: linear-gradient(145deg, #eff4f4, #f7f9f9);
}

.mini-invoice {
  position: relative;
  width: 92%;
  margin: 30px auto -44px;
  padding: 26px 22px 64px;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 18px 45px rgba(47, 57, 57, 0.12);
  transform: rotate(-2deg);
}

.mini-invoice-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.mini-invoice small {
  display: block;
  color: #858a8a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mini-invoice strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 23px;
}

.mini-invoice strong em {
  color: #969b9b;
  font-size: 9px;
  font-style: normal;
}

.mini-invoice > i {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 8px;
  background: #e9eeee;
  border-radius: 99px;
}

.mini-invoice > i:nth-of-type(2) {
  width: 67%;
}

.mini-invoice b {
  position: absolute;
  right: -12px;
  bottom: 28px;
  padding: 10px 14px;
  color: var(--green);
  background: #e8fbf0;
  border-radius: 999px;
  font-size: 10px;
}

.feature-card-batch {
  background: linear-gradient(145deg, #eeeaff, #faf8ff);
}

.batch-art {
  position: relative;
  height: 190px;
  margin: 24px -10px -14px;
}

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--ink);
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(36, 36, 36, 0.12);
}

.avatar-a { background: #ffd3a8; }
.avatar-b { background: #f7b8df; }
.avatar-c { background: #bcd8ff; }
.avatar-d { background: #c9f2ca; }

.batch-art .avatar {
  position: absolute;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-width: 5px;
  font-size: 13px;
}

.batch-art .avatar-a { top: 31px; left: 17px; }
.batch-art .avatar-b { top: 4px; left: 50%; transform: translateX(-50%); }
.batch-art .avatar-c { top: 40px; right: 12px; }

.batch-art > i {
  position: absolute;
  top: 58px;
  right: 30px;
  left: 32px;
  height: 70px;
  border: 2px solid var(--pink);
  border-top: 0;
  border-radius: 0 0 100px 100px;
}

.batch-art b {
  position: absolute;
  bottom: 6px;
  left: 50%;
  z-index: 4;
  padding: 11px 15px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 10px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.feature-card-report {
  background: linear-gradient(145deg, #f4f7f7, #e9efef);
}

.report-art {
  position: relative;
  height: 185px;
  margin: 30px -4px -8px;
  padding: 25px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.report-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 95px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.report-bars i {
  width: 12%;
  height: 36%;
  background: var(--pink-soft);
  border-radius: 8px 8px 2px 2px;
}

.report-bars i:nth-child(2) { height: 62%; background: var(--lilac); }
.report-bars i:nth-child(3) { height: 48%; }
.report-bars i:nth-child(4) { height: 83%; background: var(--pink); }
.report-bars i:nth-child(5) { height: 70%; background: var(--lilac); }

.report-art > span {
  display: inline-block;
  margin: 15px 5px 0 0;
  padding: 6px 9px;
  background: var(--mist);
  border-radius: 8px;
  font-size: 8px;
  font-weight: 800;
}

/* Split product sections */
.invoice-section {
  background: var(--mist);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 76px;
}

.split-layout-reverse {
  grid-template-columns: minmax(520px, 1.12fr) minmax(0, 0.88fr);
}

.split-copy {
  max-width: 550px;
}

.split-copy h2 {
  max-width: 520px;
}

.split-lead {
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.check-list li span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--green);
  background: #e3f8ec;
  border-radius: 50%;
  font-size: 11px;
}

.invoice-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 700px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.8), transparent 24%),
    linear-gradient(145deg, #f5b2db, #dfc6f3 58%, #c7c1ff);
  border-radius: 36px;
}

.invoice-stage::before {
  position: absolute;
  inset: auto -14% -24% 8%;
  height: 58%;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50% 50% 0 0;
  transform: rotate(-8deg);
  content: "";
}

.invoice-orbit {
  position: absolute;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
}

.orbit-one { transform: translate(180px, -210px); }
.orbit-two { transform: translate(-210px, 290px); }

.chain-pill {
  position: absolute;
  z-index: 4;
  padding: 12px 17px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.chain-pill-eth {
  top: 68px;
  right: 54px;
  transform: rotate(7deg);
}

.chain-pill-tron {
  bottom: 94px;
  left: 42px;
  transform: rotate(-8deg);
}

.checkout-card {
  position: relative;
  z-index: 3;
  width: min(390px, calc(100% - 80px));
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 30px 75px rgba(75, 50, 83, 0.18);
  backdrop-filter: blur(20px);
}

.checkout-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.checkout-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--ink);
  border-radius: 12px;
  font-weight: 800;
}

.checkout-head > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.checkout-head strong {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.checkout-head small {
  color: #888d8e;
  font-size: 9px;
}

.checkout-head > i {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(28, 167, 111, 0.1);
}

.checkout-order {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  color: #888d8e;
  font-size: 10px;
}

.checkout-order strong {
  color: var(--ink);
}

.checkout-total {
  padding-block: 30px 26px;
  text-align: center;
}

.checkout-total small {
  display: block;
  margin-bottom: 6px;
  color: #888d8e;
  font-size: 10px;
}

.checkout-total strong {
  font-size: 47px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.checkout-total span {
  margin-left: 5px;
  color: #7d8282;
  font-size: 12px;
  font-weight: 800;
}

.checkout-network {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: var(--mist);
  border-radius: 15px;
}

.checkout-network > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.checkout-network small {
  color: #888d8e;
  font-size: 8px;
}

.checkout-network strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.checkout-network strong i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: #ee596f;
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}

.checkout-network em {
  color: #858a8a;
  font-size: 9px;
  font-style: normal;
}

.checkout-action {
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.checkout-action:hover {
  background: var(--pink);
  transform: translateY(-1px);
}

.checkout-help {
  margin-top: 13px;
  color: #8a8f90;
  font-size: 8px;
  text-align: center;
}

.checkout-success {
  position: absolute;
  inset: 12px;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 21px;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
  backdrop-filter: blur(20px);
}

.checkout-success.is-visible {
  opacity: 1;
  transform: scale(1);
}

.checkout-success span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  color: var(--green);
  background: #e0f8eb;
  border-radius: 50%;
  font-size: 30px;
}

.checkout-success strong {
  font-size: 20px;
}

.checkout-success small {
  margin-top: 7px;
  color: #858a8a;
}

.payment-route {
  position: absolute;
  right: 28px;
  bottom: 25px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 8px;
  backdrop-filter: blur(12px);
}

.payment-route i {
  color: var(--pink);
  font-style: normal;
}

/* Payouts */
.payouts-section {
  background: #fff;
}

.payout-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffe7f5, #f4eff6 52%, #eeeaff);
  border-radius: 36px;
}

.payout-stage::after {
  position: absolute;
  top: -22%;
  left: -8%;
  width: 430px;
  height: 430px;
  background: rgba(254, 66, 180, 0.23);
  border-radius: 50%;
  filter: blur(30px);
  content: "";
}

.payout-word {
  position: absolute;
  top: 70px;
  right: -8px;
  z-index: 0;
  color: rgba(254, 66, 180, 0.12);
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.05em;
}

.payout-window {
  position: relative;
  z-index: 3;
  width: min(560px, calc(100% - 58px));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #fff;
  border-radius: 24px;
  box-shadow: 0 35px 85px rgba(74, 54, 78, 0.15);
  backdrop-filter: blur(18px);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.window-bar > span {
  display: flex;
  gap: 5px;
}

.window-bar > span i {
  width: 6px;
  height: 6px;
  background: #d8dddd;
  border-radius: 50%;
}

.window-bar strong {
  font-size: 11px;
}

.window-bar > em {
  justify-self: end;
  padding: 6px 8px;
  color: #8a8f90;
  background: var(--mist);
  border-radius: 8px;
  font-size: 8px;
  font-style: normal;
}

.payout-summary {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10px;
  padding: 20px 20px 12px;
}

.payout-summary > span {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px;
  background: var(--mist);
  border-radius: 14px;
}

.payout-summary small {
  color: #878c8d;
  font-size: 8px;
}

.payout-summary strong {
  font-size: 20px;
}

.payout-summary strong em {
  color: #8a8f90;
  font-size: 8px;
  font-style: normal;
}

.payout-list {
  padding-inline: 20px;
}

.payout-list > div {
  display: grid;
  grid-template-columns: auto minmax(100px, 1fr) 0.7fr auto auto;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}

.payout-list .avatar {
  width: 34px;
  height: 34px;
  border-width: 2px;
}

.payout-list b,
.payout-list strong {
  font-size: 10px;
}

.payout-list small {
  color: #8a8f90;
  font-size: 8px;
}

.payout-list em {
  padding: 5px 7px;
  color: var(--green);
  background: #e8f8ee;
  border-radius: 7px;
  font-size: 7px;
  font-style: normal;
}

.payout-window > button {
  float: right;
  min-height: 43px;
  margin: 18px 20px 20px;
  padding: 0 17px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 800;
}

.payout-window > button span {
  margin-left: 14px;
}

.fee-chip {
  position: absolute;
  right: 24px;
  bottom: 50px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 17px;
  background: var(--lime);
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transform: rotate(4deg);
}

.fee-chip small {
  font-size: 7px;
}

.fee-chip strong {
  font-size: 13px;
}

/* Dashboard */
.operations-section {
  overflow: hidden;
  background: var(--mist);
}

.operations-title {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.operations-title h2 span {
  color: var(--pink);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 62px 1fr;
  min-height: 740px;
  margin-top: 70px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(36, 36, 36, 0.08);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(36, 36, 36, 0.11);
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 18px;
  background: #202323;
}

.dashboard-brand,
.dashboard-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
}

.dashboard-brand {
  color: var(--ink);
  background: var(--pink);
}

.dashboard-avatar {
  margin-top: auto;
  color: var(--ink);
  background: var(--lilac);
  border-radius: 50%;
}

.dashboard-sidebar nav {
  display: grid;
  gap: 11px;
  margin-top: 50px;
}

.dashboard-sidebar nav i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.48);
  border-radius: 10px;
  font-size: 13px;
  font-style: normal;
}

.dashboard-sidebar nav i.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.dashboard-main {
  min-width: 0;
  padding: 24px;
  background: #f8fafa;
}

.dashboard-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-top > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-top small {
  color: #8b9091;
  font-size: 9px;
}

.dashboard-top strong {
  font-size: 16px;
}

.dashboard-top > button {
  min-height: 38px;
  padding: 0 13px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-top > button span {
  margin-left: 8px;
}

.export-popover {
  position: absolute;
  top: 48px;
  right: 0;
  z-index: 8;
  display: none;
  width: 210px;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.export-popover.is-open {
  display: grid;
  gap: 8px;
}

.export-popover strong {
  margin-bottom: 5px;
  font-size: 10px;
}

.export-popover button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px;
  background: var(--mist);
  border: 0;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
}

.export-popover button span {
  color: #8a8f90;
  font-size: 7px;
  font-weight: 600;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.dashboard-stats article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-width: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(36, 36, 36, 0.07);
  border-radius: 14px;
}

.dashboard-stats small {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  color: #8b9091;
  font-size: 8px;
}

.dashboard-stats strong {
  font-size: 19px;
}

.dashboard-stats strong em {
  color: #8b9091;
  font-size: 8px;
  font-style: normal;
}

.dashboard-stats span {
  padding: 5px 6px;
  color: var(--green);
  background: #e8f8ee;
  border-radius: 7px;
  font-size: 7px;
  font-weight: 800;
}

.dashboard-content {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(240px, 0.7fr);
  gap: 10px;
  margin-top: 10px;
}

.chart-card,
.balance-card,
.transaction-table {
  background: #fff;
  border: 1px solid rgba(36, 36, 36, 0.07);
  border-radius: 14px;
}

.chart-card {
  padding: 16px;
}

.chart-card > div:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.chart-card > div:first-child span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chart-card small,
.balance-card small {
  color: #8b9091;
  font-size: 8px;
}

.chart-card strong {
  font-size: 15px;
}

.chart-card > div:first-child > em {
  color: #7f8485;
  font-size: 8px;
  font-style: normal;
}

.chart-card svg {
  width: 100%;
  height: 205px;
  margin-top: 15px;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: #e8eded;
  stroke-width: 1;
}

.chart-area {
  fill: url(#chart-fill-v4);
}

.chart-line {
  fill: none;
  stroke: var(--pink);
  stroke-linecap: round;
  stroke-width: 4;
}

.chart-card circle {
  fill: #fff;
  stroke: var(--pink);
  stroke-width: 4;
}

.chart-days {
  display: flex;
  justify-content: space-between;
  color: #9a9e9f;
  font-size: 7px;
}

.balance-card {
  padding: 16px;
}

.balance-card > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.balance-card > div:first-child strong {
  font-size: 25px;
}

.balance-card ul {
  margin-top: 22px;
}

.balance-card li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding-block: 12px;
  border-top: 1px solid var(--line);
}

.coin {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.coin.usdt { background: #28a98a; }
.coin.usdc { background: #397cdb; }
.coin.dai { background: #f0a819; }

.balance-card li span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.balance-card li b,
.balance-card li strong {
  font-size: 9px;
}

.balance-card li small {
  font-size: 6px;
}

.transaction-table {
  margin-top: 10px;
  overflow: hidden;
}

.transaction-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
}

.transaction-head strong {
  font-size: 11px;
}

.transaction-head span {
  color: #7f8485;
  font-size: 8px;
}

.transaction-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.7fr 1fr 0.65fr;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-top: 1px solid var(--line);
  font-size: 8px;
}

.transaction-labels {
  min-height: 31px;
  color: #9a9e9f;
  font-size: 6px;
  font-weight: 800;
}

.transaction-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.transaction-row > span:first-child i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--mist);
  border-radius: 8px;
  font-style: normal;
}

.transaction-labels > span:first-child i {
  display: none;
}

.transaction-row em {
  justify-self: start;
  padding: 5px 7px;
  color: var(--green);
  background: #e8f8ee;
  border-radius: 7px;
  font-size: 7px;
  font-style: normal;
}

.operations-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operations-points span {
  padding: 24px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid var(--line);
}

.operations-points span:last-child {
  border-right: 0;
}

.operations-points i {
  margin-right: 10px;
  color: var(--pink);
  font-size: 10px;
  font-style: normal;
}

/* Freedom */
.freedom-section {
  padding-bottom: 0;
  background: #fff;
}

.freedom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.freedom-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 640px;
  padding: 44px;
  overflow: hidden;
  border-radius: 32px;
}

.freedom-card > div:first-child {
  position: relative;
  z-index: 3;
  max-width: 500px;
}

.freedom-card h2 {
  font-size: clamp(42px, 4vw, 62px);
}

.freedom-card > div:first-child > p:last-child {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.65;
}

.freedom-card-dark {
  color: #fff;
  background:
    radial-gradient(circle at 86% 68%, rgba(115, 92, 255, 0.5), transparent 31%),
    #202323;
}

.freedom-card-dark > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.67);
}

.network-visual {
  position: relative;
  height: 250px;
}

.network-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-visual path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-dasharray: 6 8;
  stroke-width: 2;
}

.node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 9px;
  backdrop-filter: blur(10px);
}

.node i {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(217, 255, 113, 0.1);
}

.node-a { top: 22px; left: 18px; }
.node-b { right: 8px; top: 62px; }
.node-c { bottom: 12px; left: 34%; }

.freedom-card-pink {
  background:
    radial-gradient(circle at 86% 85%, rgba(115, 92, 255, 0.34), transparent 30%),
    linear-gradient(145deg, #ffc1e7, #f5a6d6 52%, #e2c8fb);
}

.speed-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 230px;
}

.speed-visual span {
  position: absolute;
  top: -35px;
  left: 10%;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-display);
  font-size: 220px;
  line-height: 1;
}

.speed-visual strong {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 105px;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.speed-visual i {
  position: absolute;
  right: 7%;
  bottom: 5px;
  width: 80px;
  height: 80px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(36, 36, 36, 0.16);
}

.speed-visual i::after {
  position: absolute;
  inset: 26px;
  border-top: 4px solid var(--ink);
  border-right: 4px solid var(--ink);
  transform: rotate(45deg);
  content: "";
}

.fee-marquee {
  margin-top: 120px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  transform: rotate(-1.4deg) scale(1.02);
}

.fee-marquee > div {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 95px;
  animation: marquee 28s linear infinite;
}

.fee-marquee span {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.fee-marquee i {
  margin-inline: 36px;
  color: var(--pink);
  font-size: 24px;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Bridge and team */
.control-section {
  background: #fff;
}

.control-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 16px;
  margin-top: 68px;
}

.bridge-card-large,
.team-card-large {
  position: relative;
  min-height: 680px;
  padding: 34px;
  overflow: hidden;
  border-radius: 30px;
}

.bridge-card-large {
  background:
    radial-gradient(circle at 88% 22%, rgba(254, 66, 180, 0.22), transparent 24%),
    var(--mist);
}

.team-card-large {
  background:
    radial-gradient(circle at 5% 85%, rgba(115, 92, 255, 0.28), transparent 28%),
    #eeeaff;
}

.control-card-copy {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.control-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.control-card-copy h3 {
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.control-card-copy p {
  max-width: 520px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.bridge-widget {
  position: absolute;
  right: 34px;
  bottom: -38px;
  left: 34px;
  z-index: 2;
  min-height: 400px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 25px 60px rgba(36, 36, 36, 0.11);
}

.bridge-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.bridge-widget-head strong {
  font-size: 12px;
}

.bridge-widget-head span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #858a8a;
  font-size: 8px;
}

.bridge-widget-head span i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.bridge-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 17px;
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: 15px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.bridge-field > span {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bridge-field small {
  color: #858a8a;
  font-size: 8px;
}

.bridge-field > span strong {
  font-size: 20px;
}

.bridge-field > b {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
}

.bridge-field > b > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
}

.bridge-field-to > b > i {
  background: #ed596f;
}

.bridge-field > b > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bridge-switch {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: -10px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: 0 6px 14px rgba(36, 36, 36, 0.1);
  cursor: pointer;
  transition: transform 0.25s ease;
}

.bridge-switch:hover {
  transform: rotate(180deg);
}

.bridge-widget.is-reversed .bridge-switch {
  transform: rotate(180deg);
}

.bridge-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  color: #858a8a;
  font-size: 8px;
}

.bridge-meta strong {
  color: var(--ink);
}

.bridge-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 15px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
}

.team-widget {
  position: absolute;
  right: 24px;
  bottom: -28px;
  left: 24px;
  z-index: 2;
  padding: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 25px 60px rgba(36, 36, 36, 0.11);
}

.team-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.team-widget-head strong {
  font-size: 12px;
}

.team-widget-head button {
  min-height: 28px;
  padding: 0 9px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  font-size: 7px;
}

.team-person {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding-block: 13px;
  border-top: 1px solid var(--line);
}

.team-person .avatar {
  width: 35px;
  height: 35px;
  border-width: 2px;
}

.team-person > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.team-person b {
  font-size: 9px;
}

.team-person small,
.team-person em {
  color: #858a8a;
  font-size: 7px;
  font-style: normal;
}

.team-person em {
  padding: 6px 8px;
  background: var(--mist);
  border-radius: 7px;
}

.approval-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 13px;
  background: #f1edff;
  border-radius: 11px;
}

.approval-line > span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 800;
}

.approval-line > span i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}

.approval-line button {
  position: relative;
  width: 31px;
  height: 18px;
  padding: 0;
  background: var(--purple);
  border: 0;
  border-radius: 999px;
}

.approval-line button i {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

/* Agent economy */
.agents-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 17% 18%, rgba(254, 66, 180, 0.32), transparent 30%),
    radial-gradient(circle at 88% 75%, rgba(115, 92, 255, 0.42), transparent 32%),
    #1f2222;
}

.agents-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.6px, transparent 0.6px);
  background-size: 9px 9px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
}

.agents-heading {
  position: relative;
  z-index: 2;
  max-width: 1090px;
  margin-inline: auto;
  text-align: center;
}

.agents-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(66px, 8vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.agents-heading > p:last-child {
  max-width: 760px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.agent-flow {
  position: relative;
  z-index: 2;
  min-height: 420px;
  margin-top: 70px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.agent-flow > svg {
  position: absolute;
  top: 75px;
  left: 5%;
  width: 90%;
  height: 260px;
}

.agent-flow > svg path {
  fill: none;
  stroke: rgba(254, 66, 180, 0.6);
  stroke-dasharray: 8 10;
  stroke-width: 2;
}

.agent-card {
  position: absolute;
  top: 113px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  width: 220px;
  padding: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #fff;
  border-radius: 17px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.agent-card-one { left: 6%; transform: rotate(-2deg); }
.agent-card-two { left: 50%; transform: translateX(-50%) rotate(1deg); }
.agent-card-three { right: 6%; transform: rotate(-1deg); }

.agent-face {
  grid-row: 1 / 4;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  background: var(--pink-soft);
  border-radius: 14px;
  font-size: 10px;
  font-weight: 800;
}

.agent-card-two .agent-face { background: var(--lilac); }
.agent-card-three .agent-face { color: #fff; background: var(--pink); }

.agent-card small {
  color: #838889;
  font-size: 7px;
}

.agent-card strong {
  font-size: 10px;
}

.agent-card em {
  color: #838889;
  font-size: 7px;
  font-style: normal;
}

.agent-event {
  position: absolute;
  bottom: 48px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.agent-event span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
}

.agent-event span i {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
}

.agent-event code {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
}

.agent-code {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 8px;
  width: 280px;
  padding: 13px;
  background: #111313;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transform: rotate(2deg);
}

.agent-code > div {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-code > div i {
  width: 5px;
  height: 5px;
  background: #555;
  border-radius: 50%;
}

.agent-code > div span {
  margin-left: auto;
  color: #777;
  font-size: 7px;
}

.agent-code code {
  color: #c7cccc;
  font-size: 8px;
}

.agent-code code b { color: var(--pink); }
.agent-code code em { color: var(--lime); font-style: normal; }

.agent-features {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.agent-features span {
  padding: 22px 16px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.agent-features span:last-child { border-right: 0; }
.agent-features i { margin-right: 10px; color: var(--pink); font-size: 9px; font-style: normal; }

/* Paperwork */
.paperwork-section {
  background: #fff;
}

.paperwork-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 60px;
}

.paperwork-poster {
  position: relative;
  min-height: 600px;
  padding: 65px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 14%, rgba(254, 66, 180, 0.22), transparent 23%),
    linear-gradient(145deg, #f0f3f3, #fafafa);
  border-radius: 30px;
}

.paperwork-poster h2 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(86px, 8vw, 126px);
  line-height: 0.84;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.paperwork-poster h2 span,
.paperwork-poster h2 strong {
  display: block;
  font-weight: 700;
}

.paperwork-poster h2 strong {
  color: var(--pink);
  transform: translateX(22px);
}

.paperwork-poster p {
  position: absolute;
  right: 42px;
  bottom: 42px;
  z-index: 2;
  max-width: 310px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.poster-sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  font-size: 11px;
  font-weight: 800;
}

.poster-sticker-one { top: 24px; right: 32px; transform: rotate(7deg); }
.poster-sticker-two { right: 110px; bottom: 154px; transform: rotate(-9deg); }
.poster-sticker-three { top: 43%; left: 28px; color: #fff; background: var(--purple); border-radius: 50%; transform: rotate(8deg); }

.documents-panel {
  padding: 22px;
  background: var(--mist);
  border: 1px solid rgba(36, 36, 36, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.documents-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.documents-head > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.documents-head > span i {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.documents-head b {
  font-size: 13px;
}

.documents-head button {
  min-height: 34px;
  padding: 0 11px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 9px;
  font-size: 8px;
}

.documents-filters {
  display: flex;
  gap: 6px;
  margin-top: 24px;
}

.documents-filters span {
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 7px;
}

.documents-summary {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8px;
  margin-top: 9px;
}

.documents-summary > span {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
}

.documents-summary small {
  color: #858a8a;
  font-size: 7px;
}

.documents-summary strong {
  font-size: 16px;
}

.document-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  min-height: 70px;
  margin-top: 8px;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
}

.document-item > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--pink);
  background: var(--pink-soft);
  border-radius: 10px;
  font-style: normal;
  font-weight: 800;
}

.document-item > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.document-item b {
  font-size: 9px;
}

.document-item small {
  color: #858a8a;
  font-size: 7px;
}

.document-item em {
  padding: 6px 8px;
  color: var(--green);
  background: #e7f8ee;
  border-radius: 7px;
  font-size: 7px;
  font-style: normal;
}

/* Pricing */
.pricing-section {
  background: var(--mist);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.95fr 0.72fr;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.pricing-copy {
  max-width: 650px;
}

.pricing-copy > p:nth-of-type(2) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.pricing-card {
  max-width: 500px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 95% 5%, rgba(254, 66, 180, 0.5), transparent 28%),
    #202323;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(36, 36, 36, 0.2);
}

.billing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.billing-toggle button {
  min-height: 43px;
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle button.is-active {
  color: var(--ink);
  background: #fff;
}

.billing-toggle button span {
  margin-left: 4px;
  color: var(--pink);
}

.plan-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
}

.plan-label span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.plan-label em {
  padding: 7px 9px;
  color: var(--lime);
  background: rgba(217, 255, 113, 0.1);
  border-radius: 8px;
  font-size: 8px;
  font-style: normal;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 13px;
  margin-top: 22px;
}

.price-row > strong {
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.price-row > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 8px;
  color: var(--pink);
  font-size: 17px;
  font-weight: 800;
}

.price-row small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
}

.price-detail {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.price-zero {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.price-zero > span {
  color: var(--lime);
  font-size: 27px;
  font-weight: 800;
}

.price-zero p {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.price-zero strong {
  font-size: 10px;
}

.price-zero small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
}

.pricing-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  margin-top: 20px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--pink);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pricing-button:hover {
  background: #fff;
  transform: translateY(-2px);
}

.pricing-note {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #f7e7f5;
}

.final-cta > img {
  position: absolute;
  top: 50%;
  right: -5%;
  width: min(82vw, 1180px);
  max-width: none;
  height: auto;
  mix-blend-mode: multiply;
  transform: translateY(-50%);
}

.final-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f7e7f5 0%, rgba(247, 231, 245, 0.96) 32%, rgba(247, 231, 245, 0.18) 72%, transparent);
}

.final-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 760px;
}

.final-inner > * {
  position: relative;
  z-index: 2;
}

.final-inner h2 {
  max-width: 800px;
  font-family: var(--font-display);
  font-size: clamp(74px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.final-inner > p:nth-of-type(2) {
  max-width: 540px;
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.6;
}

.final-inner .button {
  margin-top: 30px;
}

.site-footer {
  padding: 85px 0 30px;
  color: #fff;
  background: #1f2222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 1fr;
  gap: 55px;
}

.brand-footer .brand-mark {
  background: #fff;
  color: var(--ink);
}

.footer-grid > div:first-child > p {
  max-width: 310px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
}

.footer-links > span,
.footer-action > span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-action > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--pink);
  border-radius: 13px;
  font-size: 10px;
  font-weight: 800;
}

.footer-action > a:hover {
  background: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 75px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 9px;
}

/* Readable UI copy: large editorial headlines intentionally keep their scale. */
.eyebrow,
.hero-kicker,
.hero-float-card small,
.hero-float-card time,
.hero-float-card strong,
.hero-facts small,
.feature-card p,
.mini-invoice small,
.mini-invoice strong em,
.mini-invoice b,
.batch-art b,
.checkout-head strong,
.checkout-head small,
.checkout-order,
.checkout-total small,
.checkout-network small,
.checkout-network strong,
.checkout-network em,
.checkout-action,
.checkout-help,
.payout-window small,
.payout-window em,
.payout-window button,
.dashboard-shell small,
.dashboard-shell button,
.dashboard-shell em,
.transaction-table,
.bridge-widget small,
.bridge-widget strong,
.bridge-widget span,
.bridge-widget button,
.team-widget-head strong,
.team-widget-head button,
.team-person b,
.team-person small,
.team-person em,
.approval-line > span,
.documents-panel small,
.documents-panel em,
.documents-panel button,
.agent-card small,
.agent-card em,
.agent-event,
.agent-features,
.plan-label,
.price-row small,
.price-detail,
.price-zero strong,
.price-zero small,
.pricing-button,
.pricing-note,
.footer-grid > div:first-child > p,
.footer-links,
.footer-links > span,
.footer-action > span,
.footer-action > a,
.footer-bottom {
  font-size: 13px !important;
}

.mini-invoice small,
.checkout-help,
.team-person small,
.team-person em,
.price-row small,
.price-detail,
.price-zero small,
.pricing-note,
.footer-links > span,
.footer-action > span,
.footer-bottom {
  font-size: 12px !important;
}

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .reveal-delay { transition-delay: 0.13s; }
.js .reveal-step-1 { transition-delay: 0.08s; }
.js .reveal-step-2 { transition-delay: 0.16s; }
.js .reveal-step-3 { transition-delay: 0.24s; }

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .brand-name {
    display: none;
  }

  .main-nav a {
    padding-inline: 12px;
    font-size: 11px;
  }

  .header-actions {
    gap: 10px;
  }

  .hero h1 {
    font-size: clamp(80px, 9vw, 104px);
  }

  .hero-art {
    right: -245px;
    width: 1120px;
  }

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

  .feature-card {
    min-height: 390px;
  }

  .split-layout,
  .split-layout-reverse {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
  }

  .dashboard-content {
    grid-template-columns: 1.4fr 0.8fr;
  }

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

  .paperwork-layout {
    gap: 32px;
  }
}

@media (max-width: 940px) {
  .shell {
    width: min(100% - 40px, 760px);
  }

  .section-pad {
    padding-block: 105px;
  }

  .site-header {
    min-height: 72px;
    padding: 11px 18px;
  }

  .site-header .brand-name {
    display: inline;
  }

  .nav-pill {
    position: fixed;
    inset: 0;
    z-index: 102;
    display: grid;
    place-items: center;
    padding: 80px 24px;
    background: rgba(241, 245, 245, 0.98);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(20px);
  }

  .site-header.menu-open .nav-pill {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav {
    flex-direction: column;
    width: min(420px, 100%);
  }

  .main-nav a {
    width: 100%;
    padding: 14px 18px;
    font-size: 23px;
    text-align: center;
  }

  .main-nav .nav-cta {
    margin-top: 18px;
    padding-block: 18px;
    font-size: 14px;
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 103;
    display: block;
    justify-self: end;
  }

  .site-header.menu-open .menu-button i:first-of-type {
    top: 24px;
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-button i:last-of-type {
    top: 24px;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: 1040px;
  }

  .hero-inner {
    min-height: 1040px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(70px, 11.2vw, 92px);
  }

  .hero-art {
    top: 120px;
    right: -310px;
    width: 1050px;
    opacity: 0.88;
  }

  .hero-lead,
  .hero-buttons {
    position: relative;
    z-index: 6;
  }

  .hero-lead {
    max-width: 530px;
    margin-top: 350px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    backdrop-filter: blur(16px);
  }

  .hero-float-card {
    top: 590px;
    right: 12px;
    bottom: auto;
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    bottom: 20px;
  }

  .hero-facts > div {
    min-height: 64px;
    padding: 12px;
    border-bottom: 1px solid rgba(36, 36, 36, 0.14);
  }

  .hero-facts > div:first-child {
    padding-left: 12px;
  }

  .hero-facts > div:nth-child(2) {
    border-right: 0;
  }

  .split-layout,
  .split-layout-reverse {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .split-copy {
    max-width: 680px;
  }

  .split-layout-reverse .payout-stage {
    order: 2;
  }

  .invoice-stage,
  .payout-stage {
    min-height: 650px;
  }

  .dashboard-shell {
    grid-template-columns: 52px 1fr;
  }

  .dashboard-stats {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-stats article:last-child {
    grid-column: 1 / -1;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .balance-card ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .balance-card li {
    grid-template-columns: auto 1fr;
    padding: 10px;
    background: var(--mist);
    border: 0;
    border-radius: 10px;
  }

  .balance-card li > strong {
    grid-column: 1 / -1;
  }

  .freedom-grid,
  .control-grid,
  .paperwork-layout,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .freedom-card {
    min-height: 590px;
  }

  .control-grid {
    gap: 18px;
  }

  .bridge-card-large,
  .team-card-large {
    min-height: 700px;
  }

  .agent-card {
    width: 190px;
  }

  .agent-card-one { left: 3%; }
  .agent-card-three { right: 3%; }

  .agent-code {
    right: 12px;
    width: 235px;
  }

  .paperwork-poster h2 {
    font-size: 112px;
  }

  .documents-panel,
  .pricing-card {
    width: 100%;
    max-width: none;
  }

  .pricing-layout {
    gap: 60px;
  }

  .final-cta > img {
    right: -42%;
    width: 1300px;
  }

  .final-inner h2 {
    max-width: 690px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

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

  .footer-action > a {
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 28px);
  }

  .section-pad {
    padding-block: 82px;
  }

  .section-heading h2,
  .operations-title h2,
  .split-copy h2,
  .pricing-copy h2 {
    font-size: 42px;
  }

  .section-heading > p:last-child,
  .operations-title > p:last-child {
    margin-top: 18px;
    font-size: 15px;
  }

  .site-header {
    min-height: 66px;
    padding: 9px 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 13px;
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 1180px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    min-height: 1180px;
  }

  .hero-copy {
    padding-top: 103px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(48px, 13.4vw, 60px);
    line-height: 0.89;
  }

  .hero h1 span:nth-child(3)::after {
    right: -6px;
    bottom: -22px;
    width: 44px;
    height: 12px;
  }

  .hero-art {
    top: 238px;
    right: -515px;
    width: 1050px;
    opacity: 1;
  }

  .hero-lead {
    margin-top: 475px;
    padding: 15px;
    font-size: 15px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 13px;
  }

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

  .hero-float-card {
    top: 660px;
    right: 2px;
    width: 280px;
  }

  .hero-facts {
    bottom: 15px;
  }

  .hero-facts > div {
    padding: 10px;
  }

  .hero-facts strong {
    font-size: 11px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .feature-card {
    min-height: 370px;
  }

  .split-lead {
    font-size: 15px;
  }

  .invoice-stage,
  .payout-stage {
    min-height: 590px;
    border-radius: 24px;
  }

  .checkout-card {
    width: calc(100% - 32px);
    padding: 18px;
  }

  .checkout-total strong {
    font-size: 40px;
  }

  .chain-pill-eth {
    top: 20px;
    right: 15px;
  }

  .chain-pill-tron {
    bottom: 20px;
    left: 13px;
  }

  .payment-route {
    display: none;
  }

  .payout-word {
    top: 40px;
    font-size: 125px;
  }

  .payout-window {
    width: calc(100% - 28px);
  }

  .payout-summary {
    padding-inline: 13px;
  }

  .payout-list {
    padding-inline: 13px;
  }

  .payout-list > div {
    grid-template-columns: auto 1fr auto;
  }

  .payout-list > div small,
  .payout-list > div em {
    display: none;
  }

  .payout-list > div strong {
    justify-self: end;
  }

  .fee-chip {
    right: 10px;
    bottom: 28px;
  }

  .dashboard-shell {
    display: block;
    margin-top: 46px;
    border-radius: 18px;
  }

  .dashboard-sidebar {
    flex-direction: row;
    min-height: 52px;
    padding: 9px 12px;
  }

  .dashboard-sidebar nav {
    display: flex;
    margin: 0 0 0 auto;
  }

  .dashboard-sidebar nav i:nth-child(n+4) {
    display: none;
  }

  .dashboard-avatar {
    display: none;
  }

  .dashboard-main {
    padding: 12px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-stats article:last-child {
    grid-column: auto;
  }

  .chart-card svg {
    height: 155px;
  }

  .balance-card ul {
    grid-template-columns: 1fr;
  }

  .transaction-row {
    grid-template-columns: 1fr 1fr auto;
  }

  .transaction-row > *:nth-child(2),
  .transaction-row > *:nth-child(3) {
    display: none;
  }

  .transaction-row > *:nth-child(4) {
    justify-self: end;
  }

  .transaction-row > *:nth-child(5) {
    margin-left: 8px;
  }

  .operations-points,
  .agent-features {
    grid-template-columns: 1fr;
  }

  .operations-points span,
  .agent-features span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .agent-features span {
    border-bottom-color: rgba(255, 255, 255, 0.13);
  }

  .operations-points span:last-child,
  .agent-features span:last-child {
    border-bottom: 0;
  }

  .freedom-card {
    min-height: 570px;
    padding: 28px;
    border-radius: 24px;
  }

  .freedom-card h2 {
    font-size: 42px;
  }

  .speed-visual strong {
    font-size: 82px;
  }

  .fee-marquee {
    margin-top: 78px;
  }

  .fee-marquee > div {
    min-height: 74px;
  }

  .fee-marquee span {
    font-size: 29px;
  }

  .bridge-card-large,
  .team-card-large {
    min-height: 650px;
    padding: 24px;
    border-radius: 24px;
  }

  .control-card-copy h3 {
    font-size: 31px;
  }

  .bridge-widget {
    right: 14px;
    bottom: -48px;
    left: 14px;
    padding: 16px;
  }

  .bridge-field {
    padding: 12px;
  }

  .bridge-field > span strong {
    font-size: 16px;
  }

  .team-widget {
    right: 12px;
    left: 12px;
  }

  .team-person em {
    max-width: 92px;
    text-align: right;
  }

  .agents-heading h2 {
    font-size: 62px;
  }

  .agents-heading > p:last-child {
    font-size: 15px;
  }

  .agent-flow {
    min-height: 700px;
    margin-top: 45px;
  }

  .agent-flow > svg {
    display: none;
  }

  .agent-card {
    right: 18px;
    left: 18px;
    width: auto;
    transform: none;
  }

  .agent-card-one { top: 40px; }
  .agent-card-two { top: 135px; }
  .agent-card-three { top: 230px; }

  .agent-event {
    top: 338px;
    bottom: auto;
    gap: 12px;
    width: calc(100% - 36px);
    justify-content: space-between;
  }

  .agent-code {
    right: 18px;
    bottom: 38px;
    width: calc(100% - 36px);
    transform: none;
  }

  .paperwork-poster {
    min-height: 520px;
    padding: 50px 24px;
  }

  .paperwork-poster h2 {
    font-size: clamp(67px, 20vw, 90px);
  }

  .paperwork-poster h2 strong {
    transform: none;
  }

  .paperwork-poster p {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .poster-sticker-two {
    right: 30px;
    bottom: 130px;
  }

  .documents-panel {
    padding: 14px;
  }

  .documents-filters {
    flex-wrap: wrap;
  }

  .document-item em {
    display: none;
  }

  .pricing-card {
    padding: 20px;
    border-radius: 23px;
  }

  .billing-toggle button {
    font-size: 8px;
  }

  .price-row > strong {
    font-size: 90px;
  }

  .final-cta {
    min-height: 900px;
  }

  .final-cta > img {
    top: 38%;
    right: -660px;
    width: 1100px;
  }

  .final-shade {
    background: linear-gradient(180deg, rgba(247, 231, 245, 0.98) 0%, rgba(247, 231, 245, 0.62) 60%, rgba(247, 231, 245, 0.95) 100%);
  }

  .final-inner {
    justify-content: flex-start;
    min-height: 900px;
    padding-top: 78px;
  }

  .final-inner h2 {
    font-size: 63px;
  }

  .final-inner > p:nth-of-type(2) {
    margin-top: 455px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 15px;
    font-size: 15px;
    backdrop-filter: blur(15px);
  }

  .final-inner .button {
    width: 100%;
    margin-top: 14px;
  }

  .site-footer {
    padding-top: 60px;
  }

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

  .footer-grid > div:first-child,
  .footer-action {
    grid-column: 1 / -1;
  }

  .footer-action > a {
    max-width: none;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 14px;
    margin-top: 50px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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