:root {
  color-scheme: dark;
  --background: #05100f;
  --surface: #081b1a;
  --surface-strong: #0a2220;
  --line: rgba(117, 242, 219, 0.13);
  --line-strong: rgba(117, 242, 219, 0.24);
  --text: #f3fbf9;
  --muted: #809a96;
  --primary: #29dfc4;
  --primary-strong: #10bca8;
  --primary-dark: #04201d;
  --radius: 22px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button {
  color: inherit;
  font: inherit;
}

button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.cnnctAprBtn {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.site-background {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(23, 183, 155, 0.28), transparent 38%),
    linear-gradient(180deg, #07211e 0%, var(--background) 58%, #040d0d 100%);
}

.site-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(72, 236, 207, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 236, 207, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 72%, transparent);
}

.orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
  animation: float 12s ease-in-out infinite alternate;
}

.orb-one {
  top: 17%;
  left: -260px;
  background: #18c8ba;
}

.orb-two {
  top: 32%;
  right: -270px;
  background: #2d8f80;
  animation-delay: -5s;
}

@keyframes float {
  to { transform: translate3d(38px, -22px, 0) scale(1.08); }
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  background: rgba(3, 16, 15, 0.7);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand span,
.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.24em;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.nav-button,
.status-button,
.menu-button,
.footer-button {
  border: 0;
  background: transparent;
}

.nav-button {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.nav-button:hover,
.nav-button.is-active {
  background: rgba(54, 220, 192, 0.1);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 79, 70, 0.16);
  color: #bfeee6;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(41, 223, 196, 0.1), 0 0 16px var(--primary);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 15px;
  height: 1px;
  margin: 4px auto;
  background: var(--text);
}

main {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: 76px;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 126px 0 70px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7ddfce;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.hero h1 {
  margin: 24px 0 0;
  font-family: var(--mono);
  font-size: clamp(48px, 5.4vw, 76px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero h1 em {
  display: block;
  margin: 7px 0 5px;
  color: var(--primary);
  font-style: normal;
  text-shadow: 0 0 48px rgba(41, 223, 196, 0.2);
}

.hero-copy > p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 11px;
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.card-button {
  border-radius: 999px;
  padding: 14px 23px;
  font-size: 13px;
  font-weight: 760;
  transition: transform 0.14s ease, filter 0.14s ease, background 0.14s ease;
}

.primary-button,
.card-button {
  border: 1px solid transparent;
  background: linear-gradient(90deg, var(--primary-strong), var(--primary));
  color: var(--primary-dark);
  box-shadow: 0 16px 40px rgba(18, 193, 167, 0.16);
}

.secondary-button {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.primary-button:hover,
.card-button:hover {
  filter: brightness(1.08);
}

.secondary-button:hover {
  background: rgba(41, 223, 196, 0.07);
}

.cnnctAprBtn:active {
  transform: scale(0.97);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #657e7a;
  font-family: var(--mono);
  font-size: 10px;
}

.shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--primary);
  font-size: 10px;
}

.allocation-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(9, 31, 29, 0.96), rgba(5, 19, 20, 0.98));
  box-shadow: 0 40px 110px rgba(0, 12, 13, 0.48), inset 0 1px rgba(255, 255, 255, 0.05);
}

.allocation-card::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(27, 202, 173, 0.1);
  filter: blur(52px);
}

.card-accent {
  position: absolute;
  top: 0;
  right: 25%;
  left: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 18px var(--primary);
}

.allocation-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.allocation-header small,
.allocation-header h2 {
  display: block;
  margin: 0;
}

.allocation-header small,
.metric small {
  color: #66817c;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.allocation-header h2 {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 22px;
}

.snapshot-badge {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(41, 223, 196, 0.06);
  color: var(--primary);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.allocation-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 25px;
}

.metric {
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.022);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  margin-top: 9px;
  font-size: 14px;
}

.metric span {
  overflow: hidden;
  margin-top: 5px;
  color: #526b67;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.highlight {
  color: var(--primary) !important;
}

.timeline {
  margin: 29px 9px 0;
}

.timeline-line {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline-line span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(41, 223, 196, 0.42);
}

.timeline-points {
  display: flex;
  justify-content: space-between;
  margin-top: -6px;
}

.timeline-points div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #526b67;
  font-family: var(--mono);
  font-size: 9px;
}

.timeline-points i {
  width: 11px;
  height: 11px;
  border: 3px solid #0b2522;
  border-radius: 50%;
  background: #29413e;
}

.timeline-points .done i,
.timeline-points .current i {
  background: var(--primary);
}

.timeline-points .current {
  color: var(--primary);
}

.card-button {
  width: 100%;
  margin-top: 25px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 27, 25, 0.68);
  backdrop-filter: blur(14px);
}

