:root {
  --ip-bg: #fbfaf7;
  --ip-band: #edf4f1;
  --ip-ink: #0a1220;
  --ip-copy: #475467;
  --ip-muted: #7a8599;
  --ip-line: rgba(10, 18, 32, 0.1);
  --ip-line-strong: rgba(10, 18, 32, 0.16);
  --ip-teal: #164756;
  --ip-mint: #1ddbb7;
  --ip-green: #345123;
  --ip-amber: #c58a35;
  --ip-red: #c65345;
  --ip-blue: #2f6f94;
  --ip-white: #ffffff;
}

body[data-page="inpay"] {
  background: var(--ip-bg);
}

.ip-hero,
.ip-stats,
.ip-capabilities,
.ip-flow,
.ip-cta {
  padding-top: 56px;
  padding-bottom: 56px;
}

.ip-hero {
  padding-top: 132px;
  padding-bottom: 86px;
}

.ip-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.ip-crumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ip-muted);
}

.ip-crumbs a {
  color: inherit;
  transition: color .2s ease;
}

.ip-crumbs a:hover {
  color: var(--ip-teal);
}

.ip-crumbs .dash {
  width: 18px;
  height: 1px;
  background: var(--ip-line-strong);
}

.ip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ip-teal);
}

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

.ip-hero__title {
  max-width: 11ch;
  margin: 0;
  font-family: var(--f-display);
  font-size: 7rem;
  line-height: .94;
  letter-spacing: 0;
  color: var(--ip-ink);
}

.ip-hero__lede {
  max-width: 54ch;
  margin-top: 28px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ip-copy);
}

.ip-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.ip-hero__visual {
  --ip-tilt-rx: 0deg;
  --ip-tilt-ry: 0deg;
  --ip-tilt-x: 0px;
  --ip-tilt-y: 0px;
  --ip-pointer-x: 50%;
  --ip-pointer-y: 50%;
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 32, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 219, 183, .16), transparent 34%),
    linear-gradient(225deg, rgba(197, 138, 53, .13), transparent 32%),
    linear-gradient(135deg, #f4f8f7, #ffffff 68%);
  perspective: 1100px;
  isolation: isolate;
}

.ip-hero__visual[data-ip-tilt] {
  overflow: visible;
}

.ip-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(10, 18, 32, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 18, 32, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
  border-radius: inherit;
}

.ip-hero__visual[data-ip-tilt]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: radial-gradient(circle at var(--ip-pointer-x) var(--ip-pointer-y), rgba(255, 255, 255, .44), transparent 44%);
  opacity: .48;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity .2s ease;
}

.ip-hero__visual[data-ip-tilt].is-pointer-active::after {
  opacity: .72;
}

.ip-ledger {
  position: relative;
  z-index: 2;
  width: min(560px, 84%);
  padding: 18px;
  border: 1px solid rgba(10, 18, 32, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 34px 80px rgba(10, 18, 32, .14);
  transform:
    translate3d(var(--ip-tilt-x), var(--ip-tilt-y), 0)
    rotateX(var(--ip-tilt-rx))
    rotateY(var(--ip-tilt-ry));
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  transition: box-shadow .24s ease;
  will-change: transform;
}

.ip-hero__visual.is-pointer-active .ip-ledger {
  box-shadow: 0 42px 90px rgba(10, 18, 32, .18);
}

.ip-ledger::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(29, 219, 183, .18);
  border-radius: 6px;
  pointer-events: none;
  animation: ipAuditPulse 4.5s ease-in-out infinite;
}

.ip-ledger__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ip-line);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ip-muted);
}

.ip-ledger__top img {
  width: 134px;
  height: auto;
}

.ip-ledger__summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.ip-ledger__summary article,
.ip-alert,
.ip-invoice {
  border: 1px solid var(--ip-line);
  border-radius: 8px;
  background: rgba(251, 250, 247, .86);
}

.ip-ledger__summary article {
  min-height: 112px;
  padding: 14px;
  overflow: hidden;
}

.ip-ledger__summary span,
.ip-alert span,
.ip-invoice span {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ip-muted);
}

.ip-ledger__summary strong {
  display: block;
  margin-top: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ip-ink);
}

.ip-ledger__summary i {
  position: relative;
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(29, 219, 183, .12);
}

.ip-ledger__summary i::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(29, 219, 183, .98), rgba(29, 219, 183, .42), rgba(255, 255, 255, .72), rgba(29, 219, 183, .18));
  background-size: 220% 100%;
  animation: ipProgressFlow 2.9s ease-in-out infinite;
}

.ip-ledger__summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ip-mint);
  box-shadow: 0 0 0 6px rgba(29, 219, 183, .12);
  transform: translate3d(-10px, -50%, 0);
  animation: ipProgressDot 2.9s ease-in-out infinite;
}

