:root {
  --white: #ffffff;
  --blue-50: #f4f9ff;
  --blue-75: #edf6ff;
  --blue-100: #e4f1ff;
  --blue-200: #d4e8ff;
  --blue-300: #bfdcff;
  --blue-600: #155eef;
  --blue-600: #1147c8;
  --blue-600: #0b348f;
  --navy: #071a3d;
  --navy-2: #0b214d;
  --text: #0b1731;
  --muted: #5b6b86;
  --line: #e7eef8;
  --shadow-sm: 0 8px 24px rgba(9, 30, 66, .06);
  --shadow-md: 0 16px 44px rgba(9, 30, 66, .08);
  --shadow-lg: 0 24px 70px rgba(9, 30, 66, .12);
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1320px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container-fluid-custom {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 96px 0
}

.section-soft {
  background: var(--blue-50)
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.05em;
  margin-bottom: 14px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 5px rgba(21, 94, 239, .10);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.653);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 52, 143, .15);
  box-shadow: 0 10px 30px rgba(9, 30, 66, .04);

}

.navbar {
  padding: 16px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy) !important;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--navy) 0%, #0b2c74 60%, #1348c2 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(11, 52, 143, .24);
  flex: 0 0 auto;
}

.brand-mark:before,
.brand-mark:after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 12px;
  transform: rotate(13deg);
}

.brand-mark:after {
  inset: 15px;
  transform: rotate(-13deg)
}

.nav-link {
  color: var(--text) !important;
  font-weight: 600;
  padding: 12px 14px !important;
  border-radius: 12px;
  transition: .2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-link:focus {
  color: var(--blue-600) !important;
  background: var(--blue-50);
}

.dropdown-menu {
  border: 1px solid var(--blue-100);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  margin-top: 10px !important;
}

.dropdown-item {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--text);
}

.dropdown-item:hover {
  background: var(--blue-50);
  color: var(--blue-600)
}

.btn-primary-crisp {
  background: linear-gradient(180deg, #0b2f84 0%, #08245f 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  box-shadow: 0 14px 30px rgba(8, 36, 95, .18);
  transition: .22s ease;
}

.btn-primary-crisp:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(8, 36, 95, .22);
  background: linear-gradient(180deg, #082a74 0%, #061d50 100%);
}

.btn-outline-clean {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.btn-outline-clean:hover {
  background: var(--blue-50);
  color: var(--blue-600);
  border-color: var(--blue-200);
}

.hero {
  padding: 72px 0 72px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .93;
  letter-spacing: -.06em;
  font-weight: 600;
  color: var(--navy);
  max-width: 760px;
}

.hero-copy h1 .gradient-text {
  background: linear-gradient(180deg, #155eef 0%, #0b348f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 670px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.metric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.metric-card .k {
  font-size: 13px;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 6px;
}

.metric-card .v {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-panel {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--blue-100);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 71, 200, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 71, 200, .04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .25));
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 94, 239, .12), rgba(21, 94, 239, 0) 70%);
  right: -60px;
  top: -60px;
}

.hero-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.hero-card.top {
  top: 30px;
  left: 28px;
  right: 28px;
  padding: 18px;
}

.hero-card.mid {
  top: 140px;
  left: 28px;
  right: 140px;
  padding: 20px;
}

.hero-card.side {
  top: 160px;
  right: 28px;
  width: 120px;
  padding: 16px;
  text-align: center;
}

.hero-card.bottom {
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-stack {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.stack-pill {
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--blue-100);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  min-width: 82px;
  text-align: center;
}

.flow-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #edf2f9;
}

.flow-item:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.flow-item strong {
  display: block;
  font-size: 15px;
  color: var(--navy)
}

.flow-item span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px
}

.flow-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid var(--blue-100);
  flex: 0 0 auto;
}

.mini-stat {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 8px;
}

.mini-stat-no {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: var(--navy);
}

.card-clean {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: .22s ease;
}

.card-clean:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.card-body-clean {
  padding: 30px
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-600);
  font-size: 22px;
  margin-bottom: 18px;
}

.card-clean h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--navy);
}

.card-clean p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.about-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.feature-list-item {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.feature-list-item i {
  margin-top: 4px;
  color: var(--blue-600)
}

.feature-list-item strong {
  display: block;
  font-size: 15px;
  color: var(--navy)
}

.feature-list-item span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.7
}

.logo-slider-wrap {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 18px 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollLogos 26s linear infinite;
  padding: 0 18px;
}

.logo-slider-wrap:hover .logo-track {
  animation-play-state: paused
}

.logo-pill {
  min-width: 180px;
  height: 68px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(9, 30, 66, .04);
}

.logo-pill .logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid var(--blue-100);
  font-size: 14px;
  font-weight: 600;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px
}

.work-wrapper {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}

.work-timeline {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.work-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  transition: .2s ease;
}

.work-step+.work-step {
  margin-top: 10px
}

.work-step:hover {
  background: var(--blue-50)
}

.step-badge {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0b2f84 0%, #08245f 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 12px 24px rgba(8, 36, 95, .14);
}

.work-step h4 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--navy);
}

.work-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
  max-width: 560px;
}

.work-aside {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  border: 1px solid var(--blue-100);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.work-aside h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--navy);
}

.work-aside p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 18px;
}

.mini-points {
  display: grid;
  gap: 12px
}

.mini-points .item {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 600;
  color: var(--navy);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px
}

.cta-band {
  background: linear-gradient(180deg, #0b2f84 0%, #08245f 100%);
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 24px 60px rgba(8, 36, 95, .16);
  color: #fff;
}

.cta-band h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.05em;
  margin: 14px 0 16px;
  max-width: 780px;
}

