
:root {
  --ink: #0b1420;
  --navy: #07111f;
  --navy-2: #0b1d34;
  --navy-3: #102b4c;
  --blue: #2f80ed;
  --blue-2: #66a7ff;
  --aqua: #53dfc0;
  --aqua-2: #9bf0dd;
  --paper: #f5f8fc;
  --white: #ffffff;
  --muted: #66748a;
  --line: #dfe6ef;
  --soft-line: rgba(255,255,255,.12);
  --shadow: 0 30px 80px rgba(6,17,31,.14);
  --radius: 26px;
  --max: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: -9999px;
  top: 10px;
  z-index: 9999;
  padding: 11px 14px;
  background: var(--white);
  border-radius: 10px;
}

.skip-link:focus { left: 10px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(7,17,31,.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand img { filter: drop-shadow(0 10px 24px rgba(0,0,0,.2)); }

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.brand strong {
  font-size: 1.08rem;
  letter-spacing: .01em;
}

.brand small {
  color: var(--aqua);
  font-size: .69rem;
  letter-spacing: .16em;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 720;
  transition: color .2s ease;
}

.site-nav a:hover { color: var(--white); }

.site-nav .nav-contact {
  padding: 10px 17px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.045);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 18%, rgba(47,128,237,.28), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(83,223,192,.11), transparent 24%),
    linear-gradient(135deg, #050c16 0%, #071524 43%, #0a2440 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: .32;
  animation: drift 12s ease-in-out infinite alternate;
}

.hero-orb-one {
  width: 380px;
  height: 380px;
  top: 12%;
  right: -150px;
  background: rgba(47,128,237,.28);
}

.hero-orb-two {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: 14%;
  background: rgba(83,223,192,.15);
  animation-delay: -5s;
}

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(30px,-18px,0) scale(1.08); }
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 145px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 78px;
  align-items: center;
  padding-block: 86px 70px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.04);
  font-size: .79rem;
  font-weight: 680;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(83,223,192,.12);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: .75rem;
  font-weight: 860;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow.light { color: var(--aqua); }
.eyebrow.dark { color: var(--blue); }

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.8rem, 6.7vw, 6.5rem);
  line-height: .96;
  letter-spacing: -.065em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--blue-2), var(--aqua-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 820;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #2f80ed, #4f9af7);
  box-shadow: 0 16px 34px rgba(47,128,237,.29);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.04);
  font-size: .78rem;
  font-weight: 680;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.visual-window {
  width: min(100%, 580px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: rgba(6,18,33,.76);
  box-shadow: 0 40px 100px rgba(0,0,0,.36);
  backdrop-filter: blur(20px);
}

.window-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.window-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}

.window-bar small {
  margin-left: auto;
  color: rgba(255,255,255,.36);
  font-size: .68rem;
  letter-spacing: .04em;
}

.window-content { padding: 24px; }

.system-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(83,223,192,.12), rgba(47,128,237,.11));
  border: 1px solid rgba(255,255,255,.08);
}

.system-status > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.status-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #07111f;
  background: var(--aqua);
  font-weight: 950;
}

.system-status small,
.workflow-node small,
.dashboard-grid small,
.floating-card small {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.system-status strong,
.workflow-node strong,
.dashboard-grid strong,
.floating-card strong {
  display: block;
  margin-top: 2px;
  color: var(--white);
}

.live-pill {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--aqua);
  background: rgba(83,223,192,.1);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.workflow {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.workflow-node {
  min-width: 0;
  flex: 0 1 150px;
}

.workflow-node > span {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-bottom: 9px;
  border-radius: 9px;
  color: var(--blue-2);
  background: rgba(47,128,237,.12);
  font-size: .68rem;
  font-weight: 900;
}

.workflow-line {
  flex: 1;
  height: 1px;
  margin: 0 12px 25px;
  background: linear-gradient(90deg, rgba(47,128,237,.2), rgba(83,223,192,.5), rgba(47,128,237,.2));
}

.workflow-node strong { font-size: .84rem; }

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dashboard-grid article {
  min-height: 150px;
  padding: 18px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.035);
}

.dashboard-grid .wide-card {
  grid-column: 1 / -1;
  min-height: 128px;
  background: linear-gradient(135deg, rgba(47,128,237,.11), rgba(83,223,192,.08));
}

.dashboard-grid strong { font-size: 1.05rem; }

.dashboard-grid p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.48);
  font-size: .8rem;
}

