.oa-page {
  --oa-bg: #050a12;
  --oa-panel: #0b1422;
  --oa-panel-2: #0e1b2a;
  --oa-ink: #f4f9ff;
  --oa-muted: #94a9c5;
  --oa-line: rgba(109, 173, 230, 0.18);
  --oa-blue: #2aa8ff;
  --oa-cyan: #4dc3ff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 560px at 70% 4%, rgba(42, 168, 255, 0.13), transparent 68%),
    linear-gradient(180deg, #070d17 0%, var(--oa-bg) 55%, #070c14 100%);
  color: var(--oa-ink);
}

.oa-page *,
.oa-sticky * {
  box-sizing: border-box;
}

.oa-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(77, 195, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 195, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.oa-shell {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

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

.oa-page h1,
.oa-page h2,
.oa-page h3,
.oa-page p {
  margin-top: 0;
}

.oa-page h1,
.oa-page h2 {
  color: var(--oa-ink);
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.oa-page h1 em,
.oa-page h2 em {
  color: var(--oa-cyan);
  font-style: normal;
  background: linear-gradient(110deg, #fff 0%, #8edcff 35%, var(--oa-blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.oa-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--oa-cyan);
  font: 800 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.oa-kicker > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--oa-blue);
  box-shadow: 0 0 0 6px rgba(42, 168, 255, 0.1), 0 0 18px rgba(77, 195, 255, 0.8);
  animation: oaPulse 2.4s ease-in-out infinite;
}

.oa-hero {
  position: relative;
  z-index: 1;
  padding: 132px 0 0;
}

.oa-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 2%;
  z-index: 0;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(77, 195, 255, 0.08);
  border-radius: 50%;
  transform: translateX(-5%);
  box-shadow:
    0 0 0 90px rgba(77, 195, 255, 0.025),
    0 0 0 190px rgba(77, 195, 255, 0.018);
  pointer-events: none;
}

.oa-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 44px;
  align-items: center;
  min-height: 650px;
}

.oa-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: #6f87a7;
  font-size: 12px;
}

.oa-breadcrumb a {
  color: #91a9c9;
  text-decoration: none;
}

.oa-breadcrumb a:hover {
  color: #fff;
}

.oa-hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 30px;
}

.oa-hero h1 {
  max-width: 690px;
  margin: 0 0 26px;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 0.98;
}

.oa-lead {
  max-width: 620px;
  margin-bottom: 17px;
  color: #c5d5e7;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.5;
}

.oa-audience {
  max-width: 610px;
  color: var(--oa-muted);
  font-size: 14px;
  line-height: 1.7;
}

.oa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.oa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--oa-line);
  border-radius: 13px;
  color: #e8f5ff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.oa-btn-primary {
  border-color: rgba(77, 195, 255, 0.52);
  background: linear-gradient(135deg, var(--oa-cyan), var(--oa-blue) 46%, #187bd0);
  box-shadow: 0 14px 34px rgba(42, 168, 255, 0.24);
  color: #fff;
}

.oa-btn-primary:hover,
.oa-btn-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(42, 168, 255, 0.38);
}

.oa-btn-ghost {
  background: rgba(12, 24, 39, 0.72);
  backdrop-filter: blur(14px);
}

.oa-btn-ghost:hover,
.oa-btn-ghost:focus-visible {
  border-color: rgba(77, 195, 255, 0.48);
  background: rgba(18, 36, 56, 0.86);
}

.oa-btn-block {
  width: 100%;
}

.oa-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  margin: 16px 0 0;
  color: #7187a6;
  font-size: 11px;
}

.oa-microcopy span {
  color: var(--oa-cyan);
}

.oa-hero-media {
  position: relative;
  z-index: 3;
  min-height: 535px;
  margin: 0 -10vw 0 0;
  border: 1px solid rgba(77, 195, 255, 0.2);
  border-radius: 34px 0 0 34px;
  background: #07101d;
  box-shadow: -34px 38px 90px rgba(0, 0, 0, 0.46), 0 0 70px rgba(42, 168, 255, 0.08);
  overflow: hidden;
}

