:root {
  --ink: #102a43;
  --muted: #5d7285;
  --teal: #0f9488;
  --teal-dark: #08766d;
  --blue: #2f6fed;
  --mist: #f3faf9;
  --line: #dce9e7;
  --white: #fff;
  --shadow: 0 18px 55px rgba(16, 42, 67, 0.1);
  --radius: 22px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    16px/1.65 "Segoe UI",
    Arial,
    sans-serif;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 233, 231, 0.8);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand img {
  width: 42px;
  height: 42px;
}
.brand strong {
  display: block;
  font-size: 1.08rem;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.2;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.91rem;
  font-weight: 600;
  color: #3d5366;
}
.main-nav a:hover,
.main-nav a.active {
  background: #e9f7f5;
  color: var(--teal-dark);
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background: var(--teal);
  color: #fff !important;
  padding: 12px 20px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: 0.2s;
}
.nav-cta:hover,
.btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.btn.secondary {
  background: #fff;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}
.btn.text {
  background: transparent;
  color: var(--teal-dark) !important;
  padding-left: 0;
  padding-right: 0;
}
.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
}
.hero {
  padding: 82px 0 68px;
  background:
    radial-gradient(circle at 82% 12%, #d7f8f3 0, transparent 35%),
    linear-gradient(135deg, #f2f7ff, #f7fffd);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
}
.gradient {
  color: var(--blue);
}
.lead {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 660px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-visual {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
}
.data-core {
  width: 230px;
  height: 230px;
  border-radius: 42px;
  background: linear-gradient(145deg, #fff, #dcfaf5);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 1.25rem;
}
.data-core svg {
  width: 100px;
  margin-bottom: 8px;
}
.orbit {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dff3ef;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(15, 148, 136, 0.12);
  font-weight: 700;
  color: #27766f;
}
.o1 {
  top: 18px;
  left: 20px;
}
.o2 {
  top: 45px;
  right: 8px;
}
.o3 {
  bottom: 30px;
  left: 18px;
}
.o4 {
  bottom: 10px;
  right: 14px;
}
.proof {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.proof-item {
  padding: 12px;
}
.proof-item strong {
  display: block;
  font-size: 1.65rem;
  color: var(--teal-dark);
}
.proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
}
.section {
  padding: 82px 0;
}
.section.alt {
  background: #f7fafc;
}
.section-head {
  max-width: 720px;
  margin-bottom: 38px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
}
.section-head p {
  color: var(--muted);
  margin: 0;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 6px 20px rgba(16, 42, 67, 0.04);
}
.card h3 {
  margin: 13px 0 8px;
  font-size: 1.18rem;
}
.card p {
  color: var(--muted);
  margin: 0 0 14px;
}
.icon {
  width: 45px;
  height: 45px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #e9f7f5;
  color: var(--teal-dark);
  font-weight: 900;
}
.tag {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 99px;
  background: #edf4ff;
  color: #315fae;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}
.logo-card {
  height: 76px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
}
.logo-card img {
  max-height: 42px;
}
.quote {
  margin-top: 28px;
  padding: 26px 30px;
  border-left: 4px solid var(--teal);
  background: var(--mist);
  border-radius: 0 16px 16px 0;
  color: #3d5366;
}
.case-card {
  overflow: hidden;
  padding: 0;
}
.case-art {
  height: 145px;
  background: linear-gradient(135deg, #dff7f3, #e7efff);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
}
.case-body {
  padding: 25px;
}
.metric {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.checks li {
  padding: 8px 0 8px 30px;
  position: relative;
}
.checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}
.cta-band {
  padding: 50px 0;
  background: linear-gradient(120deg, #0c766e, #173b71);
  color: #fff;
}
.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-row h2 {
  margin: 0;
  font-size: 2rem;
}
.cta-row p {
  margin: 6px 0 0;
  color: #d8eeec;
}
.cta-row .btn {
  background: #fff;
  color: #0c766e !important;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}
.contact-list {
  display: grid;
  gap: 12px;
}
.contact-list a {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 6px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.86rem;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbdad8;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.page-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #f1f6ff, #effcf9);
}
.page-hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  max-width: 850px;
}
.breadcrumb {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.detail-row {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 50px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
}
.detail-row h2 {
  margin: 0;
  font-size: 1.6rem;
}
.detail-row p {
  margin-top: 0;
  color: var(--muted);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  padding: 7px 11px;
  border-radius: 99px;
  background: #edf6f5;
  color: #246c66;
  font-size: 0.82rem;
  font-weight: 700;
}
.team-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
}
.team-card {
  display: flex;
  flex-direction: column;
}
.team-card .role {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.88rem;
}
.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
}
.profile-link span {
  transition: transform 0.2s ease;
}
.profile-link:hover span,
.profile-link:focus-visible span {
  transform: translate(3px, -3px);
}
.story {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 45px;
  padding: 45px 0;
  border-top: 1px solid var(--line);
}
.story h2 {
  margin: 8px 0 10px;
}
.story dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.story dt {
  color: var(--muted);
  font-size: 0.78rem;
}
.story dd {
  margin: 0;
  font-weight: 800;
}
.footer {
  padding: 55px 0 25px;
  background: #0d2537;
  color: #c7d4dd;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
}
.footer h4 {
  color: #fff;
  margin: 0 0 12px;
}
.footer a {
  display: block;
  margin: 7px 0;
  color: #c7d4dd;
}
.footer .brand {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #294255;
  margin-top: 35px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #91a6b4;
}
.reveal {
  animation: rise 0.6s ease both;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .hero-grid,
  .split,
  .contact-grid,
  .story {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 360px;
  }
  .grid.three,
  .grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
  .logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .hero,
  .section,
  .page-hero {
    padding: 58px 0;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .hero-visual {
    min-height: 315px;
  }
  .data-core {
    width: 185px;
    height: 185px;
  }
  .orbit {
    font-size: 0.75rem;
    padding: 11px;
  }
  .proof-row,
  .grid.three,
  .grid.four,
  .form,
  .story dl {
    grid-template-columns: 1fr;
  }
  .proof-row {
    grid-template-columns: 1fr 1fr;
  }
  .logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand small {
    display: none;
  }
}

body {
  overflow-x: hidden;
}
.hero-grid > * {
  min-width: 0;
}
.hero {
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 2.65rem);
    overflow-wrap: break-word;
  }
  .actions {
    align-items: stretch;
  }
  .actions .btn {
    width: 100%;
  }
  .hero-visual {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }
  .o1 {
    left: 0;
  }
  .o2 {
    right: 0;
  }
  .o3 {
    left: 0;
  }
  .o4 {
    right: 0;
  }
}

/* Homepage: high-contrast technical hero and interactive data map */
.brand img {
  width: 56px;
  height: 56px;
}
.brand strong {
  font-size: 1.22rem;
}
.brand small {
  font-size: 0.72rem;
}
.site-header {
  padding: 10px 0;
}
.home .site-header {
  background: rgba(5, 13, 27, 0.94);
  border-bottom-color: rgba(80, 211, 232, 0.13);
}
.home .brand {
  color: #fff;
}
.home .brand small {
  color: #8ea8ba;
}
.home .main-nav a {
  color: #c8d5e2;
}
.home .main-nav a:hover,
.home .main-nav a.active {
  background: rgba(42, 214, 239, 0.1);
  color: #58e4f3;
}
.interactive-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 190px;
  background: linear-gradient(110deg, #0ca396, #12c5ce);
  box-shadow: 0 8px 30px rgba(17, 202, 199, 0.18);
}
.interactive-cta:before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.7),
    transparent 28%
  );
  opacity: 0;
  transition: opacity 0.25s;
}
.interactive-cta:hover:before {
  opacity: 0.55;
}
.interactive-cta:hover {
  box-shadow: 0 12px 38px rgba(38, 217, 243, 0.34);
  transform: translateY(-2px);
}
.interactive-cta:active {
  transform: translateY(0) scale(0.98);
}
.cta-arrow {
  font-size: 1.15rem;
  transition: transform 0.25s;
}
.interactive-cta:hover .cta-arrow {
  transform: translate(4px, -4px);
}
.hero-tech {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  min-height: 650px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 35%, rgba(9, 137, 167, 0.4), transparent 34%),
    radial-gradient(
      circle at 82% 32%,
      rgba(122, 50, 138, 0.28),
      transparent 38%
    ),
    linear-gradient(115deg, #061827 0%, #071824 50%, #0d0b19 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(45, 215, 240, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 215, 240, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.hero-tech:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #26d9f3, transparent);
}
.hero-tech .hero-grid {
  position: relative;
  z-index: 1;
  width: min(1420px, calc(100% - 56px));
  grid-template-columns: minmax(430px, 0.82fr) minmax(680px, 1.18fr);
  gap: 54px;
}
.hero-tech .eyebrow {
  color: #58e4f3;
}
.hero-tech h1 {
  font-size: clamp(3.2rem, 4.35vw, 5rem);
  max-width: 680px;
}
.hero-tech .gradient {
  background: linear-gradient(90deg, #ad86ff, #3ce4f2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tech .lead {
  color: #bdd0dc;
  max-width: 620px;
  font-size: 1.18rem;
}
.hero-platforms {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: 58px 48px;
  gap: 8px;
  margin: 22px 0 10px;
}
.hero-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 54px;
  padding: 7px;
  border: 1px solid rgba(77, 216, 235, 0.2);
  border-radius: 11px;
  background: rgba(18, 75, 91, 0.23);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}
.hero-platform:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 216, 235, 0.5);
  background: rgba(18, 91, 108, 0.35);
}
.hero-pathway {
  justify-content: flex-start;
  padding-inline: 14px;
  border-color: rgba(173, 134, 255, 0.34);
  background: linear-gradient(
    135deg,
    rgba(93, 67, 164, 0.25),
    rgba(19, 91, 111, 0.28)
  );
}
.hero-pathway.etl-pathway {
  grid-column: 1 / 4;
}
.hero-pathway.reporting-pathway {
  grid-column: 4 / 8;
}
.hero-pathway span {
  display: block;
  color: #d8c8ff;
  font-size: 0.72rem;
  font-weight: 800;
}
.hero-pathway:hover,
.hero-pathway:focus-visible {
  border-color: rgba(173, 134, 255, 0.72);
  outline: 2px solid rgba(173, 134, 255, 0.25);
  outline-offset: 2px;
}
.hero-platform span {
  display: none;
}
.hero-platform.hero-pathway span {
  display: block;
}
.tech-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  color: transparent;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 68%;
  font:
    800 0.62rem/1 ui-monospace,
    monospace;
  font-style: normal;
  letter-spacing: -0.04em;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
}
.tech-mark.ms,
.tech-mark.ssis,
.tech-mark.ssrs {
  background-image: url("assets/technologies/sql-server.svg");
}
.tech-mark.pg {
  background-image: url("assets/technologies/postgresql.svg");
}
.tech-mark.my {
  background-image: url("assets/technologies/mysql.svg");
}
.tech-mark.az,
.tech-mark.adf,
.tech-mark.syn {
  background-image: url("assets/technologies/azure.svg");
}
.tech-mark.mongo {
  background-image: url("assets/technologies/mongodb.svg");
}
.tech-mark.oracle {
  background-image: url("assets/technologies/oracle.svg");
}
.tech-mark.firebird {
  background-image: url("assets/technologies/firebird.svg");
}
.tech-mark.python {
  background-image: url("assets/technologies/python.svg");
}
.tech-mark.snowflake {
  background-image: url("assets/technologies/snowflake.svg");
}
.tech-mark.cassandra {
  background-image: url("assets/technologies/cassandra.svg");
}
.tech-mark.datastax {
  background-image: url("assets/technologies/datastax.svg");
}
.tech-mark.firebase {
  background-image: url("assets/technologies/firebase.svg");
}
.tech-mark.talend {
  background-image: url("assets/technologies/talend.svg");
}
.tech-mark.bricks {
  background-image: url("assets/technologies/databricks.svg");
}
.tech-mark.pbi {
  background-color: #f8cf2d;
  background-image: url("assets/technologies/powerbi.svg");
}
.tech-mark.aws {
  background-image: url("assets/technologies/aws.svg");
}
.tech-mark.gcp {
  background-image: url("assets/technologies/google-cloud.svg");
}
.tech-mark.bq {
  background-image: url("assets/technologies/bigquery.svg");
}
.view-tech-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0 0 14px;
  color: #71dce8;
  font-size: 0.74rem;
  font-weight: 700;
}
.view-tech-link:hover span {
  transform: translateY(2px);
}
.view-tech-link span {
  transition: transform 0.2s ease;
}

