/* Feature: photo + stats */
.regions-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
  align-items: stretch;
}
.regions-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(
      160deg,
      rgba(11, 10, 31, 0.55) 0%,
      rgba(11, 10, 31, 0.15) 50%,
      rgba(124, 58, 237, 0.35) 100%
    ),
    radial-gradient(
      ellipse 60% 50% at 30% 30%,
      rgba(199, 191, 255, 0.45) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #1a1a3a 0%, #2d2d5f 60%, #4f46e5 100%);
}
.regions-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.regions-photo-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.regions-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(11, 10, 31, 0.55) 100%
  );
  z-index: 2;
}
.regions-photo-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  z-index: 3;
}
.regions-photo-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.regions-photo-caption {
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  z-index: 3;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.08);
  }
}

.regions-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.regions-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.regions-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.regions-stat-l {
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 6px;
  font-weight: 500;
}

/* Section sub-headers */

/* Markets grid */
.market-card:hover::before {
  opacity: 1;
}
.market-card.market-card-hq::before {
  background: var(--green);
  opacity: 1;
}
.market-card.market-card-ops::before {
  background: var(--indigo);
  opacity: 1;
}
.market-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.market-card-status.hq {
  background: var(--green-50);
  color: var(--green);
}
.market-card-status.ops {
  background: var(--indigo-50);
  color: var(--indigo);
}
.market-card-status.av {
  background: var(--bg-3);
  color: var(--text-3);
}
.market-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--text-3);
  font-weight: 500;
}

/* Service journey */

/* Footer grid */

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .values-grid,
  .segments-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    left: 25%;
    right: 25%;
  }
  .values-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .calc-inner,
  .ava-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .regions-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .regions-photo {
    min-height: 260px;
  }
  .regions-markets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .regions-markets-grid .market-card:nth-child(4),
  .regions-markets-grid .market-card:nth-child(5) {
    grid-column: span 1;
  }
  .regions-journey {
    grid-template-columns: repeat(2, 1fr);
  }
  .regions-journey::before {
    display: none;
  }
  .regions-sub-hd {
    flex-direction: column;
    align-items: start;
  }
  .regions-sub-hd p {
    text-align: left;
  }
  .mockup-body {
    grid-template-columns: 1fr;
  }
  .mockup-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 20px;
  }
  .nav-links,
  .btn-ghost {
    display: none;
  }
  .nav-ham {
    display: flex;
  }
  .nav-actions > .btn-primary {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px;
    gap: 4px;
    z-index: 99;
    box-shadow: var(--shadow);
  }
  .nav-links.open a {
    font-size: 15px;
    padding: 12px 16px;
  }

  .hero {
    padding: 120px 0 60px;
  }
  .hero-mockup {
    margin-top: 48px;
  }
  .mockup-float {
    display: none;
  }

  .section,
  .values,
  .segments,
  .calculator,
  .ava-section,
  .process,
  .regions,
  .proof,
  .values-strip-wrap,
  .faq,
  .final-cta {
    padding: 72px 0;
  }

  .values-grid,
  .segments-grid,
  .proof-grid,
  .ava-agents {
    grid-template-columns: 1fr;
  }
  .proof-logos-row {
    gap: 32px;
  }
  .proof-logo {
    font-size: 15px;
  }
  .proof-metric-num {
    font-size: 44px;
  }
  .regions-stats {
    grid-template-columns: 1fr 1fr;
  }
  .regions-markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .regions-markets-grid .market-card:nth-child(5) {
    grid-column: span 2;
  }
  .regions-journey {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 0;
  }
  .process-grid::before {
    display: none;
  }
  .process-phases {
    gap: 56px;
  }
  .process-phase-header {
    margin-bottom: 24px;
  }
  .values-strip {
    grid-template-columns: 1fr 1fr;
  }

  .mockup-stats {
    grid-template-columns: 1fr 1fr;
  }
  .mockup-activity {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-newsletter {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 20px;
    margin: 32px 0;
  }
  .footer-newsletter-text h4 {
    font-size: 18px;
  }
  .footer-newsletter-form {
    flex-direction: column;
  }
  .footer-newsletter-form button {
    width: 100%;
  }
  .footer-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-bot-right {
    width: 100%;
    justify-content: space-between;
  }
  .footer-badges {
    gap: 10px;
    padding: 20px 0;
  }
  .footer-badge {
    padding: 6px 10px;
    font-size: 11.5px;
    gap: 8px;
  }

  .clients-grid {
    gap: 24px;
  }
  .client-logo {
    font-size: 18px;
  }

  .seg-card {
    padding: 32px 24px;
  }
  .final-cta-card {
    padding: 56px 28px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }
  .hero-sub {
    font-size: 17px;
  }
}