.ip-ledger__summary .is-alert i {
  background: rgba(198, 83, 69, .12);
}

.ip-ledger__summary .is-alert i::before {
  background: linear-gradient(90deg, rgba(198, 83, 69, .94), rgba(198, 83, 69, .42), rgba(255, 255, 255, .68), rgba(198, 83, 69, .16));
}

.ip-ledger__summary .is-alert i::after {
  background: var(--ip-red);
  box-shadow: 0 0 0 6px rgba(198, 83, 69, .12);
}

.ip-ledger__flow {
  position: relative;
  z-index: 2;
  height: 206px;
  margin-top: 16px;
  border: 1px solid var(--ip-line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(22, 71, 86, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 71, 86, .05) 1px, transparent 1px),
    rgba(255, 255, 255, .56);
  background-size: 36px 36px;
}

.ip-flow-node {
  position: absolute;
  width: 136px;
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(10, 18, 32, .11);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 34px rgba(10, 18, 32, .08);
}

.ip-flow-node::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ip-mint);
  box-shadow: 0 0 0 0 rgba(29, 219, 183, .22);
  animation: ipNodePulse 2.6s ease-in-out infinite;
}

.ip-flow-node--dealer::after {
  animation-delay: .35s;
}

.ip-flow-node--broker::after {
  animation-delay: .7s;
}

.ip-flow-node span {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ip-muted);
}

.ip-flow-node strong {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ip-teal);
}

.ip-flow-node--brand {
  left: 22px;
  top: 28px;
}

.ip-flow-node--dealer {
  left: 50%;
  top: 104px;
  transform: translateX(-50%);
}

.ip-flow-node--broker {
  right: 22px;
  top: 28px;
}

.ip-flow-line {
  --ip-flow-distance: 142px;
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(29, 219, 183, .1), var(--ip-mint), rgba(29, 219, 183, .1));
  transform-origin: left center;
  overflow: visible;
}

.ip-flow-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ip-mint);
  box-shadow: 0 0 0 6px rgba(29, 219, 183, .1), 0 0 22px rgba(29, 219, 183, .42);
  transform: translate3d(-4px, -50%, 0);
  animation: ipFlowPacket 2.4s ease-in-out infinite;
}

.ip-flow-line::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ip-mint);
  box-shadow: 0 0 0 6px rgba(29, 219, 183, .12);
}

.ip-flow-line--one {
  left: 150px;
  top: 96px;
  width: 142px;
  transform: rotate(24deg);
}

.ip-flow-line--two {
  right: 150px;
  top: 154px;
  width: 142px;
  transform: rotate(-24deg);
}

.ip-flow-line--two::before {
  animation-delay: .55s;
}

.ip-ledger__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 12px;
  margin-top: 16px;
}

.ip-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.ip-alert img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.ip-alert strong,
.ip-invoice strong {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ip-ink);
}

.ip-invoice {
  padding: 14px;
}

.ip-hero__ticker {
  --ip-ticker-glow-x: 50%;
  --ip-ticker-glow-y: 50%;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto;
  isolation: isolate;
  transform: translate3d(var(--ip-tilt-x), var(--ip-tilt-y), 0);
  will-change: transform;
}

.ip-hero__ticker::before {
  content: "";
  position: absolute;
  inset: -14px -18px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at var(--ip-ticker-glow-x) var(--ip-ticker-glow-y), rgba(29, 219, 183, .28), transparent 48%),
    rgba(255, 255, 255, .38);
  border: 1px solid rgba(22, 71, 86, .08);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .22s ease, transform .22s ease;
  backdrop-filter: blur(10px);
}

.ip-hero__ticker.is-pointer-active::before {
  opacity: 1;
  transform: scale(1);
}

.ip-hero__ticker span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(22, 71, 86, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ip-teal);
  box-shadow: 0 10px 24px rgba(10, 18, 32, .06);
  transform: translate3d(0, 0, 0) scale(1);
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  will-change: transform;
}

.ip-hero__ticker.is-pointer-active span {
  border-color: rgba(29, 219, 183, .3);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 32px rgba(10, 18, 32, .1);
}

.ip-coin-particle {
  position: absolute;
  left: var(--coin-x, 50%);
  top: var(--coin-y, 50%);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(var(--scale, 1));
  animation: ipCoinBurst var(--dur, 1300ms) cubic-bezier(.18, .88, .2, 1.08) forwards;
  will-change: transform, opacity;
}

.ip-coin-particle img {
  width: var(--size, 42px);
  height: var(--size, 42px);
  display: block;
  object-fit: contain;
  transform: rotate(var(--rot, 0deg));
  animation: ipCoinSpin var(--dur, 1300ms) cubic-bezier(.18, .88, .2, 1) forwards;
  filter: drop-shadow(0 12px 18px rgba(94, 64, 14, .18)) drop-shadow(0 2px 4px rgba(255, 207, 76, .18));
}

