.reo-page {
  position: relative;
  overflow: hidden;
  background: #07111f;
  color: #eef6ff;
}

.reo-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 8% 8%, rgba(48, 167, 255, .20), transparent 28%), radial-gradient(circle at 92% 18%, rgba(97, 227, 166, .12), transparent 28%), radial-gradient(circle at 54% 55%, rgba(255, 189, 90, .08), transparent 32%);
  z-index: 0;
}

.reo-page > * {
  position: relative;
  z-index: 1;
}

.reo-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.reo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(101, 212, 255, .26);
  background: rgba(48, 167, 255, .10);
  color: #bceaff;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.reo-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #61e3a6;
  box-shadow: 0 0 0 6px rgba(97, 227, 166, .12);
}

.reo-hero {
  padding: 84px 0 62px;
  isolation: isolate;
}

.reo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #91a6bc;
  font-size: 13px;
  margin-bottom: 18px;
}

.reo-breadcrumb a {
  color: #cfe6ff;
}

.reo-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}

.reo-hero h1 {
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: .98;
  letter-spacing: -2.7px;
  margin: 18px 0 22px;
}

.reo-gradient {
  background: linear-gradient(90deg, #fff, #9fddff 55%, #65d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reo-lead {
  font-size: 18px;
  line-height: 1.76;
  color: #c1d2e5;
  max-width: 760px;
  margin: 0 0 28px;
}

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

.reo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 21px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(135deg, #30a7ff, #1264d8);
  box-shadow: 0 18px 50px rgba(18, 100, 216, .30);
  transition: .25s;
  color: #fff;
}

.reo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 70px rgba(48, 167, 255, .38);
}

.reo-btn.reo-secondary {
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
  color: #d9ecff;
}

.reo-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 780px;
}

.reo-proof {
  padding: 17px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .055);
  transition: .25s;
}

.reo-proof:hover {
  transform: translateY(-4px);
  border-color: rgba(101, 212, 255, .28);
  background: rgba(255, 255, 255, .085);
}

.reo-proof b {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
}

.reo-proof span {
  display: block;
  color: #9fb1c7;
  font-size: 13px;
  line-height: 1.45;
}

.reo-visual {
  position: relative;
  padding: 1px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(101, 212, 255, .42), rgba(255, 255, 255, .08), rgba(97, 227, 166, .18));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
  overflow: hidden;
}

.reo-visual-inner {
  min-height: 570px;
  border-radius: 35px;
  background: radial-gradient(circle at 75% 5%, rgba(48, 167, 255, .26), transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045)), #081423;
  padding: 22px;
  position: relative;
}

.reo-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(135deg, rgba(48, 167, 255, .12), rgba(255, 255, 255, .045));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .24);
}

.reo-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  opacity: .86;
  filter: saturate(.95) contrast(1.03);
}

.reo-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, .05), rgba(7, 17, 31, .68));
  pointer-events: none;
}

.reo-img-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: end;
}

.reo-img-caption b {
  display: block;
  font-size: 18px;
}

.reo-img-caption span {
  display: block;
  color: #c6d5e7;
  font-size: 13px;
  line-height: 1.45;
}

.reo-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(101, 212, 255, .22);
  background: rgba(48, 167, 255, .12);
  color: #cfeeff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.reo-visual-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 14px;
  margin-top: 14px;
}

.reo-metric {
  padding: 17px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.reo-metric small {
  display: block;
  color: #86d5ff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  font-size: 10px;
  margin-bottom: 8px;
}

.reo-metric strong {
  display: block;
  font-size: 23px;
  margin-bottom: 5px;
}

.reo-metric span {
  display: block;
  color: #aebed1;
  font-size: 13px;
  line-height: 1.45;
}

.reo-section {
  padding: 82px 0;
}

.reo-section-head {
  max-width: 980px;
  margin-bottom: 34px;
}

.reo-section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -1.8px;
  margin: 14px 0 18px;
}

.reo-section-head p {
  color: #c1d2e5;
  line-height: 1.82;
  margin: 0;
  padding: 20px 24px;
  border-radius: 24px;
  border: 1px solid rgba(101, 212, 255, .18);
  background: linear-gradient(135deg, rgba(48, 167, 255, .10), rgba(255, 255, 255, .045));
}

.reo-pain-map {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}

.reo-pain-left {
  padding: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: radial-gradient(circle at 16% 0%, rgba(101, 212, 255, .15), transparent 36%), rgba(255, 255, 255, .055);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .23);
}

.reo-pain-left h3 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin: 0 0 16px;
}

.reo-pain-left p {
  color: #b8c9dc;
  line-height: 1.76;
  margin: 0 0 18px;
}

.reo-pain-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.reo-pain-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(255, 255, 255, .045);
  transition: .25s;
}

.reo-pain-item:hover {
  transform: translateX(5px);
  border-color: rgba(255, 189, 90, .26);
  background: rgba(255, 255, 255, .07);
}

