/* ======================================================================
   B10SEC / IO LEAK
   Edição visual rápida: altere somente as variáveis abaixo.
====================================================================== */
.b10-io {
  --b10-bg: #000000;
  --b10-surface: #0b0b0c;
  --b10-card: #111214;
  --b10-white: #f4f2f2;
  --b10-muted: #a7a7a9;
  --b10-line: rgba(255, 255, 255, 0.13);
  --b10-red: #ff4b47;
  --b10-orange: #ff773a;
  --b10-font: "Hubot Sans", sans-serif;
  --b10-body-font: "Roboto", sans-serif;
  --b10-width: 1140px;
  --b10-pad: 24px;

  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: clip;
  background: var(--b10-bg);
  color: var(--b10-white);
  font-family: var(--b10-body-font);
  font-size: 16px;
  line-height: 1.55;
  isolation: isolate;
}

.b10-io,
.b10-io * {
  box-sizing: border-box;
}

.b10-io h1,
.b10-io h2,
.b10-io h3,
.b10-io p {
  margin: 0;
  padding: 0;
}

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

.b10-io__wrap {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--b10-pad) * 2)), var(--b10-width));
  margin-inline: auto;
}

.b10-io__eyebrow {
  color: #00d473;
  font-family: "Exo 2", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.b10-io__section-title {
  color: #fff;
  font-family: var(--b10-font);
  font-size: clamp(38px, 3.52vw, 48px);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
}

.b10-io__lead {
  color: var(--b10-muted);
  font-size: 22px;
  line-height: 1.7;
}

/* HERO ---------------------------------------------------------------- */
.b10-io__hero {
  position: relative;
  min-height: 653px;
  overflow: hidden;
  background: #000;
}

.b10-io__hero-inner {
  display: flex;
  min-height: 653px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1224px;
  padding-block: 120px 72px;
  text-align: center;
}

.b10-io__hero .b10-io__eyebrow {
  display: inline-flex;
  min-width: 237px;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 100px;
  background: rgba(0, 212, 115, .1);
  font-size: 17px;
  text-transform: none;
}

.b10-io__hero-title {
  max-width: 1180px;
  margin-top: 40px !important;
  color: var(--b10-white);
  font-family: var(--b10-font);
  font-size: clamp(52px, 4.7vw, 64px);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-weight: 800;
  letter-spacing: -2.2px;
  line-height: 1;
  text-wrap: balance;
}

.b10-io__hero-text {
  max-width: 1008px;
  margin-top: 30px !important;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  line-height: 1.7;
  text-wrap: balance;
}

.b10-io__button {
  display: inline-flex;
  min-height: 48px;
  margin-top: 28px;
  align-items: center;
  gap: 14px;
  padding: 11px 13px 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--b10-font);
  font-size: 14px;
  text-decoration: none;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.b10-io__button:hover {
  border-color: rgba(255, 101, 78, 0.8);
  background: rgba(255, 83, 60, 0.13);
  color: #fff;
  transform: translateY(-2px);
}

.b10-io__button-arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--b10-red), var(--b10-orange));
  font-size: 15px;
}

/* PLATAFORMAS --------------------------------------------------------- */
.b10-io__platforms {
  position: relative;
  min-height: 662px;
  padding-top: 90px;
  overflow: hidden;
  background: #080808;
}

.b10-io__platforms .b10-io__wrap { max-width: 1224px; }

.b10-io__section-title--platform {
  max-width: 980px;
  margin-inline: auto !important;
  text-align: center;
  text-wrap: balance;
}

.b10-io__platform-stage {
  position: relative;
  width: min(620px, 82vw);
  height: 310px;
  margin: -27px auto 0;
}

.b10-io__platform-image {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 573px;
  height: 323px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: saturate(1.2) contrast(1.05);
}

.b10-io__platform-halo {
  position: absolute;
  z-index: 1;
  top: 80px;
  left: 50%;
  width: 360px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,62,32,.48), rgba(255,46,18,.08) 55%, transparent 74%);
  filter: blur(20px);
  transform: translateX(-50%);
  animation: b10-breathe 3.8s ease-in-out infinite;
}