.ip-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.ip-stat {
  min-height: 168px;
  padding: 28px;
  border: 1px solid var(--ip-line);
  background: white;
}

.ip-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ip-teal);
}

.ip-stat span {
  display: block;
  max-width: 22ch;
  margin-top: 18px;
  line-height: 1.5;
  color: var(--ip-copy);
}

.ip-problem {
  margin-top: 56px;
  min-height: 300svh;
  padding: 0;
  background: var(--ip-teal);
  color: white;
}

.ip-problem .ip-eyebrow {
  color: rgba(255, 255, 255, .72);
}

.ip-problem .ip-eyebrow::before {
  background: var(--ip-mint);
}

.ip-problem__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: clamp(92px, 12vh, 140px);
  padding-bottom: clamp(72px, 10vh, 112px);
}

.ip-problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 860px) minmax(280px, 380px);
  gap: clamp(56px, 8vw, 128px);
  align-items: center;
}

.ip-problem__content {
  max-width: 780px;
}

.ip-section-head h2,
.ip-cta h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--f-display);
  font-size: 4.9rem;
  line-height: .98;
  letter-spacing: 0;
  color: inherit;
}

.ip-problem .ip-section-head h2 {
  max-width: 20ch;
}

.ip-section-head--wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}

.ip-section-head--wide h2 {
  max-width: 18ch;
}

.ip-section-head--wide > p {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ip-copy);
}

.ip-problem__copy p {
  max-width: 70ch;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, .74);
}

.ip-problem__visual {
  position: relative;
  min-height: clamp(280px, 36vw, 440px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.ip-problem__visual::before,
.ip-problem__visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.72);
}

.ip-problem__visual::before {
  z-index: 0;
  width: min(92%, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(29, 219, 183, .42);
  box-shadow:
    0 0 0 28px rgba(29, 219, 183, .045),
    0 0 0 88px rgba(29, 219, 183, .025);
  opacity: .5;
  animation: ipProblemRings 3.8s ease-in-out infinite;
}

.ip-problem__visual::after {
  z-index: 1;
  width: min(68%, 300px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(29, 219, 183, .18) 0%, rgba(29, 219, 183, .08) 42%, rgba(29, 219, 183, 0) 72%);
  opacity: .64;
  animation: ipProblemGlow 4.4s ease-in-out infinite;
}

.ip-problem__image {
  position: absolute;
  z-index: 2;
  width: min(100%, 340px);
  height: auto;
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(.92) rotate(-2deg);
  transform-origin: 50% 56%;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .16));
  transition:
    opacity .28s ease,
    transform .72s cubic-bezier(.2,.85,.25,1),
    filter .42s ease;
}

.ip-problem__image.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: drop-shadow(0 36px 40px rgba(0, 0, 0, .18));
}

.ip-problem__particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}

.ip-problem__particle {
  position: absolute;
  width: var(--particle-size, 48px);
  height: var(--particle-size, 48px);
  opacity: 0;
  transform: translate3d(var(--particle-x, 0), var(--particle-y, 0), 0) scale(.72) rotate(var(--particle-rot, 0deg));
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .16));
}

.ip-problem__particle--bad-a {
  --particle-size: 48px;
  --particle-x: -92px;
  --particle-y: -8px;
  --particle-rot: -8deg;
  left: 34%;
  top: 31%;
}

.ip-problem__particle--bad-b {
  --particle-size: 36px;
  --particle-x: 62px;
  --particle-y: -48px;
  --particle-rot: 7deg;
  left: 45%;
  top: 27%;
}

.ip-problem__particle--bad-c {
  --particle-size: 28px;
  --particle-x: 116px;
  --particle-y: -56px;
  --particle-rot: -4deg;
  left: 49%;
  top: 32%;
}

.ip-problem__particle--good-a {
  --particle-size: 54px;
  --particle-x: -118px;
  --particle-y: -30px;
  --particle-rot: -8deg;
  left: 38%;
  top: 31%;
}

.ip-problem__particle--good-b {
  --particle-size: 58px;
  --particle-x: 78px;
  --particle-y: -102px;
  --particle-rot: 5deg;
  left: 48%;
  top: 29%;
}

.ip-problem__particle--good-c {
  --particle-size: 32px;
  --particle-x: -14px;
  --particle-y: -124px;
  --particle-rot: 12deg;
  left: 47%;
  top: 33%;
}

.ip-problem[data-ip-problem-step="1"] .ip-problem__particles--bad,
.ip-problem[data-ip-problem-step="2"] .ip-problem__particles--good {
  opacity: 1;
}

.ip-problem[data-ip-problem-step="1"] .ip-problem__particles--bad .ip-problem__particle,
.ip-problem[data-ip-problem-step="2"] .ip-problem__particles--good .ip-problem__particle {
  animation: ipProblemParticle 3s ease-in-out infinite;
}