.oa-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.62) 0%, transparent 34%),
    linear-gradient(0deg, rgba(5, 10, 18, 0.55), transparent 35%);
  pointer-events: none;
}

.oa-hero-media img {
  width: 100%;
  height: 535px;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: oaHeroDrift 12s ease-in-out infinite alternate;
}

.oa-float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(77, 195, 255, 0.35);
  border-radius: 10px;
  background: rgba(7, 16, 29, 0.74);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  color: #dff5ff;
  font: 800 10px/1 ui-monospace, monospace;
  letter-spacing: 0.04em;
}

.oa-float-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oa-cyan);
  box-shadow: 0 0 12px var(--oa-cyan);
}

.oa-float-chip--one { left: 20%; top: 18%; }
.oa-float-chip--two { left: 47%; bottom: 17%; }
.oa-float-chip--three { right: 8%; top: 23%; }

.oa-signal-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--oa-line);
  border-bottom: 1px solid var(--oa-line);
}

.oa-signal-bar > div {
  padding: 24px 26px;
  border-right: 1px solid var(--oa-line);
}

.oa-signal-bar > div:last-child {
  border-right: 0;
}

.oa-signal-bar strong,
.oa-signal-bar span {
  display: block;
}

.oa-signal-bar strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 17px;
}

.oa-signal-bar span {
  color: #738aa7;
  font-size: 11px;
}

.oa-section {
  position: relative;
  z-index: 1;
  padding: 112px 0;
}

.oa-section h2,
.oa-final h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(38px, 5.3vw, 68px);
  line-height: 1.02;
}

.oa-intro,
.oa-section-head > p,
.oa-human-copy > p,
.oa-faq header > p,
.oa-final-copy > p {
  color: var(--oa-muted);
  font-size: 16px;
  line-height: 1.75;
}

.oa-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 72px;
  align-items: center;
}

.oa-pain-list {
  margin-top: 38px;
  border-top: 1px solid var(--oa-line);
}

.oa-pain-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--oa-line);
}

.oa-pain-list > div > span {
  color: var(--oa-blue);
  font: 800 11px/1.5 ui-monospace, monospace;
}

.oa-pain-list p,
.oa-pain-list strong,
.oa-pain-list small {
  display: block;
  margin: 0;
}

.oa-pain-list strong {
  color: #fff;
  font-size: 14px;
}

.oa-pain-list small {
  margin-top: 5px;
  color: #7188a7;
  font-size: 12px;
  line-height: 1.55;
}

.oa-transform-media,
.oa-human-media {
  position: relative;
  margin: 0;
  border: 1px solid rgba(77, 195, 255, 0.22);
  border-radius: 28px;
  background: #07101b;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.oa-transform-media::after,
.oa-human-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(5, 10, 18, 0.8), transparent 45%);
}

.oa-transform-media img,
.oa-human-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.oa-transform-media:hover img,
.oa-human-media:hover img {
  transform: scale(1.035);
}

.oa-transform-media figcaption {
  position: absolute;
  inset: auto 22px 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.oa-transform-media figcaption span {
  padding: 11px 13px;
  border: 1px solid rgba(77, 195, 255, 0.18);
  border-radius: 11px;
  background: rgba(6, 13, 23, 0.72);
  backdrop-filter: blur(12px);
  color: #8499b5;
  font-size: 10px;
}

.oa-transform-media figcaption b {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 11px;
}

.oa-flow-section {
  background:
    radial-gradient(800px 300px at 50% 50%, rgba(42, 168, 255, 0.09), transparent 72%),
    rgba(8, 15, 25, 0.62);
  border-top: 1px solid rgba(77, 195, 255, 0.09);
  border-bottom: 1px solid rgba(77, 195, 255, 0.09);
}

.oa-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 62px;
}