.b10-io__platform-logos {
  position: absolute;
  display: flex;
  right: 50%;
  bottom: 213px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateX(50%);
}

.b10-io__logo-card {
  display: grid;
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  place-items: center;
  border-radius: 30px;
  background: #f4f2f2;
  box-shadow: 0 18px 35px rgba(0,0,0,.28);
  transition: transform .28s ease, box-shadow .28s ease;
}

.b10-io__logo-card:hover {
  box-shadow: 0 23px 42px rgba(0,0,0,.42);
  transform: translateY(-8px) scale(1.03);
}

.b10-io__logo-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* PROBLEMA ------------------------------------------------------------ */
.b10-io__problem {
  position: relative;
  padding: 113px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 55, 35, 0.08), transparent 23%),
    #000;
}

.b10-io__problem-header,
.b10-io__steps-intro {
  max-width: 930px;
  margin-inline: auto;
  text-align: center;
}

.b10-io__problem-header .b10-io__section-title {
  margin-top: 10px !important;
}

.b10-io__problem-header .b10-io__lead {
  margin-top: 10px !important;
}

.b10-io__risks {
  display: grid;
  max-width: 930px;
  margin: 129px auto 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.b10-io__risk {
  position: relative;
  min-height: 376px;
  padding: 30px;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(210deg, rgba(112,112,112,.57), rgba(135,135,135,.65) 52.6%, rgba(61,58,58,.54));
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}

.b10-io__risk::after {
  position: absolute;
  inset: auto -30% -55% 25%;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 55, 37, .18);
  filter: blur(36px);
  content: "";
  transition: opacity .3s ease;
}

.b10-io__risk:hover {
  background: linear-gradient(210deg, rgba(132,132,132,.62), rgba(145,145,145,.7) 52.6%, rgba(72,65,65,.62));
  transform: translateY(-6px);
}

.b10-io__risk h3 {
  color: #fff;
  font-family: var(--b10-font);
  font-size: 28px;
  font-variation-settings: "wdth" 105, "wght" 600;
  font-weight: 600;
  line-height: 1.15;
}

.b10-io__risk p {
  margin-top: 16px !important;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 22px;
  line-height: 24px;
}

.b10-io__risk-visual {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  height: 92px;
  z-index: 2;
}

.b10-io__risk-visual--1 span {
  position: absolute;
  right: 0;
  left: 0;
  display: flex;
  height: 80px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: linear-gradient(240deg, #545454 1%, #910606 100%);
  box-shadow: 0 10px 25px rgba(0,0,0,.28);
  animation: b10-credential-stack 4.5s ease-in-out infinite;
}

.b10-io__risk-visual--1 span:nth-child(2) { animation-delay: -1.5s; opacity: .68; }
.b10-io__risk-visual--1 span:nth-child(3) { animation-delay: -3s; opacity: .4; }
.b10-io__risk-visual--1 i {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #000;
  box-shadow: inset 0 0 0 14px rgba(247,115,115,.38);
}
.b10-io__risk-visual--1 b { color: rgba(255,255,255,.55); font-size: 18px; letter-spacing: .11em; }

.b10-io__risk-visual--2 {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
}

.b10-io__key {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
  color: #41175e;
  font-family: Inter, sans-serif;
  font-size: 29px;
  font-weight: 600;
  animation: b10-key 2.8s ease-in-out infinite;
}
.b10-io__key:first-child { width: 127px; height: 51px; margin-bottom: 13px; font-size: 24px; animation-delay: -.8s; }

.b10-io__risk-visual--3 span {
  position: absolute;
  right: 0;
  left: 0;
  display: flex;
  height: 74px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,.6);
  color: #41175e;
  font-family: Inter, sans-serif;
  font-size: 18px;
  animation: b10-document-stack 4.8s ease-in-out infinite;
}
.b10-io__risk-visual--3 span:nth-child(2) { animation-delay: -1.6s; }
.b10-io__risk-visual--3 span:nth-child(3) { animation-delay: -3.2s; background:#fff; }
.b10-io__risk-visual--3 i { width:8px;height:8px;margin-right:8px;border-radius:50%;background:#f77373; }

/* PAINEL ANIMADO ------------------------------------------------------ */
.b10-io__scanner {
  position: relative;
  width: min(780px, 100%);
  margin: 72px auto 52px;
  perspective: 1200px;
}

.b10-io__scanner-glow {
  position: absolute;
  inset: 20% 8% -10%;
  border-radius: 50%;
  background: rgba(255, 63, 43, .21);
  filter: blur(65px);
}

.b10-io__scanner-window {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 20px;
  background: rgba(9,10,12,.93);
  box-shadow: 0 35px 90px rgba(0,0,0,.7), inset 0 1px rgba(255,255,255,.08);
  transform-style: preserve-3d;
  transition: transform .2s ease-out;
}

.b10-io__scanner-bar {
  display: flex;
  height: 47px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--b10-line);
  color: rgba(255,255,255,.45);
  font-size: 10px;
  letter-spacing: .08em;
}

.b10-io__scanner-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a4a4d;
}

