.orbytra-home {
  --home-ink: #071126;
  --home-muted: #64748b;
  --home-line: #dce3e9;
  --home-cyan: #2fc2ff;
  --home-violet: #7468ff;
  --home-magenta: #e84d9b;
  overflow: hidden;
  background: #fff;
  color: var(--home-ink);
  font-family: var(--orby-font-family);
  font-size: var(--orby-copy-desktop);
  line-height: 1.55;
}

.orbytra-home,
.orbytra-home *,
.orbytra-home *::before,
.orbytra-home *::after { box-sizing: border-box; }
.orbytra-home a { color: inherit; text-decoration: none; }

.home .site-content,
.home #content,
.home .ast-container,
.home .content-area,
.home .ast-article-single,
.home .entry-content {
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
}
.home header.entry-header { display: none !important; }

.home-container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.home-section { padding: 112px 0; }
.home-eyebrow {
  margin: 0 0 16px;
  color: #168ab4;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-eyebrow--light { color: var(--home-cyan); }
.home-heading { max-width: 820px; }
.home-heading--center { margin: 0 auto; text-align: center; }
.home-heading h2,
.home-final-cta h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.03;
}
.home-heading > p:not(.home-eyebrow),
.home-final-cta p:not(.home-eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--home-muted);
}
.home-heading--center > p:not(.home-eyebrow) { margin-right: auto; margin-left: auto; }
.home-heading--dark h2,
.home-final-cta h2 { color: #fff; }
.home-heading--dark > p:not(.home-eyebrow),
.home-final-cta p:not(.home-eyebrow) { color: rgba(255, 255, 255, .66); }

.home-button {
  min-height: var(--orby-button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border-radius: var(--orby-button-radius);
  font-size: var(--orby-button-font-size);
  font-weight: 750;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.home-button:hover,
.home-button:focus-visible { transform: translateY(-2px); }
.home-button--primary {
  border: 0;
  background: var(--home-cyan);
  color: #041527 !important;
  box-shadow: 0 0 28px rgba(47, 194, 255, .34);
}
.home-button--primary:hover,
.home-button--primary:focus-visible { box-shadow: 0 8px 34px rgba(47, 194, 255, .48); }
.home-button--glass {
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .1);
  color: #fff !important;
  backdrop-filter: blur(14px);
}
.home-button--glass:hover,
.home-button--glass:focus-visible { border-color: rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .15); }
.home-button--large { min-width: 220px; min-height: 54px; }

/* Hero */
.home-hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 20px 70px;
  color: #fff;
  background: #030916;
}
.home-hero__media {
  position: absolute;
  inset: -2%;
  z-index: -2;
  background: url("https://orbytra.com/wp-content/uploads/2026/03/future-scaled.png") center 54% / cover no-repeat;
  transform: scale(1.025);
  animation: homeHeroAtmosphere 20s ease-in-out infinite alternate;
}
.home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 58% 38%, rgba(47, 194, 255, .11), transparent 34%),
    linear-gradient(180deg, rgba(2, 7, 17, .3), rgba(2, 7, 17, .16) 42%, rgba(2, 7, 17, .88)),
    linear-gradient(90deg, rgba(2, 7, 17, .5), transparent 50%, rgba(2, 7, 17, .28));
}
.home-hero__content {
  width: min(820px, 100%);
  text-align: center;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .48);
}
.orbytra-home.motion-ready .home-hero__content > * {
  opacity: 0;
  transform: translateY(12px);
  animation: homeHeroReveal .78s cubic-bezier(.22, .61, .36, 1) forwards;
}
.orbytra-home.motion-ready .home-hero__content > .home-eyebrow { animation-delay: .08s; }
.orbytra-home.motion-ready .home-hero__content > h1 { animation-delay: .16s; }
.orbytra-home.motion-ready .home-hero__content > p:not(.home-eyebrow) { animation-delay: .28s; }
.orbytra-home.motion-ready .home-actions { animation-delay: .4s; }
.orbytra-home.motion-ready .home-hero__scroll { animation-delay: .5s; }
.home-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  color: #fff !important;
  font-size: var(--orby-h1-desktop);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
}
.home-hero__content > p:not(.home-eyebrow) {
  max-width: 700px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}
.home-actions { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.home-hero__scroll {
  position: relative;
  width: 20px;
  height: 32px;
  display: block;
  margin: 26px auto 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
}
.home-hero__scroll span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: homeScroll 1.8s infinite;
}