/* === OTA PAGE HERO === */
.ota-page-hero {
  background: var(--ink);
  color: #fff;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.ota-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 50% at 50% 0%,
      rgba(199, 191, 255, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 50%,
      rgba(245, 158, 11, 0.08) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.ota-page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.ota-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}
.ota-page-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38b6ff;
  box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.25);
}
.ota-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 0 0 20px;
  color: #fff;
  text-wrap: balance;
}
.ota-page-hero h1 .ota-accent {
  background: linear-gradient(180deg, #c7bfff 0%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-page-hero p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 720px;
  margin: 0 auto 40px;
}

/* Lifecycle stage strip */
.ota-stages {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.ota-stage {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  text-align: left;
  min-width: 180px;
  transition: all 0.25s var(--ease);
  position: relative;
}
.ota-stage:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.ota-stage-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}
.ota-stage[data-stage="1"] .ota-stage-num {
  color: #f59e0b;
}
.ota-stage[data-stage="2"] .ota-stage-num {
  color: #38b6ff;
}
.ota-stage[data-stage="3"] .ota-stage-num {
  color: rgba(255, 255, 255, 0.35);
}
.ota-stage-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.ota-stage-service {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.ota-stage-service em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}
.ota-stage.soon {
  opacity: 0.7;
  cursor: default;
}
.ota-stage-arrow {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-display);
  font-size: 18px;
  padding: 0 4px;
}

/* === STAGE 01, HRS === */
.hrs {
  position: relative;
  padding: 100px 0 120px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hrs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 40% at 70% 20%,
      rgba(124, 58, 237, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 20% 80%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.hrs::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 58, 237, 0.3),
    transparent
  );
}
.hrs-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.hrs-hero {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 72px;
  padding: 0 16px;
}
.hrs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.hrs-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}
.hrs-stage-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #c7bfff;
  margin-right: 2px;
}
.hrs-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.8px;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
  padding-bottom: 0.12em;
}
.hrs-headline em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(180deg, #ffd580 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hrs-kicker {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 680px;
  margin: 0 auto;
}

/* HRS stats */
.hrs-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 64px;
  padding: 0 16px;
}
.hrs-stat-card {
  position: relative;
  padding: 40px 32px 32px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.18) 0%,
    rgba(124, 58, 237, 0.04) 100%
  );
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hrs-stat-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -20px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hrs-stat-num {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(80px, 9vw, 124px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -4px;
  background: linear-gradient(180deg, #ffd580 0%, #f59e0b 55%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.hrs-stat-num sup {
  font-size: 0.55em;
  vertical-align: 0.2em;
  margin-left: 2px;
}
.hrs-stat-label {
  position: relative;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.hrs-stat-card p {
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 360px;
}

/* HRS capabilities */
.hrs-capabilities {
  max-width: 880px;
  margin: 0 auto 56px;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}
.hrs-capabilities-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hrs-capabilities h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.hrs-capabilities-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f59e0b;
}
.hrs-capability-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.hrs-capability-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.hrs-capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.22);
}
.hrs-capability-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 1.8px solid #f59e0b;
  border-bottom: 1.8px solid #f59e0b;
  transform: rotate(-45deg);
}

/* HRS CTA */
.hrs-cta-row {
  text-align: center;
  padding: 0 16px;
}
.hrs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition:
    filter 0.25s var(--ease),
    transform 0.25s var(--ease);
  box-shadow:
    0 8px 24px rgba(124, 58, 237, 0.35),
    0 2px 6px rgba(124, 58, 237, 0.2);
}
.hrs-btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.hrs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  margin-left: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.hrs-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

/* === STAGE 03, CS & BACKOFFICE TEASER === */
.cs-teaser {
  position: relative;
  background: var(--ink);
  padding: 80px 0 100px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cs-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 40% at 50% 50%,
    rgba(6, 182, 212, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.cs-teaser-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
}
.cs-teaser-stage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #06b6d4;
  margin-bottom: 18px;
}
.cs-teaser h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cs-teaser p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  max-width: 540px;
  margin: 0 auto 24px;
}
.cs-teaser a {
  color: #06b6d4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(6, 182, 212, 0.5);
}
.cs-teaser a:hover {
  text-decoration-color: #06b6d4;
}

@media (max-width: 768px) {
  .ota-stages {
    flex-direction: column;
    gap: 8px;
  }
  .ota-stage {
    width: 100%;
  }
  .ota-stage-arrow {
    transform: rotate(90deg);
  }
  .hrs-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hrs-stat-card {
    padding: 28px 24px 24px;
  }
  .hrs-capability-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hrs-capabilities {
    padding: 28px 22px;
  }
  .hrs-btn-ghost {
    display: block;
    margin: 12px auto 0;
  }
}