.ip-problem[data-ip-problem-step="1"] .ip-problem__particle--bad-b,
.ip-problem[data-ip-problem-step="2"] .ip-problem__particle--good-b {
  animation-delay: .28s;
}

.ip-problem[data-ip-problem-step="1"] .ip-problem__particle--bad-c,
.ip-problem[data-ip-problem-step="2"] .ip-problem__particle--good-c {
  animation-delay: .56s;
}

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

.ip-capability {
  position: relative;
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--ip-line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.ip-capability__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(22, 71, 86, .16);
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ip-teal);
}

.ip-capability__visual {
  position: relative;
  height: 232px;
  margin: 26px 0 24px;
  border: 1px solid var(--ip-line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(10, 18, 32, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 18, 32, .045) 1px, transparent 1px),
    #fbfaf7;
  background-size: 34px 34px;
  overflow: hidden;
}

.ip-capability h3 {
  max-width: 17ch;
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ip-ink);
}

.ip-capability p {
  margin-top: 16px;
  line-height: 1.6;
  color: var(--ip-copy);
}

.ip-split {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 112px;
  height: 52px;
  border: 1px solid rgba(10, 18, 32, .12);
  border-radius: 8px;
  background: white;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ip-teal);
  box-shadow: 0 14px 30px rgba(10, 18, 32, .08);
}

.ip-split--brand {
  left: 24px;
  top: 30px;
}

.ip-split--dealer {
  right: 24px;
  top: 30px;
}

.ip-split--broker {
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
}

.ip-split-routes {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ip-split-route {
  fill: none;
  stroke: rgba(29, 219, 183, .82);
  stroke-width: 2.4;
  stroke-dasharray: 9 12;
  stroke-linecap: round;
}

.ip-split-route-dot {
  fill: var(--ip-mint);
  filter: drop-shadow(0 0 8px rgba(29, 219, 183, .48));
}

.ip-capability__visual--split strong {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 92px;
  transform: translateX(-50%);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(29, 219, 183, .12);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ip-teal);
}

.ip-warning-card {
  position: absolute;
  left: 50%;
  top: 48px;
  z-index: 4;
  transform: translateX(-50%);
  width: 112px;
  min-height: 68px;
  padding: 9px 10px;
  border: 1px solid rgba(198, 83, 69, .24);
  border-radius: 8px;
  background: white;
  text-align: center;
  box-shadow: 0 18px 34px rgba(198, 83, 69, .12);
}

.ip-warning-card span {
  font-family: var(--f-mono);
  font-size: 7px;
  text-transform: uppercase;
  color: var(--ip-red);
}

.ip-warning-card strong {
  display: block;
  margin-top: 5px;
  font-family: var(--f-display);
  font-size: 1.85rem;
  line-height: .9;
  letter-spacing: 0;
  color: var(--ip-ink);
}

.ip-warning-card i {
  display: block;
  width: 72%;
  height: 4px;
  margin: 9px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ip-red), rgba(198, 83, 69, .12));
  animation: ipRisk 2.4s ease-in-out infinite;
}

.ip-warning-pulse {
  position: absolute;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ip-mint);
  opacity: .72;
  box-shadow:
    0 0 0 7px rgba(29, 219, 183, .12),
    0 0 18px rgba(29, 219, 183, .36);
  animation: ipWarningPulse 4.2s ease-in-out infinite;
}

.ip-warning-pulse--a {
  left: 78px;
  top: 66px;
  --ip-warning-x: 20px;
  --ip-warning-y: -12px;
}

.ip-warning-pulse--b {
  right: 80px;
  top: 92px;
  width: 14px;
  height: 14px;
  --ip-warning-x: -22px;
  --ip-warning-y: 14px;
  animation-delay: .45s;
}

.ip-warning-pulse--c {
  left: 116px;
  bottom: 58px;
  width: 8px;
  height: 8px;
  --ip-warning-x: 18px;
  --ip-warning-y: -20px;
  animation-delay: .9s;
}

.ip-warning-pulse--d {
  right: 120px;
  bottom: 70px;
  width: 9px;
  height: 9px;
  --ip-warning-x: -14px;
  --ip-warning-y: -18px;
  animation-delay: 1.25s;
}

.ip-warning-actions {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ip-warning-actions span,
.ip-treasury-tags span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(10, 18, 32, .1);
  border-radius: 999px;
  background: white;
  font-family: var(--f-mono);
  font-size: 9px;
  text-transform: uppercase;
  color: var(--ip-muted);
}

.ip-bars {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 36px;
  bottom: 72px;
  display: grid;
  grid-template-columns: repeat(5, 32px);
  justify-content: center;
  align-items: end;
  gap: 18px;
}