.oa-section-head > p {
  margin: 0;
}

.oa-section-head--center {
  display: block;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.oa-section-head--center > p {
  max-width: 700px;
  margin: 24px auto 0;
}

.oa-flow-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(77, 195, 255, 0.35) transparent;
}

.oa-flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(145px, 1fr));
  min-width: 940px;
}

.oa-flow-track::before,
.oa-flow-track::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 39px;
  height: 2px;
}

.oa-flow-track::before {
  background: rgba(77, 195, 255, 0.16);
}

.oa-flow-track::after {
  width: 24%;
  right: auto;
  background: linear-gradient(90deg, transparent, var(--oa-cyan), transparent);
  box-shadow: 0 0 16px rgba(77, 195, 255, 0.8);
  animation: oaFlow 4.8s linear infinite;
}

.oa-flow-node {
  position: relative;
  z-index: 2;
  padding: 0 18px;
  text-align: center;
}

.oa-flow-node > span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 19px;
  border: 1px solid rgba(77, 195, 255, 0.28);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(19, 38, 59, 0.96), rgba(7, 15, 26, 0.98));
  box-shadow: inset 0 0 24px rgba(42, 168, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.3);
  color: var(--oa-cyan);
  font: 900 14px/1 ui-monospace, monospace;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.oa-flow-node:hover > span {
  transform: translateY(-5px);
  border-color: rgba(77, 195, 255, 0.68);
  box-shadow: inset 0 0 28px rgba(42, 168, 255, 0.14), 0 20px 35px rgba(0, 0, 0, 0.36);
}

.oa-flow-node--human > span {
  border-color: rgba(77, 195, 255, 0.78);
  background: linear-gradient(145deg, rgba(42, 168, 255, 0.34), rgba(9, 23, 38, 0.98));
  box-shadow: 0 0 32px rgba(42, 168, 255, 0.2);
}

.oa-flow-node strong,
.oa-flow-node small {
  display: block;
}

.oa-flow-node strong {
  color: #fff;
  font-size: 14px;
}

.oa-flow-node small {
  margin-top: 7px;
  color: #7188a6;
  font-size: 10px;
  line-height: 1.5;
}

.oa-outcomes {
  background: linear-gradient(180deg, rgba(7, 13, 22, 0.7), rgba(10, 20, 33, 0.72));
}

.oa-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.oa-outcome {
  position: relative;
  min-height: 184px;
  padding: 27px;
  border: 1px solid var(--oa-line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(42, 168, 255, 0.1), transparent 42%),
    linear-gradient(145deg, rgba(14, 27, 43, 0.92), rgba(7, 14, 24, 0.92));
  overflow: hidden;
}

.oa-outcome--wide {
  grid-column: span 2;
}

.oa-outcome span {
  color: var(--oa-blue);
  font: 900 11px/1 ui-monospace, monospace;
}

.oa-outcome p {
  max-width: 560px;
  margin: 38px 0 0;
  color: #d7e6f4;
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.45;
}

.oa-deliverable-list {
  border-top: 1px solid var(--oa-line);
}

.oa-deliverable {
  display: grid;
  grid-template-columns: 54px 1fr 26px;
  gap: 20px;
  align-items: center;
  min-height: 90px;
  border-bottom: 1px solid var(--oa-line);
  transition: background 0.25s ease, padding 0.25s ease;
}

.oa-deliverable:hover {
  padding-inline: 18px;
  background: linear-gradient(90deg, rgba(42, 168, 255, 0.08), transparent);
}

.oa-deliverable > span {
  color: var(--oa-blue);
  font: 800 11px/1 ui-monospace, monospace;
}

.oa-deliverable p {
  margin: 0;
  color: #c6d6e8;
  font-size: 16px;
  line-height: 1.55;
}

.oa-deliverable i {
  color: #5a718e;
  font-style: normal;
}

.oa-human {
  padding-top: 60px;
}

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