/* === OTA HERO (new big home-page-style hero) === */
.ota-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 140px 0 80px;
  overflow: hidden;
}
.ota-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ota-hero-bg-grad {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 900px;
  background:
    radial-gradient(
      ellipse 45% 55% at 50% 0%,
      rgba(124, 58, 237, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 35% 45% at 25% 50%,
      rgba(56, 182, 255, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 30% 40% at 75% 50%,
      rgba(245, 158, 11, 0.15) 0%,
      transparent 55%
    );
  filter: blur(40px);
}
.ota-hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(124, 58, 237, 0.45) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(56, 182, 255, 0.4) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(245, 158, 11, 0.4) 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(6, 182, 212, 0.35) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(124, 58, 237, 0.25) 1px, transparent 1.6px);
  background-size:
    113px 97px,
    89px 71px,
    67px 53px,
    131px 109px,
    53px 79px;
  background-position:
    0 0,
    47px 31px,
    19px 41px,
    73px 17px,
    31px 5px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    black,
    transparent
  );
}
.ota-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px;
}
.ota-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}
.ota-hero-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38b6ff;
  box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.25);
  animation: pulse 2s infinite;
}
.ota-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
  padding-bottom: 0.1em;
}
.ota-hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, #c7bfff 0%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-hero-sub {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 720px;
  margin: 0 auto 36px;
}
.ota-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.ota-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition:
    filter 0.25s var(--ease),
    transform 0.25s var(--ease);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.4);
}
.ota-hero-btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.ota-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.ota-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hero stat strip */
.ota-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ota-hero-stat {
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.ota-hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}
.ota-hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
}
.ota-hero-stat-num.purple {
  background: linear-gradient(180deg, #c7bfff 0%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-hero-stat-num.amber {
  background: linear-gradient(180deg, #ffd580 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-hero-stat-num.blue {
  background: linear-gradient(180deg, #7dd0ff 0%, #38b6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-hero-stat-num.teal {
  background: linear-gradient(180deg, #67e8f9 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-hero-stat-l {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  font-weight: 500;
}

/* === OTA FINAL CTA === */
.ota-final-cta {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ota-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 50% at 50% 0%,
      rgba(124, 58, 237, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 100%,
      rgba(56, 182, 255, 0.1) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.ota-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.ota-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 18px;
  text-wrap: balance;
}
.ota-final-cta h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #c7bfff 0%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-final-cta p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 32px;
}
.ota-final-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ota-final-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.ota-final-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ota-final-trust span::before {
  content: "✓";
  color: #06b6d4;
  font-weight: 700;
}

@media (max-width: 768px) {
  .ota-hero {
    padding: 100px 0 60px;
  }
  .ota-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    padding: 18px 0;
  }
  .ota-hero-stat:nth-child(2)::after {
    display: none;
  }
  .ota-hero-stat {
    padding: 8px 0;
  }
  .ota-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .ota-hero-cta a {
    justify-content: center;
  }
  .ota-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* 1. ALL primary CTA buttons share the same brand gradient + shadow shape */
.hrs-btn-primary,
.ota-hero-btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 32px -6px rgba(79, 70, 229, 0.55);
}
.hrs-btn-primary:hover,
.ota-hero-btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 16px 40px -6px rgba(79, 70, 229, 0.7);
}

/* 2. Unified ghost buttons, same border, padding, hover */
.hrs-btn-ghost,
.ota-hero-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 26px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.hrs-btn-ghost:hover,
.ota-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

/* 3. Standardize ALL service-section vertical padding */
.hrs {
  padding: 100px 0 110px;
}
.cs-teaser {
  padding: 100px 0 100px;
}
.ota-final-cta {
  padding: 100px 0;
}

/* 4. Unified service-section deep background, single dark base with section accent overlays */
.hrs,
.otacs,
.cs-teaser,
.ota-final-cta {
  background: #07071a;
}

/* 5. Unified eyebrow chip pattern, shared template, only the dot color changes per stage */
.hrs-eyebrow,
.otacs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}
.hrs-eyebrow-dot,
.otacs-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.hrs-eyebrow-dot {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.22);
}

/* 6. Stage tag standardized, small uppercase label inside the eyebrow */
.hrs-stage-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-right: 4px;
}

/* 7. Unified hairline at top of each service section in its stage accent color, gives identity without fragmenting the layout */
.hrs::after,
.otacs::after,
.cs-teaser::after,
.ota-final-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 4;
  pointer-events: none;
}
.hrs::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 158, 11, 0.45),
    transparent
  );
}
.otacs::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 182, 255, 0.45),
    transparent
  );
}
.cs-teaser::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(6, 182, 212, 0.45),
    transparent
  );
}
.ota-final-cta::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 58, 237, 0.45),
    transparent
  );
}