.b10-io__scanner-bar > span:first-child { background: #ff605c; }
.b10-io__scanner-bar > span:nth-child(2) { background: #ffbd44; }
.b10-io__scanner-bar > span:nth-child(3) { background: #00ca4e; }
.b10-io__scanner-bar strong { margin-left: 8px; font-weight: 500; }
.b10-io__scanner-bar em { margin-left: auto; color: #ff7262; font-style: normal; }

.b10-io__scanner-body {
  display: grid;
  min-height: 283px;
  grid-template-columns: 170px 1fr;
}

.b10-io__scanner-side {
  display: flex;
  padding: 22px 14px;
  border-right: 1px solid var(--b10-line);
  flex-direction: column;
  gap: 8px;
}

.b10-io__scanner-side span {
  padding: 9px 12px;
  border-radius: 7px;
  color: #6f7074;
  font-size: 12px;
}

.b10-io__scanner-side .is-active {
  background: rgba(255,86,64,.1);
  color: #ff7768;
}

.b10-io__scanner-main { padding: 25px; }

.b10-io__scanner-status {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.b10-io__scanner-status > div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  background: rgba(255,255,255,.025);
}

.b10-io__scanner-status small {
  display: block;
  color: #66686c;
  font-size: 10px;
}

.b10-io__scanner-status strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-family: var(--b10-font);
  font-size: 25px;
  font-weight: 600;
}

.b10-io__scan-list { margin-top: 18px; }

.b10-io__scan-list > div {
  display: grid;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.055);
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  color: #a5a6a9;
  font-size: 11px;
}

.b10-io__scan-list i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffac47;
}

.b10-io__scan-list i.is-critical { background: #ff5549; box-shadow: 0 0 9px #ff5549; }
.b10-io__scan-list b { color: #ff7565; font-size: 9px; font-weight: 600; letter-spacing: .08em; }

.b10-io__scan-line {
  position: absolute;
  z-index: 5;
  right: 0;
  left: 170px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,92,67,.85), transparent);
  box-shadow: 0 0 14px rgba(255,82,59,.8);
  animation: b10-scan 3.2s ease-in-out infinite;
}

/* RECURSOS ------------------------------------------------------------ */
.b10-io__features {
  display: grid;
  max-width: 820px;
  margin: 89px auto 0;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 90px;
}

.b10-io__feature {
  display: grid;
  min-height: 142px;
  padding: 25px 0;
  border-top: 1px solid var(--b10-line);
  grid-template-columns: 36px 1fr;
  gap: 18px;
}

.b10-io__feature:nth-last-child(-n+2) { border-bottom: 1px solid var(--b10-line); }

.b10-io__feature-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255,91,67,.38);
  border-radius: 50%;
  color: var(--b10-red);
  font-family: var(--b10-font);
  font-size: 10px;
}

.b10-io__feature h3 {
  color: #fff;
  font-family: var(--b10-font);
  font-size: 20px;
  font-variation-settings: "wdth" 100, "wght" 600;
  font-weight: 600;
  line-height: 1.25;
}

.b10-io__feature p {
  margin-top: 8px !important;
  color: #949598;
  font-size: 15px;
  line-height: 1.55;
}