.mini-chart {
  margin-top: 22px;
  color: var(--aqua);
}

.bars {
  height: 42px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.bars i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, rgba(47,128,237,.35), var(--aqua));
}

.bars i:nth-child(1) { height: 35%; }
.bars i:nth-child(2) { height: 52%; }
.bars i:nth-child(3) { height: 47%; }
.bars i:nth-child(4) { height: 70%; }
.bars i:nth-child(5) { height: 92%; }

.line svg { width: 100%; height: 48px; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(10,31,54,.9);
  box-shadow: 0 18px 50px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
}

.floating-card-one {
  left: -28px;
  bottom: 70px;
}

.floating-card-two {
  right: -25px;
  top: 105px;
}

.floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #5d9ff5);
  font-size: .66rem;
  font-weight: 900;
}

.pulse {
  width: 11px;
  height: 11px;
  margin: 12px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 8px rgba(83,223,192,.1);
}

.floating-card strong { font-size: .79rem; }

.hero-footer {
  position: relative;
  z-index: 2;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  text-align: center;
  font-size: .82rem;
}

.hero-footer p { margin: 0; }

.section { padding-block: 112px; }

.section-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.section-heading h2,
.approach-intro h2,
.about-copy h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -.052em;
}

.section-heading > p:last-child,
.approach-intro > p,
.about-copy > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.services { background: var(--paper); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 370px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(5,16,30,.045);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #bdd0e8;
  box-shadow: var(--shadow);
}

.feature-card {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 13%, rgba(83,223,192,.19), transparent 25%),
    linear-gradient(145deg, var(--navy), var(--navy-3));
  border-color: transparent;
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.feature-card .service-number { color: var(--aqua); }

.service-chip {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--aqua);
  background: rgba(83,223,192,.1);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-top: 30px;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: .68rem;
  font-weight: 920;
  letter-spacing: .05em;
}

.feature-card .service-mark {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.1);
}

.service-card h3 {
  margin: 24px 0 10px;
  font-size: 1.28rem;
  line-height: 1.24;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card p { color: rgba(255,255,255,.67); }

.service-card ul {
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin-top: 8px;
  padding-left: 18px;
  color: #435168;
  font-size: .88rem;
}

.feature-card li { color: rgba(255,255,255,.63); }

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .69em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.feature-card li::before { background: var(--aqua); }

.approach {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(83,223,192,.1), transparent 22%),
    linear-gradient(135deg, #06101d, #0a2039);
}

.approach-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 86px;
  align-items: start;
}

.approach-intro {
  position: sticky;
  top: 125px;
}

.approach-intro > p { color: rgba(255,255,255,.6); }

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--aqua);
  text-decoration: none;
  font-weight: 830;
}

.approach-steps {
  border-top: 1px solid var(--soft-line);
}

.approach-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--soft-line);
}

.approach-step > span {
  color: var(--aqua);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.approach-step h3 {
  margin: 0 0 7px;
  font-size: 1.3rem;
}

.approach-step p {
  margin: 0;
  color: rgba(255,255,255,.55);
}

.about-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
  align-items: center;
}

.about-panel {
  min-height: 510px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 14%, rgba(83,223,192,.18), transparent 22%),
    linear-gradient(145deg, var(--navy), #11375f);
  box-shadow: var(--shadow);
}

.about-panel > img { width: 76px; }

.about-quote {
  position: relative;
  max-width: 410px;
}

.about-quote > span {
  display: block;
  height: 40px;
  color: var(--aqua);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.about-quote p {
  margin: 0;
  font-size: 1.48rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.about-location {
  display: flex;
  flex-direction: column;
}

.about-location small {
  color: var(--blue-2);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.about-location strong {
  margin-top: 4px;
  font-size: 1.4rem;
}

.about-location span {
  margin-top: 2px;
  color: rgba(255,255,255,.54);
  font-size: .84rem;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.about-points div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.about-points strong { font-size: .96rem; }
.about-points span { color: var(--muted); font-size: .91rem; }

.contact-section { padding: 20px 0 100px; }

.contact-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  border-radius: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0c3159);
}

.contact-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -100px;
  top: -180px;
  border-radius: 50%;
  background: rgba(47,128,237,.28);
  filter: blur(12px);
}

.contact-card > *:not(.contact-glow) {
  position: relative;
  z-index: 1;
}

.contact-card > div:first-of-type { max-width: 760px; }

.contact-card h2 { max-width: 680px; }

.contact-card p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.6);
}