/* 8. Lifecycle flow indicator, subtle vertical line between service sections
   creates a visual "thread" through the page */
.hrs::before {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.5),
    rgba(56, 182, 255, 0.3)
  );
  z-index: 4;
  pointer-events: none;
}
.otacs::before {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(
    180deg,
    rgba(56, 182, 255, 0.4),
    rgba(6, 182, 212, 0.3)
  );
  z-index: 4;
  pointer-events: none;
}
.cs-teaser::before {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(
    180deg,
    rgba(6, 182, 212, 0.4),
    rgba(124, 58, 237, 0.3)
  );
  z-index: 4;
  pointer-events: none;
}

/* 9. Unify big-stat number visual treatment, same font weight, letter-spacing, line-height
   only the gradient color shifts to match the stage */
.hrs-stat-num,
.otacs-rd-num {
  letter-spacing: -0.025em;
}

/* 10. Unify capability/list bullet sizing across HRS and HCN */
.hrs-capability-list li::before,
.hrs-capability-list li::after {
  transition: none;
}

/* 11. Hero stat-strip dividers, match the lifecycle navigator border style */
.ota-hero-stats {
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.ota-hero-stat:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.08);
}

/* 12. Lifecycle navigator, unified card style matching the rest of the page */
.ota-stages .ota-stage {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.ota-stages .ota-stage:hover:not(.soon) {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* 13. CS teaser stage chip restyled to match other stage indicators */
.cs-teaser-stage {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

/* 14. Standardize headline padding-bottom across all dark editorial sections
   so descenders don't get clipped on gradient text */
.hrs-headline,
.otacs-headline,
.ota-hero h1,
.ota-final-cta h2 {
  padding-bottom: 0.12em;
}

/* 15. Add intentional max-width to the inner of each service section
   so they all share the same content rhythm */
.hrs-wrap,
.otacs-wrap {
  max-width: 1180px;
  padding: 0 24px;
}

/* 16. Soften the dotted hero pattern slightly so the rest of the page reads more unified
   (the dotted hero has been the loudest element) */
.ota-hero-bg-dots {
  opacity: 0.85;
}

/* === OTA PILLARS, three-card service grid (replaces separate HRS/HCN/CS sections) === */
.ota-pillars {
  background: #07071a;
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.ota-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 100%,
      rgba(124, 58, 237, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 30% at 0% 30%,
      rgba(245, 158, 11, 0.05) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 30% at 100% 30%,
      rgba(56, 182, 255, 0.05) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.ota-pillars-hd {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.ota-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}
.ota-eyebrow-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c7bfff;
}
.ota-pillars-hd h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.ota-pillars-hd h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #c7bfff 0%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-pillars-hd p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}
.ota-pillars-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.ota-pillar {
  position: relative;
  padding: 32px 28px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  --pc: #818cf8;
  --pc-soft: rgba(124, 58, 237, 0.1);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
  overflow: hidden;
}
.ota-pillar[data-stage="1"] {
  --pc: #f59e0b;
  --pc-soft: rgba(245, 158, 11, 0.1);
}
.ota-pillar[data-stage="2"] {
  --pc: #38b6ff;
  --pc-soft: rgba(56, 182, 255, 0.1);
}
.ota-pillar[data-stage="3"] {
  --pc: #06b6d4;
  --pc-soft: rgba(6, 182, 212, 0.1);
}
.ota-pillar:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}
.ota-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--pc);
  opacity: 0.7;
  border-radius: 0 0 2px 2px;
}
.ota-pillar-stage {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pc);
  margin-bottom: 14px;
  margin-top: 4px;
}
.ota-pillar-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.ota-pillar-tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
  font-weight: 500;
}
.ota-pillar-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  padding: 18px 20px;
  background: var(--pc-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}
.ota-pillar-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--pc);
  flex-shrink: 0;
}
.ota-pillar-stat-l {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}
.ota-pillar-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 18px;
}
.ota-pillar ul {
  list-style: none;
  margin-bottom: 26px;
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ota-pillar ul li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.ota-pillar ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--pc-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.ota-pillar ul li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 7px;
  height: 3px;
  border-left: 1.6px solid var(--pc);
  border-bottom: 1.6px solid var(--pc);
  transform: rotate(-45deg);
}
.ota-pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pc);
  margin-top: auto;
  transition:
    gap 0.25s var(--ease),
    color 0.2s;
}
.ota-pillar-cta:hover {
  gap: 10px;
}
.ota-pillar.soon .ota-pillar-cta {
  color: rgba(255, 255, 255, 0.45);
  cursor: default;
}
.ota-pillar.soon .ota-pillar-stat {
  opacity: 0.7;
}

