.hero-section {
  padding: 8rem 0 4rem;
  min-height: 90vh;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 500px;
  background: radial-gradient(circle, rgba(77, 225, 193, 0.15) 0%, rgba(9, 9, 11, 0) 70%);
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 2;
}

.hero-copy {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero-typed-wrap {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.hero-typed-text {
  display: inline-block;
  min-height: 1em;
}

.hero-typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1.1em;
  margin-left: 4px;
  background: linear-gradient(90deg, #1DBBD1 0%, #B969DC 100%);
  animation: heroBlink 1s step-end infinite;
  vertical-align: middle;
  flex: 0 0 auto;
  opacity: 0;
}

.hero-typing-cursor.is-visible {
  opacity: 1;
}

.hero-typed-text.is-complete+.hero-typing-cursor {
  display: none;
}

.hero-subtitle {
  margin: 0 auto 1.5rem;
  max-width: 980px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
}

.hero-description {
  margin: 0 auto 4rem;
  max-width: 800px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 2rem;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  object-fit: contain;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-callout,
.hero-cta {
  width: 100%;
}

.hero-callout {
  padding: 0.85rem;
  font-size: 1.3rem;
  color: var(--text-muted);
  text-align: center;
}

.hero-callout a {
  color: var(--foreground);
  font-weight: 700;
  margin-left: 0.5rem;
}

.hero-cta {
  min-height: 280px;
  padding: 2rem;
}

.hero-cta-inner {
  position: relative;
  height: 100%;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-cta-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent-start) 0%, var(--accent-end) 100%);
}

.hero-cta h3 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  line-height: 1.25;
}

.hero-cta p {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.view-capabilities-btn {
  gap: 1rem;
  padding: 0.8rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 500;
}

.view-capabilities-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 1);
  transform: translateX(10px) scale(1.02);
}

.home .view-capabilities-btn {
  position: relative;
  justify-content: space-between;
}

.home .view-capabilities-btn::after {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-left: auto;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z' fill='white'/%3E%3C/svg%3E");
}

.home .view-capabilities-btn svg,
.home .view-capabilities-btn .arrow {
  display: none;
}