/* Interactive technology ecosystem */
.technology-section {
  padding: 86px 0;
  color: #dceaf1;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(93, 55, 160, 0.18),
      transparent 34%
    ),
    linear-gradient(135deg, #071827, #080d19);
}
.technology-heading h2 {
  color: #fff;
}
.technology-heading p:last-child {
  color: #91aaba;
}
.technology-explorer {
  overflow: hidden;
  border: 1px solid rgba(73, 209, 229, 0.18);
  border-radius: 22px;
  background: rgba(5, 20, 33, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}
.technology-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px;
  border-bottom: 1px solid rgba(73, 209, 229, 0.13);
  background: rgba(3, 14, 25, 0.55);
}
.technology-tabs button {
  min-height: 48px;
  padding: 8px 12px;
  border: 0;
  border-radius: 12px;
  color: #89a5b5;
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
}
.technology-tabs button:hover,
.technology-tabs button:focus-visible {
  color: #dffcff;
  outline: 2px solid rgba(63, 219, 235, 0.38);
  outline-offset: -2px;
}
.technology-tabs button[aria-selected="true"] {
  color: #70edf5;
  background: linear-gradient(
    135deg,
    rgba(21, 118, 135, 0.3),
    rgba(41, 75, 120, 0.22)
  );
  box-shadow: inset 0 0 0 1px rgba(69, 220, 234, 0.23);
}
.technology-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  padding: 24px;
  animation: technologyReveal 0.3s ease;
}
.technology-panel[hidden] {
  display: none;
}
.technology-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(77, 216, 235, 0.13);
  border-radius: 15px;
  background: linear-gradient(
    145deg,
    rgba(10, 38, 55, 0.72),
    rgba(8, 22, 37, 0.82)
  );
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.technology-card:hover {
  transform: translateY(-3px);
  border-color: rgba(76, 223, 237, 0.38);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.technology-card .tech-mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  font-size: 0.72rem;
}
.technology-card b,
.technology-card small {
  display: block;
}
.technology-card b {
  color: #f3fbff;
  font-size: 0.92rem;
}
.technology-card small {
  margin-top: 2px;
  color: #7895a6;
  font-size: 0.7rem;
}
@keyframes technologyReveal {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

/* Guided project technology selection */
.technology-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.technology-field legend {
  margin-bottom: 2px;
  padding: 0;
  font-weight: 700;
}
.technology-field:disabled {
  opacity: 0.64;
}
.field-hint,
.field-error {
  margin: 0 0 8px;
  font-size: 0.76rem;
}
.field-hint {
  color: var(--muted);
}
.field-error {
  min-height: 1.2em;
  margin: 6px 0 0;
  color: #b42318;
  font-weight: 650;
}
.form-tech-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-tech-option {
  padding: 8px 12px;
  border: 1px solid #cbdedb;
  border-radius: 999px;
  color: #365268;
  background: #fff;
  font: inherit;
  font-size: 0.79rem;
  font-weight: 650;
  cursor: pointer;
  transition: 0.2s ease;
}
.form-tech-option:hover,
.form-tech-option:focus-visible {
  border-color: var(--teal);
  outline: 2px solid rgba(15, 148, 136, 0.18);
  outline-offset: 2px;
}
.form-tech-option[aria-pressed="true"] {
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
  box-shadow: 0 6px 16px rgba(15, 148, 136, 0.2);
}
@media (max-width: 760px) {
  .technology-tabs {
    display: flex;
    overflow-x: auto;
  }
  .technology-tabs button {
    flex: 0 0 auto;
  }
  .technology-panel {
    grid-template-columns: 1fr;
    padding: 15px;
  }
}
@media (max-width: 520px) {
  .hero-platforms {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 58px 58px 48px;
  }
  .hero-platform {
    justify-content: center;
    min-height: 58px;
    padding: 7px;
  }
  .hero-platform span {
    display: none;
  }
  .hero-pathway span {
    display: block;
  }
  .hero-pathway.etl-pathway {
    grid-row: 3;
    grid-column: 1 / 3;
  }
  .hero-pathway.reporting-pathway {
    grid-row: 3;
    grid-column: 3 / 5;
  }
  .hero-platform .tech-mark {
    width: 40px;
    height: 40px;
  }
}
.hero-primary {
  background: #27d4e5;
  color: #061827 !important;
  box-shadow: 0 0 32px rgba(39, 212, 229, 0.25);
}
.hero-primary:hover {
  background: #6eebf5;
  box-shadow: 0 0 45px rgba(39, 212, 229, 0.42);
}
.hero-primary span {
  transition: transform 0.2s;
}
.hero-primary:hover span {
  transform: translateX(4px);
}
.hero-secondary {
  border-color: rgba(184, 213, 226, 0.35) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #eaf7fb !important;
}
.hero-secondary:hover {
  border-color: #5ee7f3 !important;
  background: rgba(38, 217, 243, 0.08) !important;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: #8eabbc;
  font-size: 0.82rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3af4b5;
  box-shadow:
    0 0 0 5px rgba(58, 244, 181, 0.09),
    0 0 15px #3af4b5;
  animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
  50% {
    box-shadow:
      0 0 0 9px rgba(58, 244, 181, 0),
      0 0 20px #3af4b5;
  }
}
.system-map {
  position: relative;
  height: 500px;
  border: 1px solid rgba(69, 210, 233, 0.2);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(7, 32, 48, 0.78),
    rgba(18, 11, 29, 0.78)
  );
  box-shadow:
    inset 0 0 70px rgba(22, 173, 198, 0.06),
    0 28px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.system-map:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(67, 222, 241, 0.35) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.24;
}
.map-kicker {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: #70ddea;
  font:
    700 0.66rem/1.2 ui-monospace,
    monospace;
  letter-spacing: 0.14em;
}
.map-live {
  color: #6ff5bd;
}
.map-live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ff5bd;
  margin-right: 6px;
  box-shadow: 0 0 10px #6ff5bd;
}
.map-lines {
  position: absolute;
  inset: 35px 0 45px;
  width: 100%;
  height: calc(100% - 80px);
}
.flow-line {
  fill: none;
  stroke: url(#flow);
  stroke-width: 1.7;
  stroke-dasharray: 7 7;
  opacity: 0.55;
  animation: dash 16s linear infinite;
}
.l2,
.l4 {
  animation-direction: reverse;
}
.l5 {
  opacity: 0.28;
}
@keyframes dash {
  to {
    stroke-dashoffset: -220;
  }
}
.packet {
  fill: #80f2ff;
  filter: url(#glow);
}
.map-node {
  position: absolute;
  z-index: 2;
  width: 112px;
  padding: 11px 8px;
  border: 1px solid rgba(70, 221, 240, 0.32);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(15, 75, 94, 0.94),
    rgba(8, 29, 45, 0.96)
  );
  color: #c8f8ff;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(38, 217, 243, 0);
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.map-node b {
  display: block;
  color: #fff;
  font:
    800 0.7rem/1 ui-monospace,
    monospace;
  letter-spacing: 0.12em;
}
.map-node span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
}
.map-node:hover,
.map-node:focus-visible,
.map-node.active {
  transform: translateY(-3px) scale(1.04);
  border-color: #66eaf7;
  background: linear-gradient(180deg, #14647b, #09283e);
  box-shadow: 0 0 24px rgba(38, 217, 243, 0.28);
  outline: none;
}
.n-app {
  left: 4%;
  top: 14%;
}
.n-etl {
  left: 4%;
  bottom: 21%;
}
.n-core {
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  width: 138px;
  padding: 20px 10px;
}
.n-core:hover,
.n-core:focus-visible,
.n-core.active {
  transform: translate(-50%, -53%) scale(1.04);
}
.n-cloud {
  right: 4%;
  top: 14%;
}
.n-bi {
  right: 4%;
  bottom: 21%;
}
.map-readout {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 14px;
  width: 54%;
  transform: translateX(-50%);
  text-align: center;
}
.map-readout small {
  display: block;
  color: #5ed9e8;
  font:
    700 0.58rem/1.4 ui-monospace,
    monospace;
  letter-spacing: 0.14em;
}
.map-readout strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
}
.map-readout span {
  display: block;
  color: #7695a8;
  font-size: 0.68rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.map-node.node-flash {
  animation: nodeFlash 0.35s ease;
}
@keyframes nodeFlash {
  50% {
    filter: brightness(1.65);
  }
}
.home .proof {
  padding: 0;
  background: #081522;
  border-bottom-color: #18364a;
  color: #fff;
}
.home .proof-row {
  gap: 0;
}
.home .proof-item {
  position: relative;
  padding: 27px 28px;
}
.home .proof-item:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: linear-gradient(transparent, #315368, transparent);
}
.home .proof-item strong {
  color: #58e4f3;
  font-size: 1.8rem;
}
.home .proof-item span {
  color: #8fa9ba;
}
.home .proof-item:hover {
  background: linear-gradient(180deg, rgba(38, 217, 243, 0.06), transparent);
}
@media (max-width: 1150px) {
  .hero-tech .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-tech .hero-copy {
    max-width: 800px;
  }
  .system-map {
    height: 470px;
  }
  .hero-tech h1 {
    max-width: 800px;
  }
  .home .main-nav a {
    padding: 9px 8px;
  }
}
@media (max-width: 900px) {
  .home .main-nav {
    background: #081522;
    border-color: #1e4457;
  }
  .home .main-nav a {
    color: #d1e3ec;
  }
  .brand img {
    width: 50px;
    height: 50px;
  }
  .hero-tech {
    padding-top: 64px;
  }
  .home .proof-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .home .proof-item:nth-child(2):after {
    display: none;
  }
}
@media (max-width: 600px) {
  .brand img {
    width: 46px;
    height: 46px;
  }
  .brand strong {
    font-size: 1.05rem;
  }
  .hero-tech h1 {
    font-size: clamp(2.65rem, 13vw, 3.5rem);
  }
  .hero-tech .actions .btn {
    width: 100%;
  }
  .system-map {
    height: 400px;
    margin-top: 15px;
  }
  .map-node {
    width: 90px;
    padding: 9px 5px;
  }
  .n-core {
    width: 118px;
  }
  .map-readout {
    width: 82%;
  }
  .map-kicker {
    font-size: 0.55rem;
  }
  .home .proof-item {
    padding: 20px 12px;
  }
  .home .proof-item strong {
    font-size: 1.5rem;
  }
  .home .proof-item span {
    font-size: 0.78rem;
  }
}

.hero-tech .btn.hero-secondary {
  color: #eaf7fb !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(184, 213, 226, 0.38) !important;
}
.hero-tech .btn.hero-secondary:hover {
  color: #fff !important;
  background: rgba(38, 217, 243, 0.1) !important;
  border-color: #5ee7f3 !important;
}

.system-map:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    190px circle at var(--map-x, 50%) var(--map-y, 50%),
    rgba(47, 221, 242, 0.11),
    transparent 72%
  );
  opacity: 0;
  transition: opacity 0.2s;
}
.system-map:hover:after {
  opacity: 1;
}
.flow-line {
  transition:
    stroke 0.18s,
    stroke-width 0.18s,
    opacity 0.18s,
    filter 0.18s;
}
.system-map.has-focus .flow-line {
  opacity: 0.1;
}
.system-map.has-focus .flow-line.is-active,
.flow-line.is-active {
  stroke: #ff66cf;
  stroke-width: 3;
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(255, 102, 207, 0.9));
  animation-duration: 5s;
}
.system-map.has-focus .packet {
  opacity: 0.18;
}
.map-node {
  will-change: transform, box-shadow;
}
.map-node:hover {
  box-shadow:
    0 0 12px rgba(57, 227, 246, 0.7),
    0 0 38px rgba(57, 227, 246, 0.24);
}