/* === DEMO SECTION (calculator-only) === */
.ota-demo {
  background: #07071a;
  padding: 70px 0 110px;
  position: relative;
  overflow: hidden;
}
.ota-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 40% at 50% 0%,
      rgba(56, 182, 255, 0.14) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 30% 30% at 50% 100%,
      rgba(124, 58, 237, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.ota-demo-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.ota-demo-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.ota-demo-hd .ota-eyebrow-pill::before {
  background: #38b6ff;
}
.ota-demo-hd h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 12px;
  text-wrap: balance;
}
.ota-demo-hd h3 em {
  font-style: normal;
  background: linear-gradient(180deg, #7dd0ff 0%, #38b6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-demo-hd p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}
.ota-demo-hint {
  text-align: center;
  margin-top: 28px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}
.ota-demo-hint a {
  color: #38b6ff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Override the calculator widget so it sits in this new wrapper without the heavy edged styling */
.ota-demo .otacs-instrument {
  margin: 0 auto;
  max-width: 980px;
}

@media (max-width: 1024px) {
  .ota-pillars-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
}
@media (max-width: 768px) {
  .ota-pillars {
    padding: 80px 0 70px;
  }
  .ota-demo {
    padding: 50px 0 80px;
  }
}

/* === OTA INTEGRATIONS STRIP === */
.ota-integrations {
  background: #07071a;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.ota-integrations::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 40% at 50% 50%,
    rgba(124, 58, 237, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.ota-integrations::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}
.ota-integrations-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.ota-integrations h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #fff;
  margin: 14px 0 12px;
  text-wrap: balance;
}
.ota-integrations h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #c7bfff 0%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-integrations p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 36px;
}
.ota-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 48px;
  margin-bottom: 22px;
}
.ota-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s var(--ease);
}
.ota-logo:hover {
  color: rgba(255, 255, 255, 0.95);
}
.ota-logos-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* === OTA FAQ === */
.ota-faq {
  background: #07071a;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.ota-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 40% at 50% 0%,
    rgba(56, 182, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.ota-faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 182, 255, 0.3),
    transparent
  );
}
.ota-faq-hd {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.ota-faq-hd .ota-eyebrow-pill::before {
  background: #38b6ff;
}
.ota-faq-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  margin: 14px 0 12px;
  text-wrap: balance;
}
.ota-faq-hd h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #7dd0ff 0%, #38b6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-faq-hd p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}
.ota-faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.ota-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.ota-faq-item[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(56, 182, 255, 0.3);
}
.ota-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.005em;
}
.ota-faq-item summary::-webkit-details-marker {
  display: none;
}
.ota-faq-item summary::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 1.8px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1.8px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg) translate(-2px, -2px);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease);
  flex-shrink: 0;
}
.ota-faq-item[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
  border-color: #38b6ff;
}
.ota-faq-item summary:hover {
  color: #c7bfff;
}
.ota-faq-body {
  padding: 0 22px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .ota-logos {
    gap: 20px 32px;
  }
  .ota-logo {
    font-size: 15px;
  }
  .ota-faq-item summary {
    font-size: 14px;
    padding: 16px 18px;
  }
  .ota-faq-body {
    padding: 0 18px 16px;
    font-size: 13.5px;
  }
}

/* === HCN DEEP DIVE, 3 blocks === */
.hcn-dive {
  background: #07071a;
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hcn-dive::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 40% at 30% 0%,
      rgba(56, 182, 255, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 30% at 70% 60%,
      rgba(244, 114, 182, 0.06) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.hcn-dive::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 182, 255, 0.3),
    transparent
  );
}
.hcn-dive-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Shared block layout */
.hcn-block {
  margin-bottom: 88px;
}
.hcn-block:last-child {
  margin-bottom: 0;
}
.hcn-block-hd {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 36px;
}
.hcn-block-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}
.hcn-block-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38b6ff;
}
.hcn-block-eyebrow.warn::before {
  background: #f472b6;
}
.hcn-block-eyebrow.win::before {
  background: #10b981;
}
.hcn-block-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
  text-wrap: balance;
}
.hcn-block-hd h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #7dd0ff 0%, #38b6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hcn-block-hd h2 em.warn {
  background: linear-gradient(180deg, #fba5c9 0%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hcn-block-hd p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* Block 1: supplier-chain diagram */
.hcn-chain-wrap {
  margin: 32px auto 0;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  max-width: 920px;
}
.hcn-chain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.hcn-chain-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.hcn-chain-node-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(56, 182, 255, 0.12);
  border: 1px solid rgba(56, 182, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7dd0ff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}
.hcn-chain-node-dot.endpoint {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.4);
  color: #c7bfff;
  width: 44px;
  height: 44px;
}
.hcn-chain-node-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.hcn-chain-arrow {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(56, 182, 255, 0.4),
    rgba(56, 182, 255, 0.2)
  );
  position: relative;
  min-width: 18px;
}
.hcn-chain-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(2px, -50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-right: 1px solid rgba(56, 182, 255, 0.45);
  border-top: 1px solid rgba(56, 182, 255, 0.45);
}
.hcn-chain-caption {
  margin-top: 18px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
.hcn-chain-tail {
  margin: 26px auto 0;
  max-width: 700px;
  padding: 18px 22px;
  background: rgba(244, 114, 182, 0.08);
  border-left: 3px solid #f472b6;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.hcn-chain-tail strong {
  color: #fff;
  font-weight: 600;
}
.hcn-chain-tail em {
  font-style: italic;
  color: #fba5c9;
}

/* Block 2: failure modes + cascade */
.hcn-fails-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.hcn-fail {
  padding: 26px 22px;
  background: rgba(244, 114, 182, 0.05);
  border: 1px solid rgba(244, 114, 182, 0.2);
  border-radius: var(--radius-lg);
  position: relative;
}
.hcn-fail-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(244, 114, 182, 0.15);
  color: #f472b6;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.hcn-fail h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.hcn-fail p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.hcn-cascade {
  margin-top: 8px;
  padding: 28px 28px 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}