.button-light {
  flex: 0 0 auto;
  color: var(--navy);
  background: var(--white);
}

.site-footer {
  color: rgba(255,255,255,.68);
  background: #030a13;
}

.footer-layout {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong { color: var(--white); }
.footer-brand span { font-size: .84rem; }

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .86rem;
}

.footer-right a {
  color: var(--white);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-orb { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .service-card { transition: none; }
}

@media (max-width: 1050px) {
  .hero-layout,
  .approach-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    gap: 52px;
    padding-block: 80px 65px;
  }

  .hero-copy { max-width: 850px; }

  .hero-visual {
    min-height: 620px;
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .approach-intro { position: static; }

  .about-layout { gap: 48px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }

  .menu-button { display: block; }

  .site-nav {
    position: absolute;
    top: 80px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 17px;
    background: rgba(7,17,31,.98);
    box-shadow: 0 18px 55px rgba(0,0,0,.35);
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding: 13px 12px; }

  .site-nav .nav-contact {
    margin-top: 5px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.1rem);
  }

  .hero-lead { font-size: 1rem; }

  .hero-tags { gap: 8px; }

  .hero-visual {
    min-height: auto;
    padding: 10px 0 90px;
  }

  .floating-card {
    min-width: 190px;
    padding: 12px;
  }

  .floating-card-one {
    left: 8px;
    bottom: 18px;
  }

  .floating-card-two {
    right: 8px;
    top: -12px;
  }

  .workflow {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .workflow-line { display: none; }

  .workflow-node {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    flex-basis: auto;
  }

  .workflow-node > span { margin: 0; }

  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-grid .wide-card { grid-column: auto; }

  .section { padding-block: 84px; }

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

  .service-card { min-height: auto; }

  .section-heading h2,
  .approach-intro h2,
  .about-copy h2,
  .contact-card h2 {
    font-size: 2.4rem;
  }

  .about-panel { min-height: 430px; }

  .about-points div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-card {
    padding: 36px 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-layout,
  .footer-right {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-layout { padding-block: 34px; }
  .footer-right { gap: 8px; }
}
/* Knack form labels on dark CarneyTech background */

#contact .contact-form .kn-label,
#contact .contact-form .kn-label span,
#contact .contact-form .kn-input label,
#contact .contact-form .kn-input label span,
#contact .contact-form .kn-input-multiple_choice label,
#contact .contact-form .kn-input-multiple_choice label span,
#contact .contact-form legend {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Radio-button option text */
#contact .contact-form input[type="radio"] + span,
#contact .contact-form input[type="checkbox"] + span {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Smaller help or description text */
#contact .contact-form .kn-description,
#contact .contact-form .kn-help {
  color: rgba(255, 255, 255, 0.72) !important;
}

// Scroll to page sections without changing the URL hash.
// Knack uses the hash for its own routing.
document.querySelectorAll("[data-scroll]").forEach((link) => {
  link.addEventListener("click", (event) => {
    event.preventDefault();

    const target = document.getElementById(link.dataset.scroll);

    if (target) {
      target.scrollIntoView({
        behavior: "smooth",
        block: "start"
      });
    }
  });
});


/* Correct the two floating dashboard callouts */

.hero-visual {
  padding-bottom: 50px;
  overflow: visible;
}

/* Enterprise Systems card — lower-left edge of dashboard */
.floating-card-one {
  left: 50% !important;
  bottom: -20px !important;
  right: auto !important;
  top: auto !important;
  transform: translateX(-300px) !important;
}

/* Direct Support card — upper-right edge of dashboard */
.floating-card-two {
  left: 50% !important;
  right: auto !important;
  top: 105px !important;
  bottom: auto !important;
  transform: translateX(80px) !important;
}

/* Remove decorative callouts when the hero becomes stacked */
@media (max-width: 1100px) {
  .floating-card {
    display: none !important;
  }

  .hero-visual {
    padding-bottom: 0;
  }
}