/* Professional database operations console */
.ops-console {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(77, 216, 235, 0.22);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(6, 27, 43, 0.96),
    rgba(13, 11, 28, 0.97)
  );
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.03),
    0 28px 80px rgba(0, 0, 0, 0.32);
}
.ops-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 49px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(88, 216, 234, 0.16);
  color: #7ddfeb;
  font:
    750 0.64rem/1 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.12em;
}
.console-mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border: 2px solid #54e4ef;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(84, 228, 239, 0.7);
}
.ops-live {
  color: #6ef2b6;
}
.ops-live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #6ef2b6;
  box-shadow: 0 0 10px #6ef2b6;
  animation: statusPulse 2s infinite;
}
.ops-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 470px;
}
.ops-services {
  padding: 13px 10px;
  border-right: 1px solid rgba(88, 216, 234, 0.14);
  background: rgba(4, 17, 29, 0.48);
}
.ops-service {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 68px;
  padding: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #8fa8b9;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
}
.ops-service:hover,
.ops-service:focus-visible,
.ops-service.active {
  border-color: rgba(75, 224, 239, 0.3);
  background: linear-gradient(
    90deg,
    rgba(32, 188, 207, 0.15),
    rgba(32, 188, 207, 0.03)
  );
  color: #fff;
  outline: none;
  transform: translateX(3px);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(72, 220, 237, 0.22);
  border-radius: 8px;
  background: rgba(32, 188, 207, 0.08);
  color: #5ce7f2;
  font:
    800 0.68rem/1 ui-monospace,
    monospace;
}
.ops-service b,
.ops-service small {
  display: block;
}
.ops-service b {
  font-size: 0.74rem;
}
.ops-service small {
  margin-top: 2px;
  color: #648397;
  font-size: 0.6rem;
}
.ops-dashboard {
  padding: 22px 24px 18px;
}
.dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}
.dashboard-heading small {
  color: #56dce9;
  font:
    700 0.57rem/1.2 ui-monospace,
    monospace;
  letter-spacing: 0.12em;
}
.dashboard-heading h3 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 1.16rem;
}
.environment {
  padding: 5px 8px;
  border: 1px solid rgba(110, 242, 182, 0.3);
  border-radius: 99px;
  color: #6ef2b6;
  font:
    700 0.54rem/1 ui-monospace,
    monospace;
  letter-spacing: 0.08em;
}
#opsDescription {
  min-height: 44px;
  margin: 10px 0 16px;
  color: #86a0b2;
  font-size: 0.76rem;
  line-height: 1.5;
}
.telemetry-row {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 13px;
}
.telemetry-chart,
.ops-kpi,
.health-grid > div,
.activity-line {
  border: 1px solid rgba(83, 205, 226, 0.14);
  background: rgba(4, 19, 32, 0.62);
}
.telemetry-chart {
  height: 150px;
  padding: 11px 12px 0;
  border-radius: 12px;
}
.chart-label {
  display: flex;
  justify-content: space-between;
  color: #65879c;
  font:
    700 0.52rem/1 ui-monospace,
    monospace;
  letter-spacing: 0.1em;
}
.chart-label b {
  color: #6ef2b6;
}
.chart-label b i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6ef2b6;
}
.telemetry-chart svg {
  width: 100%;
  height: 108px;
  overflow: visible;
}
.chart-area {
  fill: url(#chartFill);
}
.chart-line {
  fill: none;
  stroke: #45ddea;
  stroke-width: 2.2;
  filter: drop-shadow(0 0 5px rgba(69, 221, 234, 0.7));
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  stroke-dashoffset: 0;
}
.ops-console.is-booting .chart-line {
  stroke-dashoffset: 620;
  animation: drawChart 1.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ops-console.is-booting .chart-area {
  opacity: 0;
  animation: revealChartArea 0.8s 1s ease forwards;
}
.ops-console.is-booting .chart-pulse {
  opacity: 0;
  animation:
    revealChartPoint 0.25s 1.55s ease forwards,
    chartPulse 1.5s 1.8s infinite;
}
.chart-pulse {
  fill: #65eff8;
  filter: drop-shadow(0 0 5px #65eff8);
  animation: chartPulse 1.5s infinite;
}
@keyframes drawChart {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes revealChartArea {
  to {
    opacity: 1;
  }
}
@keyframes revealChartPoint {
  to {
    opacity: 1;
  }
}
@keyframes chartPulse {
  50% {
    r: 8px;
    opacity: 0.4;
  }
}
.ops-kpi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  text-align: center;
}
.ops-kpi strong {
  color: #fff;
  font-size: 1.55rem;
}
.ops-kpi span {
  max-width: 85px;
  color: #65879c;
  font-size: 0.6rem;
  line-height: 1.35;
}
.health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 10px;
}
.health-grid > div {
  padding: 10px;
  border-radius: 9px;
}
.health-grid > div.is-resolving {
  border-color: rgba(255, 106, 106, 0.35);
  box-shadow: inset 0 0 20px rgba(255, 74, 91, 0.06);
}
.health-grid > div.is-resolving strong,
.health-grid > div.is-resolving small {
  color: #ff6f7f;
}
.health-grid > div.is-resolved {
  animation: healthResolved 0.65s ease;
}
@keyframes healthResolved {
  45% {
    border-color: rgba(76, 242, 178, 0.7);
    box-shadow: 0 0 18px rgba(76, 242, 178, 0.16);
  }
}
.health-grid span,
.health-grid strong,
.health-grid small {
  display: block;
}
.health-grid span {
  color: #68879a;
  font-size: 0.58rem;
}
.health-grid strong {
  margin: 3px 0;
  color: #fff;
  font-size: 0.88rem;
}
.health-grid small {
  font-size: 0.55rem;
}
.good {
  color: #5beab0;
}
.activity-line {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  padding: 9px 11px;
  border-radius: 9px;
}
.activity-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(91, 234, 176, 0.1);
  color: #5beab0;
}
.activity-line b,
.activity-line small {
  display: block;
}
.activity-line b {
  color: #d8e9ef;
  font-size: 0.68rem;
}
.activity-line small {
  color: #648397;
  font-size: 0.57rem;
}
.activity-line time {
  color: #5beab0;
  font:
    700 0.54rem/1 ui-monospace,
    monospace;
}
.training-tech-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.training-tech-list[hidden] {
  display: none;
}
.training-tech-list b {
  flex-basis: 100%;
  color: #fff;
}
.training-tech-list span {
  padding: 3px 7px;
  border: 1px solid rgba(76, 225, 238, 0.22);
  border-radius: 999px;
  background: rgba(31, 207, 219, 0.07);
  color: #8adfe7;
  font:
    700 0.48rem/1.2 ui-monospace,
    monospace;
}
.ops-dashboard.switching {
  animation: dashboardSwitch 0.25s ease;
}
@keyframes dashboardSwitch {
  50% {
    opacity: 0.55;
    transform: translateY(2px);
  }
}
@media (max-width: 1050px) {
  .ops-console {
    min-height: auto;
  }
}
@media (max-width: 650px) {
  .ops-topbar {
    font-size: 0.53rem;
  }
  .ops-layout {
    grid-template-columns: 1fr;
  }
  .ops-services {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(88, 216, 234, 0.14);
  }
  .ops-service {
    min-width: 142px;
  }
  .ops-dashboard {
    padding: 18px 14px;
  }
  .telemetry-row {
    grid-template-columns: 1fr;
  }
  .ops-kpi {
    min-height: 80px;
  }
  .health-grid {
    grid-template-columns: 1fr 1fr;
  }
  .health-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

/* Nilan AI Brief: deterministic guided company summary */
body.ai-open {
  overflow: hidden;
}
.ai-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  border: 0;
  background: rgba(1, 8, 18, 0.68);
  backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.ai-drawer-overlay.is-open {
  opacity: 1;
}
.ai-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(570px, 100%);
  height: 100dvh;
  color: #d9eaf2;
  background:
    radial-gradient(circle at 100% 0, rgba(102, 63, 178, 0.2), transparent 34%),
    linear-gradient(155deg, #071d2b, #08111f 58%, #0d0b1a);
  border-left: 1px solid rgba(82, 225, 242, 0.22);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.44);
  transform: translateX(105%);
  visibility: hidden;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.42s;
}
.ai-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.ai-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 15px 22px;
  border-bottom: 1px solid rgba(82, 225, 242, 0.15);
  background: rgba(4, 16, 29, 0.55);
}
.ai-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}
.ai-identity small {
  display: block;
  color: #59deeb;
  font:
    750 0.58rem/1.2 ui-monospace,
    monospace;
  letter-spacing: 0.13em;
}
.ai-identity h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 1.18rem;
}
.ai-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(67, 226, 241, 0.42);
  border-radius: 13px;
  background: linear-gradient(
    145deg,
    rgba(32, 194, 209, 0.22),
    rgba(105, 72, 181, 0.18)
  );
  box-shadow:
    inset 0 0 18px rgba(70, 224, 238, 0.1),
    0 0 22px rgba(70, 224, 238, 0.12);
}
.ai-orb::before,
.ai-orb::after,
.ai-orb i {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.ai-orb::before {
  width: 19px;
  height: 19px;
  border: 1px solid #55e1ee;
  animation: aiOrbit 5s linear infinite;
}
.ai-orb::after {
  width: 5px;
  height: 5px;
  background: #b889ff;
  box-shadow: 0 0 12px #b889ff;
}
.ai-orb i {
  width: 31px;
  height: 12px;
  border-top: 1px solid rgba(91, 231, 242, 0.6);
  transform: rotate(-34deg);
}
@keyframes aiOrbit {
  to {
    transform: rotate(360deg);
  }
}
.ai-close {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 1px solid rgba(128, 180, 198, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #b8cdd8;
  font: 300 1.55rem/1 sans-serif;
  cursor: pointer;
}
.ai-close:hover,
.ai-close:focus-visible {
  border-color: #5ce4ef;
  color: #fff;
  outline: none;
}
.ai-drawer-body {
  overflow-y: auto;
  padding: 22px;
  scrollbar-color: #24576a transparent;
}
.ai-summary-card,
.ai-recommendation {
  position: relative;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(78, 215, 233, 0.18);
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(12, 42, 57, 0.72),
    rgba(14, 21, 39, 0.8)
  );
}
.ai-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(88, 229, 241, 0.04),
    transparent 70%
  );
}
.ai-message-label,
.ai-step {
  color: #64dfea;
  font:
    750 0.58rem/1.4 ui-monospace,
    monospace;
  letter-spacing: 0.12em;
}
.ai-spark {
  color: #bc8bff;
}
#aiSummary {
  min-height: 76px;
  margin: 13px 0 0;
  color: #d8e8ee;
  font-size: 0.91rem;
  line-height: 1.65;
}
.ai-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  min-height: 76px;
}
.ai-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55dfea;
  animation: typingDot 1s infinite ease-in-out;
}
.ai-typing span:nth-child(2) {
  animation-delay: 0.13s;
}
.ai-typing span:nth-child(3) {
  animation-delay: 0.26s;
}
@keyframes typingDot {
  50% {
    transform: translateY(-5px);
    opacity: 0.45;
  }
}
.ai-typing.is-done {
  display: none;
}
.ai-guided-content {
  animation: aiReveal 0.45s ease both;
}
@keyframes aiReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}
.ai-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0 24px;
}
.ai-metrics > div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(77, 210, 229, 0.14);
  border-radius: 12px;
  background: rgba(3, 17, 29, 0.58);
}
.ai-metrics strong {
  display: block;
  color: #61e6f1;
  font-size: 1.28rem;
}
.ai-metrics span {
  display: block;
  margin-top: 4px;
  color: #7895a7;
  font-size: 0.68rem;
  line-height: 1.4;
}
.ai-question h3 {
  margin: 6px 0 13px;
  color: #fff;
  font-size: 1.1rem;
}
.ai-step {
  margin: 0;
}
.ai-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ai-options button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid rgba(88, 193, 212, 0.17);
  border-radius: 10px;
  background: rgba(8, 29, 44, 0.7);
  color: #bdd0da;
  font: 600 0.73rem/1.3 inherit;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
}
.ai-options button span {
  flex: 0 0 29px;
  display: grid;
  place-items: center;
  height: 29px;
  border-radius: 8px;
  background: rgba(52, 211, 226, 0.09);
  color: #5be2ee;
}
.ai-options button:hover,
.ai-options button:focus-visible,
.ai-options button.active {
  border-color: rgba(84, 225, 239, 0.55);
  background: rgba(22, 102, 119, 0.25);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}