.reo-pain-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 189, 90, .12);
  border: 1px solid rgba(255, 189, 90, .20);
  font-weight: 900;
  color: #ffcf89;
}

.reo-pain-item b {
  display: block;
  margin-bottom: 5px;
}

.reo-pain-item span {
  display: block;
  color: #aebed1;
  line-height: 1.55;
  font-size: 14px;
}

.reo-pain-right {
  display: grid;
  gap: 16px;
}

.reo-mini-case {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  overflow: hidden;
  transition: .25s;
}

.reo-mini-case::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(101, 212, 255, .16), transparent 42%);
  opacity: 0;
  transition: .25s;
}

.reo-mini-case:hover {
  transform: translateY(-5px);
  border-color: rgba(101, 212, 255, .28);
}

.reo-mini-case:hover::before {
  opacity: 1;
}

.reo-mini-case > * {
  position: relative;
  z-index: 1;
}

.reo-mini-case h3 {
  margin: 10px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.reo-mini-case p {
  margin: 0;
  color: #aebed1;
  line-height: 1.68;
}

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

.reo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reo-card {
  position: relative;
  padding: 27px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  box-shadow: 0 18px 70px rgba(0, 0, 0, .18);
  overflow: hidden;
  transition: .28s;
}

.reo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(101, 212, 255, .16), transparent 38%);
  opacity: 0;
  transition: .28s;
  pointer-events: none;
}

.reo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(101, 212, 255, .32);
  box-shadow: 0 28px 95px rgba(0, 0, 0, .30);
}

.reo-card:hover::before {
  opacity: 1;
}

.reo-card > * {
  position: relative;
  z-index: 1;
}

.reo-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(48, 167, 255, .12);
  border: 1px solid rgba(101, 212, 255, .20);
  color: #bfe6ff;
  font-weight: 950;
  margin-bottom: 16px;
}

.reo-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.3px;
}

.reo-card p {
  margin: 0;
  color: #b4c4d8;
  line-height: 1.72;
}

.reo-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #9fb1c7;
  line-height: 1.72;
  font-size: 14px;
}

.reo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.reo-tags span {
  font-size: 12px;
  color: #cfe6ff;
  background: rgba(48, 167, 255, .09);
  border: 1px solid rgba(101, 212, 255, .17);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 800;
}

.reo-bento {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 18px;
}

.reo-bento .reo-card:nth-child(1) {
  grid-row: span 2;
}

.reo-bento .reo-card:nth-child(4) {
  grid-column: span 2;
}

.reo-solution-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: flow;
}

.reo-flow-step {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .055);
  transition: .25s;
}

.reo-flow-step:hover {
  transform: translateY(-5px);
  border-color: rgba(97, 227, 166, .28);
  background: rgba(255, 255, 255, .075);
}

.reo-flow-step::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #30a7ff, #1264d8);
  font-weight: 950;
  margin-bottom: 16px;
  box-shadow: 0 16px 42px rgba(48, 167, 255, .24);
}

.reo-flow-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.reo-flow-step p {
  margin: 0;
  color: #aebed1;
  line-height: 1.62;
  font-size: 14px;
}

.reo-flow-step::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -16px;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, #30a7ff, #65d4ff);
  opacity: .6;
}

.reo-flow-step:nth-child(4n)::after {
  display: none;
}

.reo-decision {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.reo-decision-panel {
  padding: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  box-shadow: 0 22px 80px rgba(0, 0, 0, .20);
}

.reo-decision-panel h3 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -1.1px;
  margin: 0 0 16px;
}

.reo-decision-panel p {
  color: #b9c8da;
  line-height: 1.74;
  margin: 0 0 18px;
}

.reo-stage-list {
  display: grid;
  gap: 13px;
}

.reo-stage {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(255, 255, 255, .045);
  transition: .25s;
}

.reo-stage:hover {
  border-color: rgba(101, 212, 255, .28);
  transform: translateX(4px);
}

.reo-stage b {
  color: #fff;
}

.reo-stage span {
  color: #aebed1;
  line-height: 1.55;
  font-size: 14px;
}

.reo-image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.reo-image-strip .reo-img-frame {
  min-height: 220px;
}

.reo-image-strip img {
  min-height: 220px;
}

.reo-compass {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reo-compass-card {
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .055);
  transition: .25s;
}

.reo-compass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(101, 212, 255, .28);
  background: rgba(255, 255, 255, .075);
}

.reo-compass-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.reo-compass-card p {
  margin: 0 0 16px;
  color: #b4c4d8;
  line-height: 1.7;
}

.reo-two-col-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.reo-two-col-list span {
  display: block;
  padding: 12px 13px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: #c7d7e8;
  font-size: 14px;
  line-height: 1.45;
}