.oa-human-media img {
  aspect-ratio: 4 / 3;
}

.oa-human-media figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(77, 195, 255, 0.24);
  border-radius: 14px;
  background: rgba(5, 12, 21, 0.7);
  backdrop-filter: blur(15px);
}

.oa-human-media figcaption span,
.oa-human-media figcaption strong {
  display: block;
}

.oa-human-media figcaption span {
  color: var(--oa-cyan);
  font: 800 9px/1 ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oa-human-media figcaption strong {
  margin-top: 7px;
  color: #fff;
  font-size: 15px;
}

.oa-human-copy h2 {
  font-size: clamp(36px, 4.5vw, 59px);
}

.oa-human-copy > p {
  margin: 25px 0 0;
}

.oa-check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.oa-check-list li {
  position: relative;
  padding: 12px 14px 12px 44px;
  border: 1px solid rgba(77, 195, 255, 0.13);
  border-radius: 12px;
  background: rgba(14, 27, 43, 0.5);
  color: #aebfd3;
  font-size: 13px;
  line-height: 1.5;
}

.oa-check-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 11px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: rgba(42, 168, 255, 0.14);
  color: var(--oa-cyan);
  font-weight: 900;
}

.oa-timeline {
  background:
    linear-gradient(90deg, rgba(42, 168, 255, 0.04) 1px, transparent 1px),
    rgba(7, 14, 24, 0.58);
  background-size: 25% 100%;
}

.oa-timeline-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--oa-line);
  list-style: none;
}

.oa-timeline-list li {
  position: relative;
  min-height: 280px;
  padding: 35px 28px;
  border-right: 1px solid var(--oa-line);
}

.oa-timeline-list li:first-child {
  border-left: 1px solid var(--oa-line);
}

.oa-timeline-list li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oa-blue);
  box-shadow: 0 0 16px rgba(77, 195, 255, 0.9);
}

.oa-timeline-list span {
  color: var(--oa-blue);
  font: 900 10px/1 ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oa-timeline-list h3 {
  margin: 55px 0 12px;
  color: #fff;
  font-size: 25px;
}

.oa-timeline-list p {
  color: #7e93ad;
  font-size: 13px;
  line-height: 1.65;
}

.oa-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.oa-price-panel,
.oa-fit-panel {
  border: 1px solid var(--oa-line);
  border-radius: 28px;
}

.oa-price-panel {
  position: relative;
  padding: clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 90% 0%, rgba(42, 168, 255, 0.25), transparent 34%),
    linear-gradient(145deg, #102238, #091421 75%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.oa-price-panel::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(77, 195, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(77, 195, 255, 0.035), 0 0 0 110px rgba(77, 195, 255, 0.02);
}

.oa-price-panel > * {
  position: relative;
  z-index: 2;
}

.oa-price-panel h2 {
  max-width: 700px;
  font-size: clamp(34px, 4.6vw, 56px);
}

.oa-price-line {
  margin: 38px 0 22px;
}

.oa-price-line small,
.oa-price-line strong {
  display: block;
}

.oa-price-line small {
  color: #7790ad;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.oa-price-line strong {
  margin-top: 5px;
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: -0.045em;
}

.oa-price-panel > p {
  max-width: 620px;
  color: #9eb2c9;
  line-height: 1.7;
}

.oa-price-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.oa-price-includes li {
  position: relative;
  padding-left: 22px;
  color: #c3d3e4;
  font-size: 12px;
  line-height: 1.5;
}

.oa-price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--oa-cyan);
  font-weight: 900;
}

.oa-note {
  margin: 14px 0 0 !important;
  color: #677e9a !important;
  font-size: 10px !important;
}

.oa-fit-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 4vw, 42px);
  background: rgba(10, 20, 33, 0.72);
}

.oa-fit-panel .oa-check-list {
  margin-top: 20px;
}

.oa-followup {
  padding: 24px;
  border: 1px solid rgba(77, 195, 255, 0.17);
  border-radius: 18px;
  background: rgba(42, 168, 255, 0.06);
}