.hcn-cascade-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f472b6;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hcn-cascade-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f472b6;
}
.hcn-cascade h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hcn-cascade p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 12px;
}
.hcn-cascade p:last-child {
  margin-bottom: 0;
}
.hcn-cascade p strong {
  color: #fff;
  font-weight: 600;
}

/* Block 3: proactive flip + dividends */
.hcn-flip-body {
  max-width: 740px;
  margin: 0 auto 40px;
  text-align: center;
}
.hcn-flip-body p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 14px;
}
.hcn-flip-body p:last-child {
  margin-bottom: 0;
}
.hcn-flip-body strong {
  color: #fff;
  font-weight: 600;
}

.hcn-dividends {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hcn-dividend {
  padding: 24px 22px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: var(--radius);
  text-align: left;
  --dv: #10b981;
}
.hcn-dividend[data-c="2"] {
  background: rgba(56, 182, 255, 0.05);
  border-color: rgba(56, 182, 255, 0.18);
  --dv: #38b6ff;
}
.hcn-dividend[data-c="3"] {
  background: rgba(124, 58, 237, 0.05);
  border-color: rgba(124, 58, 237, 0.18);
  --dv: #a78bfa;
}
.hcn-dividend[data-c="4"] {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.18);
  --dv: #f59e0b;
}
.hcn-dividend-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--dv);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.hcn-dividend-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hcn-dividend h5 {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.hcn-dividend p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.hcn-flip-quote {
  margin-top: 40px;
  padding: 24px 28px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08),
    rgba(56, 182, 255, 0.08)
  );
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.hcn-flip-quote em {
  color: #6ee7b7;
  font-style: normal;
}