.ip-bars i {
  display: block;
  height: var(--h);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--ip-mint), var(--ip-teal));
  animation: ipBars 3.6s ease-in-out infinite;
}

.ip-bars i:nth-child(2) {
  animation-delay: .2s;
}

.ip-bars i:nth-child(3) {
  background: linear-gradient(180deg, var(--ip-amber), rgba(197, 138, 53, .32));
  animation-delay: .4s;
}

.ip-bars i:nth-child(4) {
  animation-delay: .1s;
}

.ip-bars i:nth-child(5) {
  background: linear-gradient(180deg, var(--ip-blue), rgba(47, 111, 148, .35));
  animation-delay: .3s;
}

.ip-treasury-tags {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ip-treasury-dot {
  position: absolute;
  z-index: 3;
  left: 16.666%;
  bottom: 62px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ip-mint);
  box-shadow:
    0 0 0 6px rgba(29, 219, 183, .13),
    0 0 18px rgba(29, 219, 183, .42);
  animation: ipTreasuryDot 3.8s cubic-bezier(.42, 0, .2, 1) infinite;
}

.ip-flow {
  padding-top: 84px;
}

.ip-flow .ip-section-head {
  margin-bottom: 42px;
}

.ip-flow .ip-section-head h2 {
  max-width: 19ch;
}

.ip-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ip-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ip-line);
}

.ip-flow-steps article {
  position: relative;
  min-height: 330px;
  padding: 34px 28px 30px;
  overflow: hidden;
  background: white;
  color: var(--ip-ink);
  isolation: isolate;
  transition: color .36s ease;
}

.ip-flow-card-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background: var(--ip-ink);
  transform: translateY(100%);
  transition: transform .7s cubic-bezier(.2, .85, .25, 1);
}

.ip-flow-steps article:hover .ip-flow-card-bg {
  transform: translateY(0);
}

.ip-flow-steps article:hover {
  color: white;
}

.ip-flow-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 58px;
}

.ip-flow-step-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ip-mint);
  transition: color .36s ease;
}

.ip-flow-card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: rgba(10, 18, 32, .78);
  opacity: .9;
  transition: color .36s ease, transform .5s cubic-bezier(.2, .85, .25, 1), opacity .36s ease;
}

.ip-flow-card-icon svg,
.ip-flow-card-icon img {
  width: 50%;
  height: 50%;
  display: block;
}

.ip-flow-card-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ip-flow-card-icon img {
  object-fit: contain;
  transition: filter .36s ease;
}

.ip-flow-steps article:hover .ip-flow-card-icon {
  color: rgba(255, 255, 255, .82);
  opacity: 1;
  transform: rotate(-12deg) scale(1.1);
}

.ip-flow-steps article:hover .ip-flow-card-icon img {
  filter: invert(1) brightness(2);
}

.ip-flow-steps strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 10ch;
  margin-top: 88px;
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 2.7vw, 3.25rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: 0;
  color: var(--ip-ink);
  transition: color .36s ease, transform .5s cubic-bezier(.2, .85, .25, 1);
}

.ip-flow-steps p {
  position: relative;
  z-index: 1;
  max-width: 25ch;
  margin-top: 18px;
  font-size: .98rem;
  line-height: 1.48;
  color: var(--ip-copy);
  transition: color .36s ease, transform .5s cubic-bezier(.2, .85, .25, 1);
}

.ip-flow-steps article:hover strong {
  color: white;
  transform: translateY(-4px);
}

.ip-flow-steps article:hover p {
  color: rgba(255, 255, 255, .64);
  transform: translateY(-4px);
}

.ip-quote {
  margin-top: 56px;
  padding: 86px 0;
  background: var(--ip-band);
}

.ip-quote blockquote {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.ip-quote span {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ip-muted);
}

.ip-quote p {
  margin: 18px 0 0;
  font-family: var(--f-display);
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ip-teal);
}

.ip-typewriter.is-writing {
  min-height: 3em;
}

.ip-quote .ip-typewriter__text,
.ip-quote .ip-typewriter__cursor {
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: inherit;
}

.ip-typewriter__cursor {
  display: inline-block;
  width: .055em;
  height: .72em;
  margin-left: .08em;
  border-radius: 999px;
  background: currentColor;
  opacity: .78;
  transform: translateY(.08em);
  animation: ipTypeCursor .78s steps(2, end) infinite;
}

.ip-typewriter.is-complete .ip-typewriter__cursor {
  opacity: 0;
  animation: none;
  transition: opacity .35s ease;
}

.ip-cta {
  padding-bottom: 92px;
}

.ip-cta__inner {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 72px 40px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 219, 183, .14), rgba(47, 111, 148, .12)),
    var(--ip-ink);
  color: white;
  text-align: center;
  isolation: isolate;
}

.ip-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 78%);
}

.ip-cta__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 219, 183, .8), transparent);
}