.ai-recommendation {
  margin-top: 16px;
  animation: aiReveal 0.35s ease both;
}
.ai-recommendation h3 {
  margin: 9px 0 7px;
  color: #fff;
  font-size: 1.12rem;
}
.ai-recommendation p {
  margin: 0;
  color: #91aab8;
  font-size: 0.78rem;
  line-height: 1.55;
}
.ai-service-line {
  margin: 14px 0;
  padding: 11px 12px;
  border-left: 2px solid #56e0ec;
  background: rgba(70, 218, 234, 0.06);
}
.ai-service-line small,
.ai-service-line strong {
  display: block;
}
.ai-service-line small {
  color: #66889b;
  font:
    700 0.53rem/1.3 ui-monospace,
    monospace;
  letter-spacing: 0.1em;
}
.ai-service-line strong {
  margin-top: 3px;
  color: #63e5ef;
  font-size: 0.79rem;
}
.ai-contact {
  width: 100%;
}
.ai-drawer-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 22px;
  border-top: 1px solid rgba(82, 225, 242, 0.13);
  color: #5f7c8e;
  font-size: 0.58rem;
}
.ai-drawer-footer i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #5beab0;
}
@media (max-width: 600px) {
  .ai-drawer {
    width: 100%;
  }
  .ai-drawer-header {
    min-height: 72px;
    padding: 12px 15px;
  }
  .ai-drawer-body {
    padding: 15px;
  }
  .ai-options {
    grid-template-columns: 1fr;
  }
  .ai-drawer-footer {
    flex-direction: column;
    padding: 10px 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ai-drawer,
  .ai-drawer-overlay,
  .ai-guided-content,
  .ai-recommendation,
  .ai-orb::before,
  .ai-typing span,
  .chart-line,
  .chart-area,
  .chart-pulse,
  .health-grid > div,
  .hero-platform,
  .technology-panel,
  .technology-card,
  .form-tech-option {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