@media (max-width: 900px) {
  .hcn-fails-grid {
    grid-template-columns: 1fr;
  }
  .hcn-dividends {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .hcn-chain {
    gap: 4px;
  }
  .hcn-chain-node-label {
    font-size: 10px;
  }
  .hcn-chain-node-dot {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  .hcn-chain-node-dot.endpoint {
    width: 38px;
    height: 38px;
  }
  .hcn-dividends {
    grid-template-columns: 1fr;
  }
}

/* === OTA FINAL CTA SUB-LINE (V23) replaces the old trust strip ============ */
.ota-final-subline {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
@media (max-width: 600px) {
  .ota-final-subline {
    font-size: 13px;
    margin-top: 18px;
  }
}

/* === THE PROBLEM SECTION (V23), sits directly under the hero ============= */
.ota-problem {
  position: relative;
  padding: 110px 0 120px;
  background: #0b0e1a;
  overflow: hidden;
}
.ota-problem-bg-glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 60% 50% at 20% 30%,
      rgba(234, 88, 12, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 80%,
      rgba(245, 158, 11, 0.12) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.ota-problem .wrap {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.ota-problem-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.ota-problem-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: rgba(234, 88, 12, 0.12);
  border: 1px solid rgba(234, 88, 12, 0.32);
  border-radius: 999px;
  margin-bottom: 28px;
}
.ota-problem-eyebrow-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ea580c, #f59e0b);
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
}
.ota-problem-eyebrow-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #e5e7eb;
}

.ota-problem-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.06;
  color: #fff;
  margin: 0 0 36px;
  text-wrap: balance;
}
.ota-problem-inner h2 .accent {
  background-image: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.ota-problem-body {
  margin: 0 0 36px;
}
.ota-problem-body p {
  font-size: 17px;
  line-height: 1.7;
  color: #c5c7d1;
  margin: 0 0 22px;
  text-align: left;
}
.ota-problem-body p:last-child {
  margin-bottom: 0;
}

.ota-problem-kicker {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.35;
  color: #fff;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-wrap: balance;
}
.ota-problem-kicker .accent {
  background-image: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

@media (max-width: 720px) {
  .ota-problem {
    padding: 80px 0 88px;
  }
  .ota-problem-inner h2 {
    letter-spacing: -1px;
  }
  .ota-problem-body p {
    font-size: 15.5px;
    line-height: 1.65;
  }
  .ota-problem-kicker {
    padding-top: 24px;
    font-size: 19px;
  }
}

/* === THE OPERATING MOAT SECTION (V23) ===================================== */
.ota-moat {
  position: relative;
  padding: 110px 0 120px;
  background: #0b0e1a;
  overflow: hidden;
}
.ota-moat-bg-glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 60% 50% at 80% 30%,
      rgba(234, 88, 12, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 20% 80%,
      rgba(245, 158, 11, 0.12) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.ota-moat .wrap {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.ota-moat-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.ota-moat-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: rgba(234, 88, 12, 0.12);
  border: 1px solid rgba(234, 88, 12, 0.32);
  border-radius: 999px;
  margin-bottom: 28px;
}
.ota-moat-eyebrow-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ea580c, #f59e0b);
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
}
.ota-moat-eyebrow-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #e5e7eb;
}

.ota-moat-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 36px;
  text-wrap: balance;
}
.ota-moat-inner h2 .accent {
  background-image: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.ota-moat-body {
  margin: 0 0 36px;
}
.ota-moat-body p {
  font-size: 17px;
  line-height: 1.7;
  color: #c5c7d1;
  margin: 0 0 22px;
  text-align: left;
}
.ota-moat-body p:last-child {
  margin-bottom: 0;
}

.ota-moat-kicker {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.35;
  color: #fff;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-wrap: balance;
}
.ota-moat-kicker .accent {
  background-image: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

@media (max-width: 720px) {
  .ota-moat {
    padding: 80px 0 88px;
  }
  .ota-moat-inner h2 {
    letter-spacing: -1px;
  }
  .ota-moat-body p {
    font-size: 15.5px;
    line-height: 1.65;
  }
  .ota-moat-kicker {
    padding-top: 24px;
    font-size: 19px;
  }
}

/* === PROOF / CASE STUDY SECTION (V23) ===================================== */
.ota-proof {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #fffcf5 0%, #fafafc 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.ota-proof .wrap {
  max-width: 1200px;
}

.ota-proof-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.ota-proof-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ea580c;
  margin-bottom: 16px;
}
.ota-proof-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--text, #0f172a);
  text-wrap: balance;
}
.ota-proof-head h2 .accent {
  background-image: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.ota-proof-subhead {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-2, #475569);
  margin-bottom: 16px;
}
.ota-proof-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2, #475569);
  margin: 0;
  text-wrap: balance;
}

.ota-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto 48px;
}
.ota-proof-stat {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.ota-proof-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(234, 88, 12, 0.08);
  border-color: rgba(234, 88, 12, 0.3);
}
.ota-proof-stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1;
  background-image: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.ota-proof-stat-l {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-2, #475569);
}
.ota-proof-stat-hero {
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
  border-color: rgba(234, 88, 12, 0.3);
}

.ota-proof-close {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.ota-proof-close p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2, #475569);
  margin: 0 0 28px;
  text-wrap: balance;
}
.ota-proof-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ea580c, #f59e0b);
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    gap 0.2s ease;
}
.ota-proof-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.32);
  gap: 12px;
}
.ota-proof-cta svg {
  transition: transform 0.2s ease;
}
.ota-proof-cta:hover svg {
  transform: translateX(2px);
}

@media (max-width: 880px) {
  .ota-proof-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .ota-proof {
    padding: 72px 0 80px;
  }
  .ota-proof-head {
    margin-bottom: 36px;
  }
  .ota-proof-stat {
    padding: 32px 24px;
  }
}

/* === WHAT WORKING TOGETHER LOOKS LIKE (V23) =============================== */
.ota-howit {
  position: relative;
  padding: 100px 0 110px;
  background: #fff;
}
.ota-howit .wrap {
  max-width: 1200px;
}