.reo-warning {
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 189, 90, .22);
  background: linear-gradient(135deg, rgba(255, 189, 90, .10), rgba(255, 255, 255, .04));
}

.reo-warning h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

.reo-warning p {
  margin: 0;
  color: #d9c9ae;
  line-height: 1.72;
}

.reo-faq {
  display: grid;
  gap: 14px;
}

.reo-faq details {
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .055);
  border-radius: 22px;
  padding: 20px;
  transition: .25s;
}

.reo-faq details:hover {
  border-color: rgba(101, 212, 255, .26);
  background: rgba(255, 255, 255, .075);
}

.reo-faq summary {
  cursor: pointer;
  font-weight: 900;
  color: #fff;
  font-size: 17px;
}

.reo-faq p {
  color: #b4c4d8;
  line-height: 1.74;
  margin: 14px 0 0;
}

.reo-cta {
  padding: 1px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(101, 212, 255, .36), rgba(255, 255, 255, .09), rgba(18, 100, 216, .34));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

.reo-cta-inner {
  border-radius: 37px;
  background: radial-gradient(circle at 84% 10%, rgba(48, 167, 255, .25), transparent 34%), rgba(255, 255, 255, .065);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.reo-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 14px;
}

.reo-cta p {
  color: #bfd0e2;
  line-height: 1.72;
  margin: 0;
  max-width: 780px;
}

@media (max-width: 980px) {
  .reo-hero-grid, .reo-pain-map, .reo-decision {
    grid-template-columns: 1fr
  }

  .reo-grid-3, .reo-bento, .reo-solution-flow, .reo-image-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .reo-bento .reo-card:nth-child(1), .reo-bento .reo-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto
  }

  .reo-cta-inner {
    grid-template-columns: 1fr
  }

  .reo-visual-inner {
    min-height: auto
  }

  .reo-flow-step::after {
    display: none
  }
}

@media (max-width: 640px) {
  .reo-container {
    width: min(100% -28px, 1200px)
  }

  .reo-hero, .reo-section {
    padding: 56px 0
  }

  .reo-hero h1 {
    font-size: clamp(32px, 10vw, 46px);
    letter-spacing: -1.3px
  }

  .reo-lead {
    font-size: 15.5px
  }

  .reo-hero-actions {
    display: grid
  }

  .reo-btn {
    width: 100%;
    padding: 13px 16px
  }

  .reo-proof-row, .reo-grid-3, .reo-grid-2, .reo-bento, .reo-solution-flow, .reo-image-strip, .reo-compass, .reo-two-col-list {
    grid-template-columns: 1fr
  }

  .reo-visual-grid {
    grid-template-columns: 1fr
  }

  .reo-pain-left, .reo-card, .reo-decision-panel, .reo-compass-card {
    padding: 21px;
    border-radius: 24px
  }

  .reo-section-head p {
    padding: 16px 18px
  }

  .reo-stage {
    grid-template-columns: 1fr
  }

  .reo-cta-inner {
    padding: 28px;
    border-radius: 28px
  }

  .reo-cta {
    border-radius: 29px
  }

  .reo-img-caption {
    display: block
  }

  .reo-pill {
    margin-top: 8px
  }

  .reo-visual-inner {
    padding: 16px
  }
}

.reo-visual-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reo-ops-strip > div {
  padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, .07),
      rgba(255, 255, 255, .035)
  );
}

.reo-ops-strip small {
  display: block;
  margin-bottom: 6px;
  color: #86d5ff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.reo-ops-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.reo-ops-strip b {
  display: block;
  color: #dcefff;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .reo-ops-strip {
    grid-template-columns: 1fr;
  }
}

.reo-channel-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .045);
}

.reo-channel-flow span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(48, 167, 255, .10);
  border: 1px solid rgba(101, 212, 255, .16);
  color: #cfeeff;
  font-size: 12px;
  font-weight: 900;
}

.reo-channel-flow i {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(101, 212, 255, .15), rgba(101, 212, 255, .55));
}

.reo-img-frame {
  position: relative;

  overflow: hidden;

  border-radius: 26px;

  background: #07111f;

  isolation: isolate;
}

.reo-img-frame::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
      180deg,
      rgba(4, 10, 18, .06) 0%,
      rgba(4, 10, 18, .18) 38%,
      rgba(4, 10, 18, .88) 100%
  );

  z-index: 1;

  pointer-events: none;
}

.reo-img-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.02);

  transition: transform .55s ease,
  opacity .35s ease;

  opacity: .92;
}

.reo-img-frame:hover img {
  transform: scale(1.08);
  opacity: 1;
}

.reo-img-caption {
  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 20px;

  z-index: 2;
}

.reo-img-caption b {
  display: block;

  margin-bottom: 8px;

  color: #fff;

  font-size: 18px;
  font-weight: 800;
}

.reo-img-caption span {
  display: block;

  color: #d4e7f8;

  font-size: 13.5px;
  line-height: 1.6;
}