.cta-band p {
  max-width: 600px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.85;
  font-size: 16px;
  margin: 0;
}

.cta-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
}

.cta-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff
}

.cta-card p {
  font-size: 15px;
  margin-bottom: 18px
}

footer {
  padding: 32px 0 54px;
  background: #fff;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1199.98px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .work-wrapper {
    grid-template-columns: 1fr
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-visual {
    min-height: 560px
  }
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 14px 0
  }

  .hero {
    padding: 48px 0 60px
  }

  .hero-metrics {
    grid-template-columns: 1fr
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .resource-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 74px 0
  }

  .service-grid,
  .industry-grid {
    grid-template-columns: 1fr
  }

  .hero-visual {
    min-height: 660px
  }

  .hero-card.mid {
    right: 28px;
    top: 150px
  }

  .hero-card.side {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: 12px 28px 0
  }

  .hero-card.bottom {
    bottom: 20px
  }

  .work-step {
    grid-template-columns: 64px 1fr;
    padding: 18px
  }

  .step-badge {
    width: 52px;
    height: 52px;
    border-radius: 18px
  }

  .cta-band {
    padding: 28px
  }
}

@media (max-width: 575.98px) {
  .container-fluid-custom {
    width: min(100% - 20px, var(--container))
  }

  .hero-copy h1 {
    font-size: 42px
  }

  .hero-actions {
    flex-direction: column
  }

  .btn-primary-crisp,
  .btn-outline-clean {
    width: 100%;
    text-align: center
  }

  .hero-card.top,
  .hero-card.mid,
  .hero-card.bottom {
    left: 16px;
    right: 16px
  }

  .hero-card.side {
    margin-inline: 16px
  }

  .logo-pill {
    min-width: 150px
  }

  .card-body-clean {
    padding: 24px
  }

  .about-panel {
    padding: 24px
  }

  .work-aside {
    padding: 24px
  }
}


/* contact dialog */

.ni-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 26, 61, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 9998;
}

.ni-drawer {
  position: fixed;
  top: 0;
  right: -560px;
  width: 520px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: -20px 0 60px rgba(9, 30, 66, 0.12);
  z-index: 9999;
  transition: right .35s ease;
  overflow-y: auto;
  border-left: 1px solid #e7eef8;
}

.ni-drawer.active {
  right: 0;
}

.ni-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ni-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px 12px;
  border-bottom: 1px solid #edf2f7;
}

.ni-drawer-header h4 {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #071a3d;
}

.ni-drawer,
.ni-overlay {
  position: fixed !important;
}

.ni-mini {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #1147c8;
}

.ni-close {
  border: none;
  background: #f4f9ff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 24px;
  line-height: 1;
  color: #071a3d;
  cursor: pointer;
}

.ni-drawer-body {
  padding: 20px 24px 24px;
}

.ni-drawer-text {
  color: #5b6b86;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}

#inquiryForm .form-label {
  font-size: 13px;
  font-weight: 700;
  color: #071a3d;
  margin-bottom: 8px;
}

#inquiryForm .form-control,
#inquiryForm .form-select {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #dfe8f3;
  box-shadow: none;
  padding: 12px 14px;
}

#inquiryForm textarea.form-control {
  min-height: 130px;
  resize: none;
}

#inquiryForm .form-control:focus,
#inquiryForm .form-select:focus {
  border-color: #bcd5ff;
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.08);
}

@media (max-width: 575.98px) {
  .ni-drawer {
    width: 100%;
    right: -100%;
  }

  .ni-drawer-header h4 {
    font-size: 22px;
  }
}


.social-icons {
  display: flex;
  gap: 14px;
}

.social {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #ffffff;
  border: 1px solid #e6edf7;

  color: #0b1731;

  font-size: 18px;

  transition: all .3s ease;

  box-shadow: 0 8px 20px rgba(10, 30, 80, .06);
  text-decoration: none;
}

.social:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 30px rgba(10, 30, 80, .12),
    0 0 0 6px rgba(21, 94, 239, .05);
}

/* brand colors */

.facebook:hover {
  color: #1877f2;
}

.linkedin:hover {
  color: #0a66c2;
}

.instagram:hover {
  color: #e1306c;
}

.twitter:hover {
  color: #000000;
}

.youtube:hover {
  color: #ff0000;
}

/* ── Reset scoped to component ── */
#ai-network-root *,
#ai-network-root *::before,
#ai-network-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Root container: fill whatever parent you put it in ── */
#ai-network-root {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  /* let clicks pass through to page content below */
}

/* ── Background mesh ── */
#ain-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(88, 80, 236, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 75% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 45% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
}

/* ── Particle canvas ── */
#ain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Main SVG ── */
#ain-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
  /* re-enable for hover */
}

/* ── Tooltip ── */
#ain-tooltip {
  position: absolute;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(88, 80, 236, 0.2);
  border-radius: 10px;
  padding: 7px 15px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #1e1b4b;
  letter-spacing: 0.04em;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(88, 80, 236, 0.13), 0 2px 6px rgba(0, 0, 0, 0.06);
}

#ain-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── Caption ── */
#ain-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  animation: ain-fadeup 1.2s ease 0.6s both;
}

#ain-caption span {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5850ec;
  opacity: 0.7;
  margin-bottom: 3px;
}

#ain-caption p {
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 0.07em;
}

@keyframes ain-fadeup {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.demo-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  background: #f8faff;
}


.logo-pill {
  min-width: 170px;
  height: 74px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e7eef8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 700;
  color: #6b7c93;
  box-shadow: 0 8px 20px rgba(10, 30, 80, .05);
  transition: all .25s ease;
}

.logo-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(10, 30, 80, .10);
  color: #0b1731;
}