.ota-howit-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.ota-howit-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ea580c;
  margin-bottom: 16px;
}
.ota-howit-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.06;
  margin: 0;
  color: var(--text, #0f172a);
  text-wrap: balance;
}
.ota-howit-head h2 .accent {
  background-image: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.ota-howit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto 44px;
  position: relative;
}
.ota-howit-grid::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(234, 88, 12, 0.1) 0%,
    rgba(234, 88, 12, 0.45) 50%,
    rgba(234, 88, 12, 0.1) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.ota-howit-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 32px 30px 30px;
  text-align: left;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.ota-howit-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(234, 88, 12, 0.1);
  border-color: rgba(234, 88, 12, 0.3);
}
.ota-howit-step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  background-image: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.ota-howit-step-time {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ea580c;
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.25);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.ota-howit-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: var(--text, #0f172a);
  margin: 0 0 12px;
}
.ota-howit-step > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2, #475569);
  margin: 0;
}

.ota-howit-subline {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-2, #475569);
  text-wrap: balance;
}
.ota-howit-subline strong {
  font-weight: 700;
  color: var(--text, #0f172a);
}

@media (max-width: 880px) {
  .ota-howit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ota-howit-grid::before {
    display: none;
  }
}
@media (max-width: 600px) {
  .ota-howit {
    padding: 72px 0 80px;
  }
  .ota-howit-step {
    padding: 28px 24px;
  }
}

/* === OTA hero stats attribution caption (V23) ============================= */
.ota-hero-stats-caption {
  margin: 14px auto 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 600px) {
  .ota-hero-stats-caption {
    font-size: 12px;
    margin-top: 12px;
  }
}

/* === OTA logo strip wrapper (V23), sits between hero stats and PROBLEM === */
.ota-logo-strip-section {
  background: var(--ink, #0b0a1f);
  padding: 8px 0 36px;
}
.ota-logo-strip-section .wrap {
  max-width: 1200px;
}
/* Pull the hero's bottom padding way down when the logo strip follows so the
   stat caption and the "Trusted by" eyebrow read as one continuous unit. */
.ota-hero {
  padding-bottom: 28px !important;
}
.ota-logo-strip-section .lp-trust.homepage-trust {
  padding-top: 0;
  padding-bottom: 0;
}

/* Light-on-dark overrides for the cloned homepage logo strip */
.ota-logo-strip-section .lp-trust.homepage-trust .lp-trust-label {
  color: rgba(255, 255, 255, 0.55);
}
.ota-logo-strip-section .lp-trust.homepage-trust .lp-trust-row .client-logo {
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.55;
}
.ota-logo-strip-section
  .lp-trust.homepage-trust
  .lp-trust-row
  .client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* === Footer "2026" tag pill on Solutions column links (V23) ============== */

/* Both <em> variants in the HCN section H2s now use the same light-violet
   gradient (matches the Operating Moat accent on dark sections). */
.hcn-block-hd h2 em,
.hcn-block-hd h2 em.warn {
  background: linear-gradient(180deg, #c4b5fd 0%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hcn-block-eyebrow.warn::before {
  background: #a78bfa;
}

/* Block 2 failure-mode cards, recolor pink tints and number badges to violet */
.hcn-fail {
  background: rgba(167, 139, 250, 0.06);
  border-color: rgba(167, 139, 250, 0.22);
}
.hcn-fail-num {
  background: rgba(167, 139, 250, 0.16);
  color: #c4b5fd;
}
.hcn-cascade-label {
  color: #a78bfa;
}
.hcn-cascade-label::before {
  background: #a78bfa;
}

/* === HCN -> CASE STUDY BRIDGE (V23) ======================================= */
.ota-hcn-bridge {
  position: relative;
  background: var(--ink, #0b0a1f);
  padding: 24px 0 100px;
}
.ota-hcn-bridge .wrap {
  max-width: 1120px;
}
.ota-hcn-bridge-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.1) 0%,
    rgba(79, 70, 229, 0.06) 100%
  );
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 20px;
  padding: 56px 56px 56px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
}
.ota-hcn-bridge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 60% 50% at 30% 20%,
      rgba(124, 58, 237, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 90%,
      rgba(79, 70, 229, 0.16) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.ota-hcn-bridge-card > * {
  position: relative;
  z-index: 1;
}

.ota-hcn-bridge-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 18px;
}
.ota-hcn-bridge-card h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 18px;
  text-wrap: balance;
}
.ota-hcn-bridge-card h2 .accent {
  background-image: linear-gradient(135deg, #c4b5fd 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.ota-hcn-bridge-card > p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 28px;
  max-width: 680px;
  text-wrap: balance;
}
.ota-hcn-bridge-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    gap 0.2s ease;
}
.ota-hcn-bridge-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(124, 58, 237, 0.4);
  gap: 12px;
}
.ota-hcn-bridge-cta svg {
  transition: transform 0.2s ease;
}
.ota-hcn-bridge-cta:hover svg {
  transform: translateX(2px);
}

@media (max-width: 720px) {
  .ota-hcn-bridge-card {
    padding: 40px 28px;
  }
  .ota-hcn-bridge-card h2 {
    letter-spacing: -0.8px;
  }
}