.signal-strip div {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip small,
.signal-strip strong {
  display: block;
}

.signal-strip small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.signal-strip strong {
  margin-top: 7px;
  font-size: 14px;
}

.process-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0 130px;
  scroll-margin-top: 90px;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-heading > span {
  color: var(--primary);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.section-heading h2 {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin: 17px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.process-card {
  position: relative;
  min-height: 270px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
}

.process-card.is-current {
  border-color: var(--line-strong);
  background: rgba(23, 123, 107, 0.08);
}

.step-number {
  position: absolute;
  top: 21px;
  right: 22px;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 800;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(41, 223, 196, 0.06);
  color: var(--primary);
  font-family: var(--mono);
  font-size: 17px;
}

.process-card h3 {
  margin: 24px 0 0;
  font-family: var(--mono);
  font-size: 18px;
}

.process-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.process-card > small {
  position: absolute;
  bottom: 24px;
  color: #536d68;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.process-card.is-current > small,
.process-card.is-complete > small {
  color: var(--primary);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 29px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.footer-button {
  color: var(--primary);
  font-size: 11px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: min(390px, calc(100% - 44px));
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(6, 28, 25, 0.94);
  color: #d9fff8;
  font-family: var(--mono);
  font-size: 11px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 760px;
    padding-top: 145px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .main-navigation {
    position: absolute;
    top: 67px;
    right: 20px;
    display: none;
    width: 210px;
    padding: 8px;
    border-radius: 15px;
    background: rgba(4, 23, 21, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .main-navigation.is-open {
    display: grid;
  }

  .nav-button {
    width: 100%;
    text-align: left;
  }

  .menu-button {
    display: block;
  }
}

@media (max-width: 700px) {
  .header-inner {
    width: calc(100% - 28px);
    height: 68px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small,
  .status-button {
    display: none;
  }

  .hero {
    width: calc(100% - 28px);
    padding: 118px 0 58px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .allocation-card {
    padding: 20px;
  }

  .allocation-header {
    align-items: flex-start;
  }

  .snapshot-badge {
    font-size: 7px;
  }

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

  .metric {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .metric strong {
    margin: 0;
  }

  .metric span {
    grid-column: 1 / -1;
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 28px);
  }

  .signal-strip div:nth-child(2) {
    border-right: 0;
  }

  .signal-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .process-section {
    width: calc(100% - 28px);
    padding: 100px 0 90px;
  }

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

  .site-footer {
    flex-direction: column;
    width: calc(100% - 28px);
    text-align: center;
  }
}

/* Previous Virtuals visual language */
.site-background {
  background:
    radial-gradient(100% 58% at 50% -8%, rgba(17, 187, 154, 0.53), rgba(17, 187, 154, 0.2) 43%, transparent 80%),
    radial-gradient(80% 52% at 50% 72%, rgba(17, 187, 154, 0.13), transparent 74%),
    #061019;
}

.site-grid {
  opacity: 0.055;
  background-size: 56px 56px;
}

.site-header {
  border-bottom: 0;
  background: rgba(4, 17, 22, 0.18);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: calc(100% - 48px);
  max-width: none;
  height: 72px;
}

.brand img {
  width: 112px;
  height: 34px;
  object-fit: contain;
}

.main-navigation {
  justify-content: flex-start;
  margin-right: auto;
  margin-left: 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-button {
  padding: 10px 14px;
  color: #f4f7f7;
  font-family: var(--mono);
  font-weight: 700;
}

.nav-button:hover,
.nav-button.is-active {
  background: rgba(255, 255, 255, 0.07);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-pill span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.header-actions {
  gap: 9px;
}

.search-button {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(7, 19, 35, 0.72);
}

.search-button span {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 11px;
  height: 11px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

.search-button span::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.65);
  transform: rotate(45deg);
}

.header-button {
  height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.header-button-primary {
  background: linear-gradient(90deg, #156f79, #138c61);
}

.create-agent-wrap {
  position: relative;
}

.inference-badge {
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 50%;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: linear-gradient(90deg, #2de0c2, #34d399, #2dd4bf);
  color: #04241f;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.status-button {
  display: none;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 35px;
  width: min(1040px, calc(100% - 48px));
  padding: 185px 0 90px;
}

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

.eyebrow,
.hero-actions,
.hero-note {
  justify-content: center;
}

.eyebrow {
  padding: 7px 13px;
  border: 1px solid rgba(45, 224, 194, 0.15);
  border-radius: 999px;
  background: rgba(9, 39, 38, 0.26);
}

.eyebrow span {
  display: none;
}

.hero h1 {
  margin-top: 25px;
  font-size: clamp(52px, 6.2vw, 82px);
  line-height: 0.98;
}

.allocation-line,
.allocation-line em {
  display: inline;
}

.allocation-line em {
  margin: 0;
}

.hero-copy > p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.hero-actions {
  margin-top: 25px;
}

.allocation-card {
  width: min(720px, 100%);
}

.signal-strip,
.process-section,
.site-footer {
  font-family: var(--mono);
}

@media (max-width: 1050px) {
  .header-button,
  .search-button {
    display: none;
  }

  .create-agent-wrap .header-button {
    display: block;
  }
}

@media (max-width: 980px) {
  .main-navigation {
    position: absolute;
    top: 67px;
    right: 20px;
    display: none;
    width: 210px;
    margin: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(4, 23, 21, 0.98);
  }

  .main-navigation.is-open {
    display: grid;
  }

  .hero {
    gap: 40px;
    padding-top: 145px;
  }
}

@media (max-width: 700px) {
  .header-inner {
    width: calc(100% - 28px);
    height: 68px;
  }

  .brand img {
    width: 96px;
  }

  .create-agent-wrap {
    display: none;
  }

  .hero {
    width: calc(100% - 28px);
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