/* PASSOS -------------------------------------------------------------- */
.b10-io__steps-intro {
  margin-top: 42px;
}

.b10-io__steps-intro .b10-io__section-title {
  max-width: 930px;
  line-height: 1.1;
  text-wrap: balance;
}

.b10-io__steps-intro .b10-io__lead {
  margin-top: 18px !important;
}

.b10-io__steps {
  position: relative;
  height: 777px;
  margin-top: 65px;
}

.b10-io__line {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.b10-io__line--left { top: 40px; left: 246px; width: 198px; height: 74px; }
.b10-io__line--right { top: 40px; right: 246px; width: 198px; height: 74px; }
.b10-io__line--bottom { top: 542px; left: 50%; width: 5px; height: 70px; transform: translateX(-50%); }

.b10-io__core {
  position: absolute;
  z-index: 1;
  top: 21px;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translateX(-50%);
}
.b10-io__core img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.b10-io__core img:first-child { animation: b10-core-spin 30s linear infinite; }
.b10-io__core img:nth-child(2) { animation: b10-core-spin 24s linear infinite reverse; }
.b10-io__core img:nth-child(3) { inset: 76px; width: 348px; height: 348px; animation: b10-breathe-image 4s ease-in-out infinite; }
.b10-io__core img:nth-child(4) { inset: 145px 117px; width: 266px; height: 158px; animation: b10-core-float 3.5s ease-in-out infinite; }

.b10-io__step {
  z-index: 4;
  padding: 30px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.b10-io__step { position: absolute; }
.b10-io__step::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: url("https://framerusercontent.com/images/0cc0zfdUuWCjvBzMPebE5JiWA.png?width=663&height=425") center/100% 100% no-repeat;
  content: "";
}
.b10-io__step--1 { top: 61px; left: -74px; width: 340px; min-height: 213px; }
.b10-io__step--2 { top: 70px; right: -42px; width: 308px; min-height: 193px; }
.b10-io__step--3 { top: 548px; left: 50%; width: 330px; min-height: 228px; transform: translateX(-50%); text-align:center; }

.b10-io__step-number {
  position: absolute;
  display: grid;
  width: 83px;
  height: 83px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
}
.b10-io__step--1 .b10-io__step-number { top: 77px; right: -199px; }
.b10-io__step--2 .b10-io__step-number { top: 66px; left: -199px; }
.b10-io__step--3 .b10-io__step-number { top: -141px; left: 50%; transform: translateX(-50%); }

.b10-io__step h3 {
  margin-top: 13px !important;
  color: var(--b10-white);
  font-family: var(--b10-font);
  font-size: 25px;
  font-variation-settings: "wdth" 105, "wght" 600;
  font-weight: 600;
  line-height: 1.15;
}

.b10-io__step p {
  margin-top: 9px !important;
  color: #999a9d;
  font-size: 14px;
  line-height: 1.45;
}

/* ENTRADAS ------------------------------------------------------------ */
.b10-io--js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--b10-delay, 0ms);
}