/* Connected system */
.home-system { background: linear-gradient(180deg, #def4ff 0, #fff 44%); }
.home-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 64px);
  margin-top: 72px;
}
.home-system-item {
  position: relative;
  padding: 30px 0 0;
  border-top: 1px solid var(--home-line);
}
.home-system-item > span {
  display: none;
}
.home-system-item__label,
.home-deployment-card__label {
  position: relative;
  margin: 0 0 14px;
  color: var(--home-muted);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.home-system-item h3,
.home-deployment-card h3,
.home-outcome h3 {
  position: relative;
  margin: 0;
  color: #123b5a;
  font-size: 24px;
  font-weight: 760;
  line-height: 1.14;
}
.home-system-item > p:last-child,
.home-deployment-card > p:not(.home-deployment-card__label),
.home-outcome p {
  position: relative;
  margin: 16px 0 0;
  color: var(--home-muted);
}

/* Calculator */
.home-calculator-section { background: #f4f4f4; }
.home-calculator-section .home-heading h2 span {
  background: linear-gradient(90deg, #078bc2, #7468ff 52%, #e84d9b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ia-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
  margin-top: 72px;
}
.ia-calculator-inputs { display: grid; gap: 32px; }
.ia-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 700;
}
.ia-field small { display: block; margin-top: 7px; color: #8793a5; font-size: 12px; }
.ia-input-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #cbd3dd;
  transition: border-color .2s ease;
}
.ia-input-wrap:focus-within { border-color: var(--home-cyan); box-shadow: 0 8px 18px -18px rgba(47, 194, 255, .9); }
.ia-field input {
  width: 100%;
  min-width: 0;
  height: 48px;
  margin: 0;
  padding: 0 76px 0 0;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #334155;
  font: inherit;
  font-size: 18px;
  line-height: 48px;
  appearance: textfield;
}
.ia-input-suffix {
  position: absolute;
  top: 50%;
  right: 52px;
  color: #64748b;
  font-size: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}
.ia-step-controls {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-left: 1px solid rgba(100, 116, 139, .16);
}
.ia-step-controls button {
  min-width: 38px;
  min-height: 23px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: color .16s ease, background-color .16s ease;
}
.ia-step-controls button + button { border-top: 1px solid rgba(100, 116, 139, .16); }
.ia-step-controls button:hover,
.ia-step-controls button:focus-visible { background: rgba(47, 194, 255, .08); color: #047fab; }
.ia-step-controls span { font-size: 7px; line-height: 1; }
.ia-calculator-result { min-height: 320px; }
.ia-line { height: 1px; margin-bottom: 52px; background: #d9dee5; }
.ia-number {
  color: #334155;
  font-size: clamp(4.6rem, 8vw, 7.3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .92;
  font-variant-numeric: tabular-nums;
}
.ia-sub { margin: 28px 0 0; color: #666; }
.ia-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 54px;
}
.ia-metric-number { color: #334155; font-size: 2.25rem; font-weight: 760; font-variant-numeric: tabular-nums; }
.ia-metrics p { margin: 8px 0 0; color: #71717a; font-size: 14px; }
.ia-calculator-result.is-updating .ia-number,
.ia-calculator-result.is-updating .ia-metric-number { animation: homeMetricPulse .24s ease; }

/* Architecture carousel */
.orbytra-verticales { position: relative; padding: 112px 0 76px; overflow: hidden; background: #fff; }
.orbytra-verticales__track-wrap { width: 100%; margin-top: 64px; background: #fff; }
.orbytra-verticales__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 max(20px, calc((100vw - 1160px) / 2)) 72px;
  scroll-behavior: smooth;
  scroll-padding-inline: max(20px, calc((100vw - 1160px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.orbytra-verticales__track::-webkit-scrollbar { display: none; }
.orbytra-vertical-card {
  width: min(82vw, 1040px);
  height: 620px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background-color: #050912;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 54px rgba(7, 17, 38, .12);
  scroll-snap-align: start;
}
.orbytra-card-link { display: block; width: 100%; height: 100%; color: #fff !important; }
.orbytra-vertical-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 14, .08), rgba(2, 6, 14, .18) 46%, rgba(2, 6, 14, .9)),
    linear-gradient(90deg, rgba(2, 6, 14, .34), transparent 68%);
  transition: opacity .35s ease;
}
.orbytra-vertical-card__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 46px;
}
.orbytra-card-kicker {
  margin: 0 0 12px !important;
  color: var(--home-cyan) !important;
  font-size: .68rem !important;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.orbytra-vertical-card__content h3 {
  margin: 0;
  color: #fff !important;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
}
.orbytra-vertical-card__content > p:not(.orbytra-card-kicker) { max-width: 590px; margin: 15px 0 0; color: rgba(255, 255, 255, .76); }
.orbytra-vertical-card__content > span {
  display: inline-flex;
  margin-top: 22px;
  color: #fff;
  font-size: .8rem;
  font-weight: 750;
  opacity: .82;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
}
.orbytra-verticales__controls { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.orbytra-verticales__controls > p { margin: 0; color: #94a3b8; font-size: .78rem; font-variant-numeric: tabular-nums; }
.orbytra-verticales__current { color: var(--home-ink); font-weight: 800; }
.orbytra-verticales__nav { display: flex; gap: 10px; }
.orbytra-vert-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #dce3e9;
  border-radius: 50%;
  background: #f0f3f6;
  color: #334155;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.orbytra-vert-btn:hover,
.orbytra-vert-btn:focus-visible { background: var(--home-ink); color: #fff; transform: translateY(-2px); }
.orbytra-vert-btn:disabled { opacity: .35; cursor: default; transform: none; }
@media (hover: hover) {
  .orbytra-vertical-card:hover .orbytra-vertical-card__overlay { opacity: .72; }
  .orbytra-vertical-card:hover .orbytra-vertical-card__content > span { opacity: 1; transform: translateY(0); }
}

/* Deployment */
.home-deployment { background: linear-gradient(180deg, #edf8ff, #fff 42%); }
.home-deployment .home-heading h2 {
  background: linear-gradient(180deg, #8795a8, #d9e0e8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-deployment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}
.home-deployment-card {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 42px rgba(7, 17, 38, .07);
  transition: transform .22s ease, box-shadow .22s ease;
}
.home-deployment-card > span {
  position: absolute;
  top: -18px;
  right: 14px;
  color: rgba(7, 17, 38, .055);
  font-size: 6.4rem;
  font-weight: 850;
  line-height: 1;
}
.home-deployment-card__label { margin-bottom: 42px; }
.home-deployment-card ul { display: grid; gap: 9px; margin: 25px 0 0; padding: 0; list-style: none; }
.home-deployment-card li { position: relative; padding-left: 17px; color: #475569; font-size: .82rem; }
.home-deployment-card li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 10px rgba(47, 194, 255, .5);
}
@media (hover: hover) {
  .home-deployment-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(7, 17, 38, .12); }
}

/* Outcomes and CTA */
.home-outcomes {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(116, 104, 255, .16), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(47, 194, 255, .1), transparent 30%),
    linear-gradient(180deg, #061829, #030712 78%);
}
.home-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 64px;
}
.home-outcome {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}
.home-outcome > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--home-violet), #3d43d8);
  box-shadow: 0 12px 28px rgba(116, 104, 255, .2);
  font-size: 1.1rem;
}
.home-outcome h3 { color: #fff; }
.home-outcome p { color: rgba(255, 255, 255, .62); }
.home-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0;
  color: #fff;
  background: #050a16;
}
.home-final-cta__glow {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(47, 194, 255, .16), transparent 28%),
    radial-gradient(circle at 78% 40%, rgba(232, 77, 155, .12), transparent 30%);
  animation: homeCtaBreath 8s ease-in-out infinite alternate;
}
.home-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 54px;
  align-items: end;
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.home-final-cta h2 { max-width: 850px; }
.home-final-cta p:not(.home-eyebrow) { max-width: 670px; }

/* Motion */
.orbytra-home.motion-ready .home-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .72s cubic-bezier(.22, .61, .36, 1), transform .72s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--home-reveal-delay, 0ms);
}
.orbytra-home.motion-ready .home-reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes homeHeroAtmosphere {
  from { transform: scale(1.025) translate3d(-.2%, 0, 0); }
  to { transform: scale(1.055) translate3d(.3%, -.2%, 0); }
}
@keyframes homeHeroReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes homeScroll {
  0%, 100% { opacity: .3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 10px); }
}
@keyframes homeMetricPulse {
  0% { opacity: .55; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes homeCtaBreath {
  from { opacity: .65; transform: scale(1); }
  to { opacity: 1; transform: scale(1.035); }
}

/* Responsive */
@media (max-width: 1080px) {
  .home-hero h1 { font-size: var(--orby-h1-tablet-large); }
  .home-section,
  .orbytra-verticales { padding-top: 96px; padding-bottom: 96px; }
  .home-outcomes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .orbytra-vertical-card { width: 84vw; height: 560px; }
}
@media (max-width: 900px) {
  .home-hero h1 { font-size: var(--orby-h1-tablet); }
  .home-system-grid,
  .home-deployment-grid { grid-template-columns: 1fr; }
  .home-system-grid { gap: 38px; }
  .home-system-item { min-height: 0; }
  .ia-calculator { grid-template-columns: 1fr; gap: 64px; }
  .ia-calculator-result,
  .home-deployment-card { min-height: 0; }
  .home-final-cta__inner { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 640px) {
  .orbytra-home { font-size: var(--orby-copy-mobile); }
  .home-container { width: calc(100% - 28px - env(safe-area-inset-left) - env(safe-area-inset-right)); }
  .home-section,
  .orbytra-verticales { padding-top: 78px; padding-bottom: 78px; }
  .home-heading h2,
  .home-final-cta h2 { font-size: var(--orby-h2-mobile) !important; line-height: 1.06; }
  .home-heading > p:not(.home-eyebrow),
  .home-final-cta p:not(.home-eyebrow),
  .home-system-item > p:last-child,
  .home-deployment-card > p:not(.home-deployment-card__label),
  .home-outcome p { font-size: var(--orby-copy-mobile); }
  .home-hero { min-height: 100svh; padding: 112px 14px 38px; }
  .home-hero__media { background-position: 58% center; transform: scale(1.035); }
  .home-hero h1 { font-size: var(--orby-h1-mobile) !important; line-height: 1.02; }
  .home-hero__content > p:not(.home-eyebrow) { max-width: 34ch; margin-top: 18px; font-size: var(--orby-copy-mobile); line-height: 1.52; }
  .home-actions { width: 100%; display: grid; gap: 10px; margin-top: 24px; }
  .home-button { width: 100%; min-height: 50px; }
  .home-hero__scroll { margin-top: 18px; }
  .home-system-grid,
  .home-calculator-section .ia-calculator,
  .home-deployment-grid,
  .home-outcomes-grid { margin-top: 48px; }
  .home-system-item { min-height: 0; padding-top: 24px; }
  .home-system-item__label { margin-bottom: 12px; }
  .home-deployment-card__label { margin-bottom: 30px; }
  .ia-calculator { gap: 54px; }
  .ia-calculator-inputs { gap: 28px; }
  .ia-field label { font-size: 15px; }
  .ia-number { font-size: clamp(3.5rem, 18vw, 5rem); }
  .ia-sub { margin-top: 20px; font-size: 15px; }
  .ia-metrics { gap: 18px; margin-top: 40px; }
  .ia-metric-number { font-size: 1.8rem; }
  .ia-metrics p { font-size: 12px; line-height: 1.4; }
  .orbytra-verticales__track-wrap { margin-top: 48px; }
  .orbytra-verticales__track { gap: 12px; padding-right: 14px; padding-bottom: 58px; padding-left: 14px; scroll-padding-inline: 14px; }
  .orbytra-vertical-card { width: calc(100vw - 28px); height: min(68svh, 540px); min-height: 430px; border-radius: 14px; }
  .orbytra-vertical-card__content { padding: 26px; }
  .orbytra-vertical-card__content h3 { font-size: 34px; }
  .orbytra-vertical-card__content > p:not(.orbytra-card-kicker) { font-size: 15px; line-height: 1.5; }
  .orbytra-verticales__controls { margin-top: 4px; }
  .orbytra-vert-btn { width: 44px; height: 44px; }
  .home-deployment-card { padding: 26px; border-radius: 14px; }
  .home-deployment-card > span { font-size: 5.4rem; }
  .home-outcomes-grid { grid-template-columns: 1fr; }
  .home-outcome { min-height: 0; padding: 24px; }
  .home-outcome > span { margin-bottom: 34px; }
  .home-final-cta { padding: 72px 0; }
  .home-final-cta__inner { gap: 34px; padding: 34px 0; }
}
@media (max-width: 375px) {
  .home-container { width: calc(100% - 24px - env(safe-area-inset-left) - env(safe-area-inset-right)); }
  .home-hero { padding-right: 12px; padding-left: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero__media,
  .home-hero__scroll span,
  .home-final-cta__glow { animation: none; }
  .orbytra-home.motion-ready .home-hero__content > *,
  .orbytra-home.motion-ready .home-reveal { opacity: 1; transform: none; animation: none; transition: none; }
  .home-button,
  .home-deployment-card,
  .orbytra-vertical-card__overlay,
  .orbytra-vertical-card__content > span,
  .orbytra-vert-btn { transition: none; }
}


/* Exact home sections approved from the visual reference. */
.home-deployment {
  padding-top: 72px;
  background: linear-gradient(0deg, rgb(245, 245, 245) 0%, rgb(255, 255, 255) 100%);
}

.home-deployment-heading {
  margin: 0 auto 68px;
  text-align: center;
}

.home-deployment-heading h2.despegue-h2 {
  display: inline-block;
  margin: 0;
  padding-bottom: .05em;
  background: linear-gradient(to bottom, #b8b8b8 0%, #e6e6e6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(5rem, 11vw, 10.5rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.08;
}

@media (min-width: 901px) {
  .home-deployment-heading h2.despegue-h2 {
    font-size: 100px;
  }
}

.home-deployment-grid {
  gap: 24px;
  margin-top: 0;
}

.home-deployment-card {
  min-height: 350px;
  padding: 58px 34px 34px;
  border-color: #d3dce7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(7, 17, 38, .07);
}

.home-deployment-card > span {
  top: 4px;
  right: auto;
  left: 10px;
  color: rgba(7, 17, 38, .055);
  font-size: 6.6rem;
}

.home-deployment-card h3 {
  position: relative;
  margin: 0;
  font-size: 21px;
}

.home-deployment-card > p {
  max-width: 34ch;
  margin-top: 14px;
  color: #64748b;
}

.home-deployment-card ul {
  margin-top: 26px;
}

.home-deployment-card li {
  font-size: 15px;
}

.home-final-cta {
  padding: 78px 0 72px;
  color: var(--home-ink);
  background: #f4f4f4;
}

.home-final-cta__layout {
  width: min(1280px, calc(100% - 160px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 62px;
  align-items: center;
}

.home-final-cta__panel {
  padding: 42px 44px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 194, 255, .09), transparent 30%),
    linear-gradient(145deg, #06172a, #030a19);
  box-shadow: 0 24px 58px rgba(7, 17, 38, .14);
}

.home-final-cta__panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 3vw, 2.95rem) !important;
  line-height: 1.22;
}

.home-final-cta__panel > p:not(.home-eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  line-height: 1.5;
}

.home-final-cta__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.home-button--outline {
  border: 1px solid rgba(255, 255, 255, .36);
  background: transparent;
  color: #fff !important;
}

.home-button--outline:hover,
.home-button--outline:focus-visible {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
}

.home-final-cta__steps {
  display: grid;
}

.home-final-cta__steps > div {
  padding: 18px 0 26px;
  border-top: 1px solid #cfd3d8;
}

.home-final-cta__steps > div:last-child {
  border-bottom: 1px solid #cfd3d8;
}

.home-final-cta__steps p {
  margin: 0 0 10px;
  color: #475569;
  font-size: 16px;
}

.home-final-cta__steps h3 {
  margin: 0;
  background: linear-gradient(90deg, #071126, #5e96bd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2rem, 2.8vw, 2.55rem) !important;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.08;
}

@media (max-width: 900px) {
  .home-final-cta__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-deployment {
    padding-top: 64px;
  }

  .home-deployment-heading {
    margin-bottom: 44px;
  }

  .home-deployment-heading h2.despegue-h2 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .home-deployment-card {
    min-height: 0;
    padding: 52px 24px 26px;
    border-radius: 14px;
  }

  .home-deployment-card > span {
    font-size: 5.5rem;
  }

  .home-deployment-card li {
    font-size: 14px;
  }

  .home-final-cta {
    padding: 72px 0;
  }

  .home-final-cta__layout {
    gap: 48px;
  }

  .home-final-cta__panel {
    padding: 28px 24px;
    border-radius: 14px;
  }

  .home-final-cta__panel h2 {
    font-size: 34px !important;
    line-height: 1.1;
  }

  .home-final-cta__panel > p:not(.home-eyebrow),
  .home-final-cta__steps p {
    font-size: 15px;
  }

  .home-final-cta__actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
  }

  .home-final-cta__steps h3 {
    font-size: 28px;
  }
}

.home-final-cta .home-final-cta__steps p {
  color: #475569;
}

.home-deployment > .home-container {
  width: min(1340px, calc(100% - 64px));
}

.home-final-cta__layout {
  width: min(1280px, calc(100% - 160px));
  margin: 0 auto;
}

@media (max-width: 640px) {
  .home-deployment > .home-container,
  .home-final-cta__layout {
    width: calc(100% - 28px - env(safe-area-inset-left) - env(safe-area-inset-right));
  }
}

.home-final-cta__panel h2 {
  font-size: clamp(2.45rem, 3vw, 2.95rem) !important;
}