.ip-cta__inner > :not(.ip-cta__icons) {
  position: relative;
  z-index: 2;
}

.ip-cta__icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ip-cta__icon {
  position: absolute;
  display: block;
  width: var(--ip-cta-icon-size, 58px);
  height: var(--ip-cta-icon-size, 58px);
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: .05;
  transform:
    translate3d(var(--ip-cta-enter-x, 0), var(--ip-cta-enter-y, 0), 0)
    rotate(var(--ip-cta-rot, 0deg))
    scale(.78);
  transition:
    opacity .5s ease,
    transform .86s cubic-bezier(.16, 1, .3, 1);
}

.ip-cta__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(1.35);
}

.ip-cta__inner:hover .ip-cta__icon,
.ip-cta__inner:focus-within .ip-cta__icon {
  opacity: .72;
  transform:
    translate3d(0, 0, 0)
    rotate(var(--ip-cta-rot, 0deg))
    scale(1);
  animation: ipCtaIconFloat 7s ease-in-out infinite;
}

.ip-cta__inner:hover .ip-cta__icon:nth-child(2n),
.ip-cta__inner:focus-within .ip-cta__icon:nth-child(2n) {
  animation-duration: 8.2s;
}

.ip-cta__inner:hover .ip-cta__icon:nth-child(3n),
.ip-cta__inner:focus-within .ip-cta__icon:nth-child(3n) {
  animation-delay: -.7s;
}

.ip-cta__icon--one {
  left: 7%;
  top: 13%;
  --ip-cta-icon-size: 64px;
  --ip-cta-enter-x: -52px;
  --ip-cta-enter-y: -18px;
  --ip-cta-rot: -9deg;
}

.ip-cta__icon--two {
  left: 6%;
  bottom: 16%;
  --ip-cta-icon-size: 50px;
  --ip-cta-enter-x: -46px;
  --ip-cta-enter-y: 20px;
  --ip-cta-rot: 12deg;
}

.ip-cta__icon--three {
  left: 26%;
  top: 12%;
  --ip-cta-icon-size: 44px;
  --ip-cta-enter-y: -44px;
  --ip-cta-rot: 6deg;
}

.ip-cta__icon--four {
  right: 8%;
  top: 15%;
  --ip-cta-icon-size: 60px;
  --ip-cta-enter-x: 54px;
  --ip-cta-enter-y: -16px;
  --ip-cta-rot: 10deg;
}

.ip-cta__icon--five {
  right: 6%;
  bottom: 18%;
  --ip-cta-icon-size: 52px;
  --ip-cta-enter-x: 48px;
  --ip-cta-enter-y: 24px;
  --ip-cta-rot: -12deg;
}

.ip-cta__icon--six {
  right: 28%;
  bottom: 10%;
  --ip-cta-icon-size: 46px;
  --ip-cta-enter-y: 42px;
  --ip-cta-rot: -7deg;
}

.ip-cta__content {
  display: grid;
  justify-items: center;
}

.ip-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
}

.ip-cta__label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ip-mint);
}

.ip-cta h2 {
  max-width: 12ch;
  color: white;
}

.ip-cta p {
  max-width: 54ch;
  margin-top: 24px;
  color: rgba(255, 255, 255, .68);
}

.ip-cta__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.ip-cta .btn {
  background: white;
  color: var(--ip-ink);
}

.ip-cta .btn:hover {
  color: var(--ip-ink);
}

@keyframes ipAuditPulse {
  0%, 100% {
    opacity: .38;
    transform: scale(1);
  }
  50% {
    opacity: .76;
    transform: scale(.985);
  }
}

@keyframes ipProblemRings {
  0%, 100% {
    opacity: .38;
    transform: translate(-50%, -50%) scale(.76);
  }
  50% {
    opacity: .72;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes ipProblemGlow {
  0%, 100% {
    opacity: .38;
    transform: translate(-50%, -50%) scale(.88);
  }
  50% {
    opacity: .72;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes ipProblemParticle {
  0% {
    opacity: 0;
    transform: translate3d(calc(var(--particle-x, 0) * .62), calc(var(--particle-y, 0) * .62 + 12px), 0) scale(.68) rotate(var(--particle-rot, 0deg));
  }
  18% {
    opacity: 1;
    transform: translate3d(var(--particle-x, 0), var(--particle-y, 0), 0) scale(1) rotate(var(--particle-rot, 0deg));
  }
  68% {
    opacity: .92;
    transform: translate3d(var(--particle-x, 0), calc(var(--particle-y, 0) - 8px), 0) scale(.96) rotate(var(--particle-rot, 0deg));
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--particle-x, 0), calc(var(--particle-y, 0) - 24px), 0) scale(.72) rotate(var(--particle-rot, 0deg));
  }
}

@keyframes ipProgressFlow {
  0% {
    background-position: 0% 50%;
    transform: scaleX(.82);
    transform-origin: left center;
  }
  48% {
    background-position: 100% 50%;
    transform: scaleX(1);
  }
  100% {
    background-position: 0% 50%;
    transform: scaleX(.9);
  }
}

@keyframes ipProgressDot {
  0% {
    left: 0;
    opacity: 0;
    transform: translate3d(-10px, -50%, 0) scale(.72);
  }
  18% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: translate3d(10px, -50%, 0) scale(1);
  }
}

@keyframes ipFlowPacket {
  0% {
    opacity: 0;
    transform: translate3d(-4px, -50%, 0) scale(.72);
  }
  16% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--ip-flow-distance), -50%, 0) scale(1);
  }
}