.oa-followup span,
.oa-followup strong {
  display: block;
}

.oa-followup span {
  color: #7189a7;
  font: 800 9px/1 ui-monospace, monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.oa-followup strong {
  margin-top: 9px;
  color: #fff;
  font-size: 22px;
}

.oa-followup p,
.oa-exclusions li {
  color: #859ab4;
  font-size: 12px;
  line-height: 1.6;
}

.oa-exclusions {
  border-top: 1px solid var(--oa-line);
}

.oa-exclusions summary,
.oa-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
}

.oa-exclusions summary {
  padding-top: 19px;
  color: #c7d6e6;
  font-size: 12px;
  font-weight: 800;
}

.oa-exclusions summary::-webkit-details-marker,
.oa-faq-list summary::-webkit-details-marker {
  display: none;
}

.oa-exclusions summary span,
.oa-faq-list summary span {
  color: var(--oa-cyan);
  transition: transform 0.2s ease;
}

.oa-exclusions[open] summary span,
.oa-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.oa-exclusions ul {
  margin-bottom: 0;
  padding-left: 18px;
}

.oa-faq {
  padding-top: 72px;
}

.oa-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.oa-faq header h2 {
  font-size: clamp(36px, 4.4vw, 58px);
}

.oa-faq header > p {
  margin-top: 24px;
}

.oa-faq-list {
  border-top: 1px solid var(--oa-line);
}

.oa-faq-list details {
  border-bottom: 1px solid var(--oa-line);
}

.oa-faq-list summary {
  min-height: 76px;
  color: #e2edf8;
  font-size: 15px;
  font-weight: 800;
}

.oa-faq-list details > p {
  max-width: 720px;
  margin: -5px 0 24px;
  color: #859bb6;
  font-size: 13px;
  line-height: 1.7;
}

.oa-final {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  align-items: center;
  margin-top: 30px;
  overflow: hidden;
}

.oa-final-art {
  position: absolute;
  inset: 0;
}

.oa-final-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.98) 0%, rgba(5, 10, 18, 0.88) 45%, rgba(5, 10, 18, 0.24) 78%),
    linear-gradient(0deg, #050a12, transparent 35%, #050a12);
}

.oa-final-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
}

.oa-final-copy {
  padding-block: 110px;
}

.oa-final-copy h2 {
  max-width: 880px;
}

.oa-final-copy > p {
  max-width: 690px;
  margin-top: 25px;
}

.oa-sticky {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(670px, calc(100% - 28px));
  padding: 11px 12px 11px 17px;
  border: 1px solid rgba(77, 195, 255, 0.32);
  border-radius: 16px;
  background: rgba(7, 15, 26, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48), 0 0 34px rgba(42, 168, 255, 0.1);
  backdrop-filter: blur(18px);
  transform: translate(-50%, calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.2,.75,.2,1), opacity 0.25s ease;
}

.oa-sticky.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.oa-sticky > div span,
.oa-sticky > div strong {
  display: block;
}

.oa-sticky > div span {
  color: var(--oa-cyan);
  font: 800 9px/1 ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oa-sticky > div strong {
  margin-top: 5px;
  color: #fff;
  font-size: 12px;
}

.oa-sticky > a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 10px;
  background: var(--oa-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.oa-sticky > button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #7790ad;
  font-size: 18px;
  cursor: pointer;
}

.oa-js .oa-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.75,.2,1);
}

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

@keyframes oaPulse {
  0%, 100% { transform: scale(0.85); opacity: 0.65; }
  50% { transform: scale(1); opacity: 1; }
}

@keyframes oaHeroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1.2%, -0.7%, 0); }
}

@keyframes oaFlow {
  from { transform: translateX(-30%); }
  to { transform: translateX(350%); }
}