@keyframes heroBlink {

  from,
  to {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    text-align: center;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-typed-wrap {
    display: inline;
    white-space: normal;
  }

  .hero-typed-text {
    display: inline;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .hero-cta {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    min-height: 280px !important;
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: left !important;
    background: linear-gradient(180deg, rgba(34, 48, 48, 0.4) 0%, rgba(17, 26, 26, 0.6) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 1rem !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: none !important;
  }

  .hero-cta-inner {
    position: relative !important;
    height: auto !important;
    min-height: 100% !important;
    padding-left: 2.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .hero-cta-inner::before {
    content: '' !important;
    position: absolute !important;
    left: 1rem !important;
    top: 1rem !important;
    bottom: 1rem !important;
    width: 1rem !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #2ec7dc 0%, #6e95f0 48%, #b96be3 100%) !important;
  }

  .hero-cta h3 {
    isplay: block;
    margin: 0 0 0.85rem;
    padding: 0;
    color: var(--foreground);
    font-size: 1.15rem;
    line-height: 1.22;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: inherit;
    text-transform: none;
    text-align: inherit;
    white-space: normal;
    unicode-bidi: isolate;
  }

  .hero-cta p {
    margin: 0 0 0.85rem !important;
    color: transparent !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
    position: relative !important;
  }

  .hero-cta p::before {
    content: 'AI Agents • Workflow Automation • Field-to-Office Coordination' !important;
    display: block !important;
    color: var(--text-muted) !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
    white-space: normal !important;
  }

  .hero-actions {
    gap: 1rem !important;
  }

  .view-capabilities-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 188px !important;
    padding: 0.85rem 1.2rem !important;
    gap: 0.75rem !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    background: transparent !important;
    color: var(--foreground) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    border-radius: 999px !important;
  }

  .view-capabilities-btn .arrow {
    display: none !important;
  }

  .view-capabilities-btn::after {
    content: '' !important;
    display: inline-block !important;
    width: 1rem !important;
    height: 1rem !important;
    margin-left: auto !important;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 12h12m0 0-5-5m5 5-5 5'/%3E%3C/svg%3E") !important;
  }
}

@media (max-width: 767px) {
  body.home .hero-cta {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 280px !important;
    padding: 2rem !important;
    text-align: left !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    background: linear-gradient(180deg, rgba(34, 48, 48, 0.4) 0%, rgba(17, 26, 26, 0.6) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 1rem !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: none !important;
  }

  body.home .hero-cta::before,
  body.home .hero-cta::after,
  body.home .hero-cta .hero-cta-inner::after {
    content: none !important;
    display: none !important;
  }

  body.home .hero-cta .hero-cta-inner {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 100% !important;
    padding: 0 0 0 2.05rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  body.home .hero-cta .hero-cta-inner::before {
    content: '' !important;
    position: absolute !important;
    left: 0.95rem !important;
    top: 1.15rem !important;
    bottom: 1.15rem !important;
    width: 0.42rem !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #2ec7dc 0%, #6e95f0 48%, #b96be3 100%) !important;
  }

  body.home .hero-cta h3 {
    margin: 0 0 0.8rem !important;
    padding: 0 !important;
    color: var(--foreground) !important;
    font-size: 1.18rem !important;
    line-height: 1.22 !important;
    font-weight: 700 !important;
    font-family: Inter, sans-serif !important;
  }

  body.home .hero-cta p {
    margin: 0 !important;
    padding: 0 !important;
    color: var(--text-muted) !important;
    font-family: Inter, sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.42 !important;
  }

  body.home .hero-cta .hero-actions {
    margin-top: 1rem !important;
    gap: 0 !important;
  }

  body.home .hero-cta .view-capabilities-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 184px !important;
    padding: 0.85rem 1.15rem !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: var(--foreground) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    gap: 0.75rem !important;
  }

  body.home .hero-cta .view-capabilities-btn .arrow {
    display: none !important;
  }

  body.home .hero-cta .view-capabilities-btn::after {
    content: '' !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 12h12m0 0-5-5m5 5-5 5'/%3E%3C/svg%3E") !important;
  }

  body.home .hero-cta p {
    color: transparent !important;
    position: relative !important;
  }

  body.home .hero-cta p::before {
    display: block !important;
    color: var(--text-muted) !important;
    content: 'AI Agents • Workflow Automation • Field-to-Office Coordination' !important;
  }
}

@media (max-width: 767px) {
  body.home .view-capabilities-btn {
    color: #fff !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 0.8rem 2.2rem !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    will-change: transform, background-color, border-color, box-shadow !important;
    box-sizing: border-box !important;
    width: auto !important;
    max-width: max-content !important;
    line-height: normal !important;
    font-family: Inter, sans-serif !important;
  }

  body.home .view-capabilities-btn svg,
  body.home .view-capabilities-btn::after {
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    fill: currentColor !important;
  }

  body.home .view-capabilities-btn svg path {
    fill: currentColor !important;
  }

  body.home .view-capabilities-btn .arrow {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.home .hero-cta .view-capabilities-btn {
    color: #fff !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    padding: 0.8rem 1.25rem 0.8rem 1.35rem !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    text-transform: none !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    will-change: transform, background-color, border-color, box-shadow !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 188px !important;
    line-height: normal !important;
    font-family: Inter, sans-serif !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    margin-top: 0.15rem !important;
    align-self: flex-start !important;
  }

  body.home .hero-cta .view-capabilities-btn::after {
    content: '' !important;
    display: inline-block !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    margin-left: 0.65rem !important;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 12h12m0 0-5-5m5 5-5 5'/%3E%3C/svg%3E") !important;
  }

  body.home .hero-cta .view-capabilities-btn .arrow {
    display: none !important;
  }

  body.home .hero-cta .view-capabilities-btn svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    fill: currentColor !important;
    margin-left: auto !important;
  }

  body.home .hero-cta .view-capabilities-btn svg path {
    fill: currentColor !important;
  }
}

@media (max-width: 767px) {
  body.home .hero-cta {
    padding: 1.25rem !important;
    min-height: 268px !important;
    background: linear-gradient(180deg, rgba(34, 48, 48, 0.4) 0%, rgba(17, 26, 26, 0.6) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }

  body.home .hero-cta .hero-cta-inner {
    padding-left: 2.05rem !important;
    gap: 0.65rem !important;
  }

  body.home .hero-cta .hero-cta-inner::before {
    left: 1.02rem !important;
    top: 1rem !important;
    bottom: 1rem !important;
    width: 0.44rem !important;
    border-radius: 999px !important;
  }

  body.home .hero-cta h3 {
    margin: 0 0 0.8rem !important;
    font-size: 1.12rem !important;
    line-height: 1.18 !important;
    max-width: 15.5rem !important;
    letter-spacing: -0.02em !important;
  }

  body.home .hero-cta p {
    box-sizing: border-box !important;
    color: transparent !important;
    display: block !important;
    font-family: Inter, "Inter Fallback", sans-serif !important;
    font-size: 18.4px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    height: 55.2px !important;
    line-height: 27.6px !important;
    margin: 0 0 32px 0 !important;
    padding: 0 !important;
    position: relative !important;
    text-align: left !important;
    text-size-adjust: 100% !important;
    unicode-bidi: isolate !important;
    width: 308.8px !important;
    max-width: 100% !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  }

  body.home .hero-cta p::before {
    content: 'AI Agents • Workflow Automation • Field-to-Office Coordination' !important;
    color: rgb(148, 163, 184) !important;
    display: block !important;
    font: inherit !important;
    line-height: inherit !important;
    white-space: normal !important;
  }

  body.home .hero-cta .hero-actions {
    margin-top: 1rem !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }

  body.home .hero-cta .view-capabilities-btn {
    width: 184px !important;
    max-width: 184px !important;
    min-height: 60px !important;
    padding: 0.8rem 1.1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 999px !important;
    justify-content: space-between !important;
    gap: 0.85rem !important;
    font-size: 1.12rem !important;
    line-height: 1.1 !important;
  }

  body.home .hero-cta .view-capabilities-btn::after {
    width: 1.5rem !important;
    height: 1.5rem !important;
    margin-left: auto !important;
  }

  body.home .hero-cta h3 {
    box-sizing: border-box !important;
    color: rgb(255, 255, 255) !important;
    display: block !important;
    font-family: Inter, "Inter Fallback", sans-serif !important;
    font-size: 23.2px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 27.84px !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    text-size-adjust: 100% !important;
    unicode-bidi: isolate !important;
    width: 308.8px !important;
    max-width: 100% !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-cta {
    padding: 1.5rem;
  }

  .hero-cta-inner {
    padding-left: 1rem;
  }

  .hero-cta h3 {
    margin: 0 0 0.85rem;
    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--foreground);
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 280px;
    padding: 2rem;
    text-align: left;
    background: linear-gradient(180deg, rgba(34, 48, 48, 0.4) 0%, rgba(17, 26, 26, 0.6) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 1rem !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: none !important;
  }

  .hero-cta-inner {
    height: auto;
    padding-left: 1.75rem;
    gap: 0.85rem;
  }

  .hero-cta-inner::before {
    left: 0.9rem;
    top: 1.1rem;
    bottom: 1.1rem;
    width: 0.45rem;
    border-radius: 999px;
  }

  .hero-cta p {
    margin: 0 0 0.75rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .hero-cta p {
    position: relative;
    color: transparent !important;
  }

  .hero-cta p::before {
    content: 'AI Agents • Workflow Automation • Field-to-Office Coordination';
    position: static;
    display: block;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    white-space: normal;
  }

  .hero-actions {
    gap: 1rem;
    padding-left: 0;
  }

  .view-capabilities-btn {
    width: fit-content;
    gap: 1rem;
    padding: 0.8rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 500;
  }

  .view-capabilities-btn .arrow {
    display: none;
  }

  .view-capabilities-btn svg {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    flex: 0 0 auto;
  }

  .view-capabilities-btn::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 12h12m0 0-5-5m5 5-5 5'/%3E%3C/svg%3E");
  }

  .hero-callout {
    font-size: 1.3rem !important;
  }

  .hero-callout a {
    color: var(--foreground) !important;
    font-weight: 700 !important;
    margin-left: 0.35rem !important;
    text-decoration: none !important;
    white-space: nowrap;
  }

  .hero-cta,
  .hero-cta.glass-card {
    font-size: 1.3rem !important;
  }
}
@media (max-width: 767px) {
  body.home .view-capabilities-btn {
    color: #fff !important;
    will-change: transform, background-color, border-color, box-shadow !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 40px !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 0.8rem 2.2rem !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    display: inline-flex !important;
    box-sizing: border-box !important;
    width: auto !important;
    max-width: max-content !important;
    line-height: normal !important;
    font-family: Inter, sans-serif !important;
  }

  body.home .view-capabilities-btn svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    fill: currentColor !important;
  }

  body.home .view-capabilities-btn svg path {
    fill: currentColor !important;
  }

  body.home .view-capabilities-btn::after,
  body.home .view-capabilities-btn .arrow {
    display: none !important;
    content: none !important;
  }
}

@media (max-width: 767px) {
  body.home .hero-cta.glass-card,
  body.home .hero-cta.glass-card.reveal-right,
  body.home .hero-cta.glass-card.reveal-right.active {
    -webkit-backdrop-filter: blur(12px) !important;
    backdrop-filter: blur(12px) !important;
    background-color: rgba(0, 0, 0, 0) !important;
    background-image: linear-gradient(rgba(34, 48, 48, 0.4) 0%, rgba(17, 26, 26, 0.6) 100%) !important;
    background-attachment: scroll !important;
    background-clip: border-box !important;
    background-origin: padding-box !important;
    background-position: 0% 0% !important;
    background-repeat: repeat !important;
    background-size: auto !important;
    border: 0.8px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    color: rgb(255, 255, 255) !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    justify-content: center !important;
    text-align: left !important;
    font-family: Inter, "Inter Fallback", sans-serif !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    min-height: 280px !important;
    padding: 32px !important;
    width: 100% !important;
    overflow: hidden !important;
    text-size-adjust: 100% !important;
    -webkit-text-size-adjust: 100% !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    unicode-bidi: isolate !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }

  body.home .hero-cta.glass-card::before,
  body.home .hero-cta.glass-card::after,
  body.home .hero-cta.glass-card.reveal-right::before,
  body.home .hero-cta.glass-card.reveal-right::after,
  body.home .hero-cta.glass-card.reveal-right.active::before,
  body.home .hero-cta.glass-card.reveal-right.active::after {
    content: none !important;
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.home .hero-cta .view-capabilities-btn {
    color: rgb(255, 255, 255) !important;
    will-change: transform, background-color, border-color, box-shadow !important;
    background: 0 0 !important;
    background-color: rgba(0, 0, 0, 0) !important;
    background-image: none !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    padding: 0.8rem 2.2rem !important;
    font-family: Inter, "Inter Fallback", sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    line-height: normal !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    display: inline-flex !important;
    box-sizing: border-box !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;
    text-size-adjust: 100% !important;
    -webkit-text-size-adjust: 100% !important;
    unicode-bidi: isolate !important;
    white-space: normal !important;
    justify-content: center !important;
  }

  body.home .hero-cta .view-capabilities-btn svg {
    display: inline-block !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    fill: currentColor !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.home .hero-cta .view-capabilities-btn svg path {
    fill: currentColor !important;
  }

  body.home .hero-cta .view-capabilities-btn .arrow {
    display: none !important;
  }

  body.home .hero-cta .view-capabilities-btn::after {
    content: '' !important;
    display: inline-block !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    margin-left: 0 !important;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z' style='fill: currentcolor;'%3E%3C/path%3E%3C/svg%3E") !important;
  }
}

@media (max-width: 767px) {
  body.home .hero-cta .hero-cta-inner::before {
    width: 0.56rem !important;
    left: 0.92rem !important;
    top: 0.95rem !important;
    bottom: 0.95rem !important;
  }

  body.home .hero-cta .hero-cta-inner {
    padding-left: 2.25rem !important;
  }

  body.home .hero-cta .view-capabilities-btn::after {
    content: '' !important;
    display: inline-block !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z' style='fill: currentcolor;'%3E%3C/path%3E%3C/svg%3E") !important;
  }

  body.home .hero-cta .view-capabilities-btn .arrow {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.home .hero-cta .hero-cta-inner::before {
    width: 0.62rem !important;
    left: 0.84rem !important;
    top: 0.88rem !important;
    bottom: 0.88rem !important;
  }

  body.home .hero-cta .hero-cta-inner {
    padding-left: 2.45rem !important;
  }

  body.home .hero-cta .view-capabilities-btn {
    padding: 0.85rem 2.25rem !important;
    gap: 1rem !important;
  }

  body.home .hero-cta .view-capabilities-btn::after {
    margin-left: auto !important;
    transform: translateX(0.08rem) !important;
  }
}

@media (max-width: 767px) {
  body.home .view-capabilities-btn svg,
  body.home .view-capabilities-btn::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }
}

.home .view-capabilities-btn {
  justify-content: space-between;
}

.home .view-capabilities-btn::after {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-left: auto;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z' fill='white'/%3E%3C/svg%3E");
}

.home .view-capabilities-btn svg,
.home .view-capabilities-btn .arrow {
  display: none;
}

@media (max-width: 767px) {
  body.home .view-capabilities-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 188px !important;
    max-width: 188px !important;
    min-width: 188px !important;
    padding: 0.8rem 1.2rem !important;
    gap: 0.75rem !important;
  }

  body.home .view-capabilities-btn svg,
  body.home .view-capabilities-btn::after {
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    color: #fff !important;
    fill: #fff !important;
  }

  body.home .view-capabilities-btn::after {
    content: none !important;
    display: none !important;
    background-image: none !important;
  }

  body.home .view-capabilities-btn::after,
  body.home .view-capabilities-btn::after path {
    color: #fff !important;
    fill: #fff !important;
  }

  body.home .view-capabilities-btn svg path {
    fill: #fff !important;
  }

  body.home .view-capabilities-btn svg,
  body.home .view-capabilities-btn svg path {
    color: #fff !important;
    fill: #fff !important;
  }
}

@media (max-width: 767px) {
  body.home .view-capabilities-btn {
    position: relative !important;
  }

  body.home .view-capabilities-btn::after {
    content: '' !important;
    display: inline-block !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z' fill='currentColor'/%3E%3C/svg%3E") !important;
  }

  body.home .view-capabilities-btn svg {
    display: none !important;
  }

  body.home .view-capabilities-btn .arrow {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.home .view-capabilities-btn {
    color: rgb(255, 255, 255) !important;
    will-change: transform, background-color, border-color, box-shadow !important;
    background: 0 0 !important;
    background-color: rgba(0, 0, 0, 0) !important;
    background-image: none !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    padding: 12.8px 35.2px !important;
    font-family: Inter, "Inter Fallback", sans-serif !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 36px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    width: auto !important;
    min-width: 308.8px !important;
    max-width: max-content !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    will-change: transform, background-color, border-color, box-shadow !important;
  }

  body.home .view-capabilities-btn svg {
    display: inline-block !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    fill: currentColor !important;
  }

  body.home .view-capabilities-btn svg path {
    fill: currentColor !important;
  }

  body.home .view-capabilities-btn .arrow {
    display: none !important;
  }

  body.home .view-capabilities-btn::after {
    content: '' !important;
    display: inline-block !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    flex-shrink: 0 !important;
    margin-left: 0 !important;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z' fill='currentColor'/%3E%3C/svg%3E") !important;
  }
}