.b10-io--js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes b10-scan { 0%,100% { top: 58px; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: 315px; } }
@keyframes b10-breathe { 50% { opacity: .63; filter: blur(24px) brightness(1.18); } }
@keyframes b10-ring { 0% { opacity: .7; transform: scale(.65); } 100% { opacity: 0; transform: scale(1.35); } }
@keyframes b10-orbit { to { transform: translate(70px, 35px) scale(1.12); } }
@keyframes b10-credential-stack { 0%,100% { transform: translateY(22px) scale(.92); opacity:.35; } 50% { transform: translateY(-6px) scale(1); opacity:1; } }
@keyframes b10-key { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes b10-document-stack { 0%,100% { transform: translate(-14px,12px) scale(.8); opacity:.35; } 50% { transform: translate(8px,-7px) scale(1); opacity:1; } }
@keyframes b10-core-spin { to { transform: rotate(360deg); } }
@keyframes b10-breathe-image { 50% { transform: scale(1.07); filter: brightness(1.2); } }
@keyframes b10-core-float { 50% { transform: translateY(-10px) scale(1.025); } }

/* TABLET -------------------------------------------------------------- */
@media (max-width: 1024px) {
  .b10-io { --b10-pad: 30px; }
  .b10-io__hero-title { font-size: clamp(46px, 6.1vw, 60px); }
  .b10-io__risks { gap: 18px; }
  .b10-io__risk { padding: 24px; }
  .b10-io__risk h3 { font-size: 24px; }
  .b10-io__risk p { font-size: 18px; line-height: 22px; }
  .b10-io__features { column-gap: 48px; }
  .b10-io__platform-logos { gap: 18px; }
  .b10-io__logo-card { width: 82px; height:82px; flex-basis:82px; border-radius:25px; }
  .b10-io__logo-card img { width:60px; height:60px; }
}

/* MOBILE -------------------------------------------------------------- */
@media (max-width: 767px) {
  .b10-io {
    --b10-pad: 20px;
    font-size: 15px;
  }

  .b10-io__hero,
  .b10-io__hero-inner { min-height: 650px; }
  .b10-io__hero-inner { padding-block: 74px 58px; }
  .b10-io__hero-title {
    margin-top: 27px !important;
    font-size: clamp(39px, 11.3vw, 52px);
    letter-spacing: -1.5px;
  }
  .b10-io__hero-text { margin-top: 24px !important; font-size: 17px; }
  .b10-io__button { justify-content: space-between; text-align: left; }

  .b10-io__platforms { min-height: 700px; padding-top: 70px; }
  .b10-io__section-title { font-size: 38px; letter-spacing: -.8px; }
  .b10-io__platform-stage { height: 300px; margin-top: 12px; }
  .b10-io__platform-image { width: 510px; max-width: 125vw; }
  .b10-io__platform-logos {
    right: var(--b10-pad);
    bottom: 48px;
    left: var(--b10-pad);
    flex-wrap: wrap;
    gap: 14px;
    transform: none;
  }
  .b10-io__logo-card { width:72px;height:72px;flex-basis:72px;border-radius:22px; }
  .b10-io__logo-card img { width:52px;height:52px; }

  .b10-io__problem { padding: 88px 0 70px; }
  .b10-io__lead { font-size: 17px; }
  .b10-io__risks { margin-top: 60px; grid-template-columns: 1fr; }
  .b10-io__risk { min-height: 360px; }

  .b10-io__scanner { margin-block: 55px 42px; }
  .b10-io__scanner-window { min-height: 310px; }
  .b10-io__scanner-body { grid-template-columns: 1fr; }
  .b10-io__scanner-side { display: none; }
  .b10-io__scanner-main { padding: 18px; }
  .b10-io__scanner-status { gap: 7px; }
  .b10-io__scanner-status > div { padding: 10px 8px; }
  .b10-io__scanner-status small { min-height: 30px; }
  .b10-io__scan-line { left: 0; }

  .b10-io__features { grid-template-columns: 1fr; }
  .b10-io__feature:nth-last-child(2) { border-bottom: 0; }
  .b10-io__steps-intro { margin-top: 82px; }

  .b10-io__steps {
    display: grid;
    height: auto;
    margin-top: 48px;
    padding-bottom: 260px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .b10-io__line { display: none; }
  .b10-io__step,
  .b10-io__step--1,
  .b10-io__step--2,
  .b10-io__step--3 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: auto;
    transform: none;
  }
  .b10-io__step-number,
  .b10-io__step--1 .b10-io__step-number,
  .b10-io__step--2 .b10-io__step-number,
  .b10-io__step--3 .b10-io__step-number {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
    transform: none;
    font-size: 23px;
  }
  .b10-io__step--3 { text-align:left; }
  .b10-io__core { top: auto; bottom: -65px; width: 300px; height: 300px; }
  .b10-io__core img:nth-child(3) { inset:46px;width:208px;height:208px; }
  .b10-io__core img:nth-child(4) { inset:87px 70px;width:160px;height:95px; }
}

@media (prefers-reduced-motion: reduce) {
  .b10-io *,
  .b10-io *::before,
  .b10-io *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .b10-io--js [data-reveal] { opacity: 1; transform: none; }
}