@keyframes ipNodePulse {
  0%, 100% {
    opacity: .65;
    transform: scale(.82);
    box-shadow: 0 0 0 0 rgba(29, 219, 183, .2);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 9px rgba(29, 219, 183, 0);
  }
}

@keyframes ipCoinBurst {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(calc(var(--scale, 1) * .64));
  }
  13% {
    opacity: 1;
    transform: translate3d(calc(var(--dx, 0px) * .12), calc(var(--dy, 0px) * .12), 0) scale(calc(var(--scale, 1) * 1.04));
  }
  58% {
    opacity: 1;
    transform: translate3d(calc(var(--dx, 0px) * .68), calc(var(--dy, 0px) * .68), 0) scale(var(--scale, 1));
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--dx, 0px), var(--dy, 0px), 0) scale(calc(var(--scale, 1) * .72));
  }
}

@keyframes ipCoinSpin {
  0% {
    transform: rotate(var(--rot, 0deg)) rotateY(0deg);
  }
  100% {
    transform: rotate(calc(var(--rot, 0deg) + var(--spin, 120deg))) rotateY(360deg);
  }
}

@keyframes ipRisk {
  0%, 100% {
    transform: scaleX(.5);
    transform-origin: left center;
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes ipBars {
  0%, 100% {
    transform: scaleY(.82);
    transform-origin: bottom;
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes ipWarningPulse {
  0%, 100% {
    opacity: .35;
    transform: translate3d(0, 0, 0) scale(.76);
  }
  34% {
    opacity: .95;
    transform: translate3d(calc(var(--ip-warning-x) * .55), calc(var(--ip-warning-y) * .55), 0) scale(1);
  }
  68% {
    opacity: .72;
    transform: translate3d(var(--ip-warning-x), var(--ip-warning-y), 0) scale(.88);
  }
}

@keyframes ipTreasuryDot {
  0% {
    left: 16.666%;
    opacity: 0;
    transform: translate(-50%, 8px) scale(.72);
  }
  10%, 24% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  43%, 57% {
    left: 50%;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  76%, 90% {
    left: 83.333%;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  100% {
    left: 83.333%;
    opacity: 0;
    transform: translate(-50%, -8px) scale(.72);
  }
}

@keyframes ipCtaIconFloat {
  0%, 100% {
    transform:
      translate3d(0, 0, 0)
      rotate(var(--ip-cta-rot, 0deg))
      scale(1);
  }
  50% {
    transform:
      translate3d(0, -10px, 0)
      rotate(calc(var(--ip-cta-rot, 0deg) + 4deg))
      scale(1.04);
  }
}

@keyframes ipCtaMobileCoin {
  0%, 12% {
    opacity: 0;
    transform:
      translate3d(-50%, 28px, 0)
      rotate(var(--ip-cta-rot, 0deg))
      scale(.62);
  }
  24% {
    opacity: .78;
    transform:
      translate3d(calc(-50% + (var(--ip-cta-mobile-x) * .18)), -10px, 0)
      rotate(var(--ip-cta-rot, 0deg))
      scale(.92);
  }
  62% {
    opacity: .82;
    transform:
      translate3d(calc(-50% + var(--ip-cta-mobile-x)), var(--ip-cta-mobile-y), 0)
      rotate(calc(var(--ip-cta-rot, 0deg) + 8deg))
      scale(1);
  }
  100% {
    opacity: 0;
    transform:
      translate3d(calc(-50% + (var(--ip-cta-mobile-x) * 1.14)), calc(var(--ip-cta-mobile-y) - 22px), 0)
      rotate(calc(var(--ip-cta-rot, 0deg) + 16deg))
      scale(.7);
  }
}

@keyframes ipTypeCursor {
  0%, 46% {
    opacity: .78;
  }
  47%, 100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ip-ledger::after,
  .ip-ledger__summary i::before,
  .ip-ledger__summary i::after,
  .ip-flow-line::before,
  .ip-flow-node::after,
  .ip-problem__visual::before,
  .ip-problem__visual::after,
  .ip-problem__particle,
  .ip-split-route-dot,
  .ip-warning-pulse,
  .ip-treasury-dot,
  .ip-cta__icon,
  .ip-typewriter__cursor,
  .ip-coin-particle,
  .ip-coin-particle img,
  .ip-warning-card i,
  .ip-bars i {
    animation: none;
  }

  .ip-split-route-dot {
    display: none;
  }
}

@media (max-width: 1100px) {
  .ip-hero__grid,
  .ip-problem__grid,
  .ip-section-head--wide {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ip-hero__title,
  .ip-section-head h2,
  .ip-cta h2 {
    font-size: 5.5rem;
  }

  .ip-hero__visual {
    min-height: 590px;
  }

  .ip-problem__visual {
    min-height: 320px;
  }

  .ip-problem__image {
    width: min(58vw, 300px);
  }

  .ip-stats,
  .ip-capability-grid,
  .ip-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ip-hero,
  .ip-stats,
  .ip-capabilities,
  .ip-flow,
  .ip-cta {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .ip-hero {
    padding-top: 116px;
  }

  .ip-hero__grid {
    gap: 36px;
  }

  .ip-hero__title,
  .ip-section-head h2,
  .ip-cta h2 {
    max-width: 100%;
    font-size: 4rem;
  }

  .ip-hero__lede,
  .ip-problem__copy p {
    font-size: 1rem;
  }

  .ip-hero__visual {
    min-height: 590px;
  }

  .ip-problem {
    min-height: auto;
    padding: 72px 0;
  }

  .ip-problem__sticky {
    position: relative;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .ip-problem__grid {
    gap: 36px;
  }

  .ip-problem__visual {
    min-height: 280px;
  }

  .ip-problem__image {
    width: min(78vw, 270px);
  }

  .ip-ledger {
    width: calc(100% - 28px);
    padding: 14px;
  }

  .ip-ledger__top,
  .ip-ledger__bottom,
  .ip-ledger__summary,
  .ip-stats,
  .ip-capability-grid,
  .ip-flow-steps,
  .ip-cta__inner {
    grid-template-columns: 1fr;
  }

  .ip-ledger__top {
    align-items: flex-start;
  }

  .ip-ledger__summary article {
    min-height: 86px;
  }

  .ip-ledger__flow {
    display: none;
  }

  .ip-stat,
  .ip-capability,
  .ip-flow-steps article {
    min-height: auto;
  }

  .ip-flow-steps article {
    min-height: 286px;
    padding: 30px 26px 28px;
  }

  .ip-flow-steps strong {
    margin-top: 94px;
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .ip-quote p {
    font-size: 3rem;
  }

  .ip-cta__inner {
    display: grid;
    min-height: 500px;
    padding: 42px 24px 86px;
  }

  .ip-cta__icon {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 82px;
    width: var(--ip-cta-mobile-size, 34px);
    height: var(--ip-cta-mobile-size, 34px);
    opacity: 0;
    transform:
      translate3d(-50%, 28px, 0)
      rotate(var(--ip-cta-rot, 0deg))
      scale(.62);
    animation: ipCtaMobileCoin 3.9s cubic-bezier(.2, .82, .22, 1) infinite;
  }

  .ip-cta__icon--one {
    --ip-cta-mobile-x: -118px;
    --ip-cta-mobile-y: -74px;
    --ip-cta-mobile-size: 24px;
    animation-delay: 0s;
  }

  .ip-cta__icon--two {
    --ip-cta-mobile-x: -54px;
    --ip-cta-mobile-y: -42px;
    --ip-cta-mobile-size: 20px;
    animation-delay: .34s;
  }

  .ip-cta__icon--three {
    --ip-cta-mobile-x: 28px;
    --ip-cta-mobile-y: -62px;
    --ip-cta-mobile-size: 22px;
    animation-delay: .72s;
  }

  .ip-cta__icon--four {
    --ip-cta-mobile-x: 106px;
    --ip-cta-mobile-y: -86px;
    --ip-cta-mobile-size: 26px;
    animation-delay: 1.04s;
  }

  .ip-cta__icon--five {
    --ip-cta-mobile-x: -8px;
    --ip-cta-mobile-y: -92px;
    --ip-cta-mobile-size: 22px;
    animation-delay: 1.42s;
  }

  .ip-cta__icon--six {
    --ip-cta-mobile-x: 74px;
    --ip-cta-mobile-y: -36px;
    --ip-cta-mobile-size: 20px;
    animation-delay: 1.78s;
  }
}

@media (max-width: 430px) {
  .ip-hero__title,
  .ip-section-head h2,
  .ip-cta h2 {
    font-size: 3.25rem;
  }

  .ip-hero__visual {
    min-height: 620px;
  }

  .ip-warning-actions,
  .ip-treasury-tags {
    grid-template-columns: 1fr;
  }

  .ip-capability__visual {
    height: 260px;
  }
}