@media (max-width: 1050px) {
  .oa-hero-grid,
  .oa-split,
  .oa-human-grid {
    grid-template-columns: 1fr;
  }
  .oa-hero-grid { gap: 18px; }
  .oa-hero-copy { max-width: 760px; }
  .oa-hero-media {
    min-height: 470px;
    margin-right: -24px;
    border-radius: 28px 0 0 28px;
  }
  .oa-hero-media img { height: 470px; }
  .oa-split,
  .oa-human-grid { gap: 46px; }
  .oa-transform-media,
  .oa-human-media { width: min(850px, 100%); margin-inline: auto; }
  .oa-section-head { grid-template-columns: 1fr; gap: 22px; }
  .oa-outcome-grid { grid-template-columns: 1fr 1fr; }
  .oa-outcome--wide { grid-column: span 2; }
  .oa-offer-grid { grid-template-columns: 1fr; }
  .oa-faq-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 760px) {
  .oa-shell { width: min(100% - 32px, 1200px); }
  .oa-hero { padding-top: 96px; }
  .oa-hero-grid { min-height: auto; }
  .oa-breadcrumb { margin-bottom: 26px; }
  .oa-hero h1 { font-size: clamp(43px, 13vw, 64px); }
  .oa-hero-media {
    min-height: 360px;
    margin-right: -16px;
    border-radius: 23px 0 0 23px;
  }
  .oa-hero-media img { height: 360px; object-position: 57% center; }
  .oa-float-chip { font-size: 8px; padding: 7px 9px; }
  .oa-float-chip--one { left: 6%; top: 13%; }
  .oa-float-chip--two { left: 23%; bottom: 13%; }
  .oa-float-chip--three { right: 4%; top: 20%; }
  .oa-signal-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }
  .oa-signal-bar > div:nth-child(2) { border-right: 0; }
  .oa-signal-bar > div:nth-child(-n+2) { border-bottom: 1px solid var(--oa-line); }
  .oa-signal-bar > div { padding: 18px 10px; }
  .oa-section { padding: 78px 0; }
  .oa-section h2,
  .oa-final h2 { font-size: clamp(36px, 11vw, 54px); }
  .oa-section-head { margin-bottom: 42px; }
  .oa-transform-media figcaption { inset: auto 12px 11px; }
  .oa-outcome-grid { grid-template-columns: 1fr; }
  .oa-outcome--wide { grid-column: auto; }
  .oa-outcome { min-height: 155px; }
  .oa-deliverable {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    min-height: 96px;
    padding-block: 14px;
  }
  .oa-deliverable i { display: none; }
  .oa-human-media figcaption { left: 12px; right: 12px; bottom: 12px; }
  .oa-timeline { background-size: 100% 25%; }
  .oa-timeline-list { grid-template-columns: 1fr; }
  .oa-timeline-list li {
    min-height: 210px;
    border-left: 1px solid var(--oa-line);
    border-bottom: 1px solid var(--oa-line);
  }
  .oa-timeline-list h3 { margin-top: 34px; }
  .oa-price-panel,
  .oa-fit-panel { border-radius: 22px; }
  .oa-price-includes { grid-template-columns: 1fr; }
  .oa-final { min-height: 720px; }
  .oa-final-art::after {
    background: linear-gradient(0deg, rgba(5,10,18,.98) 0%, rgba(5,10,18,.82) 70%, rgba(5,10,18,.44));
  }
  .oa-final-art img { object-position: 62% center; opacity: 0.62; }
  .oa-actions { flex-direction: column; }
  .oa-actions .oa-btn { width: 100%; }
  .oa-microcopy { justify-content: center; }
  .oa-sticky {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    bottom: 82px;
  }
  .oa-sticky > div span { display: none; }
  .oa-sticky > div strong { margin: 0; font-size: 10px; }
  .oa-sticky > a { min-height: 38px; padding-inline: 12px; }
  .oa-sticky > button { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .oa-page *,
  .oa-sticky {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .oa-js .oa-reveal {
    opacity: 1;
    transform: none;
  }
}
