:root {
  --bg: #030913;
  --panel: #071321;
  --line: #173449;
  --cyan: #10d8ef;
  --cyan2: #087d98;
  --text: #f4f7fb;
  --muted: #a7b2bf;
  --orange: #ff6b00;
  --violet: #7b35ff;
  --green: #2ee0c1;
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: radial-gradient(
    circle at 66% 17%,
    #071b2e 0,
    #030913 35%,
    #02070f 100%
  );
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}
.shell {
  width: min(1480px, calc(100% - 72px));
  margin-inline: auto;
}
.page-glow {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.09;
  pointer-events: none;
  z-index: -1;
}
.page-glow--one {
  background: #00d4ff;
  right: 12%;
  top: 8%;
}
.page-glow--two {
  background: #6531ff;
  right: -15%;
  top: 35%;
}
.site-header {
  height: 98px;
  width: min(1540px, calc(100% - 64px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 6px;
  font-weight: 600;
}
.brand__mark {
  width: 44px;
  height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.main-nav a,
.footer a {
  color: #e6edf3;
  text-decoration: none;
}
.main-nav a {
  font-size: 15px;
}
.main-nav a:hover {
  color: var(--cyan);
}
.login-btn {
  justify-self: end;
  border: 1px solid var(--cyan);
  border-radius: 10px;
  padding: 13px 31px;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.login-btn:hover,
.btn--ghost:hover {
  background: #0b2834;
}
.nav-toggle {
  display: none;
}
.hero {
  min-height: 580px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 50px;
  padding-top: 20px;
  padding-bottom: 45px;
}
.eyebrow {
  color: #6ccddd;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -3px;
  margin: 0;
  font-weight: 500;
}
.hero h1 span {
  color: var(--cyan);
  font-weight: 400;
}
.lead {
  font-size: 19px;
  line-height: 1.65;
  color: #d0d7df;
  margin: 28px 0 30px;
}
.hero__actions {
  display: flex;
  gap: 18px;
}
.btn {
  min-height: 52px;
  padding: 0 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 650;
  transition: 0.22s;
}
.btn--primary {
  background: linear-gradient(180deg, #16ddef, #0db3cc);
  color: #001018;
  box-shadow: 0 0 25px rgba(16, 216, 239, 0.14);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(16, 216, 239, 0.3);
}
.btn--ghost {
  border: 1px solid var(--cyan);
  color: #fff;
}
.ecosystem {
  position: relative;
  min-height: 520px;
}
.orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.connector {
  fill: none;
  stroke: #dffcff;
  stroke-width: 2.2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px #10d8ef);
}
.connector::after {
  content: "";
}
.core-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 205px;
  height: 205px;
  border: 1px solid #26dff3;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 34%,
    rgba(16, 216, 239, 0.15),
    rgba(4, 14, 26, 0.97) 64%
  );
  box-shadow:
    0 0 0 10px rgba(16, 216, 239, 0.03),
    0 0 55px rgba(16, 216, 239, 0.25),
    inset 0 0 30px rgba(16, 216, 239, 0.12);
}
.core-node img {
  width: 62px;
  height: 62px;
  margin-bottom: 10px;
}
.core-node strong {
  letter-spacing: 3px;
  font-size: 19px;
}
.core-node span {
  color: var(--cyan);
  font-size: 18px;
  margin-top: 3px;
}
.app-node {
  position: absolute;
  width: 254px;
  min-height: 126px;
  background: linear-gradient(
    145deg,
    rgba(9, 23, 39, 0.98),
    rgba(4, 13, 24, 0.96)
  );
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 14%, transparent);
  transition: 0.25s;
}
.app-node:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px color-mix(in srgb, var(--accent) 25%, transparent);
}
.app-node img {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 7px;
}
.app-node p {
  color: #d8dee6;
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}
.app-node--emplyra {
  --accent: var(--cyan);
  top: 23px;
  left: 3%;
}
.app-node--prodelyx {
  --accent: var(--orange);
  top: 24px;
  right: 0;
}
.app-node--veylink {
  --accent: var(--violet);
  bottom: 17px;
  left: 3%;
}
.app-node--traqera {
  --accent: var(--green);
  bottom: 17px;
  right: 0;
}
.how {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(8, 25, 41, 0.92),
    rgba(6, 18, 31, 0.9)
  );
  min-height: 198px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) 54px minmax(0, 1fr);
  align-items: center;
  padding: 24px 30px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}
.how__item {
  display: flex;
  align-items: center;
  gap: 28px;
}
.how__item b {
  font-size: 19px;
}
.how__item p {
  color: #b7c2cc;
  line-height: 1.45;
  margin: 5px 0 0;
}
.how__arrow {
  font-size: 54px;
  font-weight: 200;
  color: var(--cyan);
  text-align: center;
}
.how__icon {
  width: 76px;
  height: 62px;
  flex: 0 0 auto;
  position: relative;
}
.monitor:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 64px;
  height: 44px;
  border: 2px solid #50e5f5;
  border-radius: 3px;
}
.monitor:after {
  content: "";
  position: absolute;
  width: 34px;
  height: 13px;
  border-bottom: 2px solid #50e5f5;
  left: 20px;
  bottom: 2px;
  clip-path: polygon(
    38% 0,
    62% 0,
    70% 85%,
    100% 85%,
    100% 100%,
    0 100%,
    0 85%,
    30% 85%
  );
}
.server {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.server i {
  display: block;
  width: 58px;
  height: 14px;
  border: 2px solid #50e5f5;
  border-radius: 4px;
  position: relative;
}
.server i:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #50e5f5;
  right: 7px;
  top: 3px;
}
.cloud:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 21px;
  width: 63px;
  height: 31px;
  border: 2px solid #50e5f5;
  border-radius: 22px;
}
.cloud:after {
  content: "";
  position: absolute;
  left: 26px;
  top: 9px;
  width: 32px;
  height: 32px;
  border: 2px solid #50e5f5;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  background: #071625;
}
.applications {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 24px;
}
.product-card {
  min-height: 132px;
  border: 1px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(
    155deg,
    rgba(8, 22, 37, 0.96),
    rgba(4, 13, 23, 0.95)
  );
  padding: 22px 28px;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, .2); }
.product-card:after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -25px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(35px);
  opacity: 0.1;
}
.product-card img {
  width: 230px;
  max-width: 90%;
  height: auto;
}
.product-card p {
  margin: 8px 0 0;
  color: #e0e5eb;
}
.product-card-link { display: inline-block; margin-top: 12px; color: var(--accent); font-size: 13px; font-weight: 750; }
.product-card--cyan {
  --accent: var(--cyan);
}
.product-card--orange {
  --accent: var(--orange);
}
.product-card--violet {
  --accent: var(--violet);
}
.product-card--green {
  --accent: var(--green);
}
.privacy {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 250px;
  padding: 54px;
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(16, 216, 239, 0.08),
      transparent 35%
    ),
    linear-gradient(140deg, #06111e, #040b14);
  display: flex;
  align-items: center;
}
.privacy small {
  color: var(--cyan);
  letter-spacing: 2px;
}
.privacy h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 12px 0 14px;
}
.privacy h2 span {
  color: var(--cyan);
}
.privacy p {
  max-width: 620px;
  color: #aab7c2;
  line-height: 1.65;
}
.privacy sup { color: var(--cyan); font-size: .7em; font-weight: 800; }
.privacy-note { margin-top: 12px; font-size: 13px; color: #8092a1; }
.cta {
  margin-top: 22px;
  border: 1px solid #173449;
  border-radius: 18px;
  min-height: 125px;
  padding: 25px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
  background: linear-gradient(
    110deg,
    rgba(8, 22, 37, 0.95),
    rgba(4, 13, 23, 0.95)
  );
  position: relative;
  overflow: hidden;
}
.cta:before,
.cta:after {
  content: "";
  position: absolute;
  bottom: -70px;
  width: 420px;
  height: 110px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.18;
}
.cta:before {
  left: -60px;
}
.cta:after {
  right: -60px;
}
.cta h2 {
  font-size: 29px;
  margin: 0 0 2px;
}
.cta p {
  font-size: 26px;
  color: var(--cyan);
  margin: 0;
}
.footer {
  display: flex;
  justify-content: space-between;
  padding-top: 38px;
  padding-bottom: 42px;
  color: #697786;
  font-size: 14px;
}
.footer > div { display: flex; gap: 22px; }
.legal-page { min-height: 100vh; }
.legal { max-width: 920px; padding-top: 64px; padding-bottom: 56px; }
.legal__intro { max-width: 760px; }
.legal__intro h1 { margin: 10px 0 16px; font-size: clamp(38px, 6vw, 64px); line-height: 1.03; letter-spacing: -2px; }
.legal__intro > p:not(.eyebrow):not(.legal__updated) { margin: 0; color: #b4c5d0; font-size: 18px; line-height: 1.65; }
.legal__updated { margin: 18px 0 0; color: #7f96a5; font-size: 13px; }
.legal__notice { margin: 42px 0 32px; padding: 20px 22px; border: 1px solid rgba(255, 179, 71, .55); border-radius: 14px; background: rgba(255, 179, 71, .07); }
.legal__notice strong { color: #ffd49b; font-size: 14px; }
.legal__notice p { margin: 8px 0 0; color: #d3c3a9; line-height: 1.6; }
.legal section { padding: 28px 0; border-top: 1px solid rgba(54, 105, 128, .45); }
.legal section h2 { margin: 0 0 10px; color: #e9f9fc; font-size: 22px; letter-spacing: -.5px; }
.legal section p { max-width: 800px; margin: 10px 0 0; color: #acbec9; line-height: 1.7; }
.legal a { color: var(--cyan); }
@media (max-width: 700px) {
  .legal { padding-top: 34px; padding-bottom: 34px; }
  .legal__intro > p:not(.eyebrow):not(.legal__updated) { font-size: 16px; }
  .legal__notice { margin-top: 30px; }
  .legal section { padding: 22px 0; }
  .footer > div { flex-direction: column; gap: 8px; }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .main-nav {
    position: absolute;
    right: 0;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: #071321;
    border: 1px solid var(--line);
    padding: 24px;
    border-radius: 14px;
  }
  .main-nav.is-open {
    display: flex;
  }
  .nav-toggle {
    display: block;
    justify-self: end;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 6px auto;
  }
  .login-btn {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }
  .hero__copy {
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .ecosystem {
    min-height: 560px;
  }
  .how {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .how__arrow {
    transform: rotate(90deg);
  }
  .applications {
    grid-template-columns: 1fr 1fr;
  }
  .cta {
    gap: 30px;
    justify-content: space-between;
  }
}
@media (max-width: 700px) {
  .shell {
    width: min(100% - 30px, 1480px);
  }
  .site-header {
    width: calc(100% - 30px);
    height: 78px;
  }
  .brand {
    font-size: 17px;
    letter-spacing: 4px;
  }
  .brand__mark {
    width: 37px;
    height: 37px;
  }
  .hero {
    padding-top: 25px;
  }
  .hero h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .lead {
    font-size: 17px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .ecosystem {
    min-height: 700px;
  }
  .orbit {
    display: none;
  }
  .core-node {
    width: 150px;
    height: 150px;
    top: 50%;
  }
  .core-node img {
    width: 46px;
  }
  .app-node {
    width: 46%;
    padding: 14px;
    min-height: 110px;
  }
  .app-node img {
    width: 100%;
  }
  .app-node--emplyra {
    top: 20px;
    left: 0;
  }
  .app-node--prodelyx {
    top: 20px;
    right: 0;
  }
  .app-node--veylink {
    bottom: 20px;
    left: 0;
  }
  .app-node--traqera {
    bottom: 20px;
    right: 0;
  }
  .app-node p {
    font-size: 12px;
  }
  .how {
    padding: 26px;
  }
  .how__item {
    gap: 18px;
  }
  .applications {
    grid-template-columns: 1fr;
  }
  .privacy {
    padding: 32px 24px;
  }
  .privacy h2 {
    font-size: 34px;
  }
  .cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 22px;
  }
  .cta h2 {
    font-size: 24px;
  }
  .cta p {
    font-size: 21px;
  }
  .footer {
    flex-direction: column;
    gap: 12px;
  }
}
.site-header {
  height: 106px;
  width: min(1540px, calc(100% - 64px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 6px;
  font-weight: 700;
}
.brand__mark {
  width: 38px;
  height: 38px;
}
.brand__wordmark {
  display: block;
  width: 216px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav a {
  font-size: 16px;
  letter-spacing: 0.02em;
}
.login-btn {
  justify-self: end;
  border: 1px solid var(--cyan);
  border-radius: 12px;
  padding: 14px 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.02fr 1.08fr;
  align-items: center;
  gap: 28px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.eyebrow {
  color: #6ccddd;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(62px, 4.8vw, 96px);
  line-height: 0.95;
  letter-spacing: -5px;
  margin: 0;
  font-weight: 500;
}
.hero h1 span {
  display: block;
  color: var(--cyan);
  font-weight: 400;
}
.lead {
  font-size: 19px;
  line-height: 1.65;
  color: #d0d7df;
  margin: 28px 0 30px;
}
.hero__actions {
  display: flex;
  gap: 18px;
}
.btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 650;
  transition: 0.22s;
}
.btn--primary {
  background: linear-gradient(180deg, #16ddef, #0db3cc);
  color: #001018;
  box-shadow: 0 0 25px rgba(16, 216, 239, 0.14);
}
.btn--ghost {
  border: 1px solid var(--cyan);
  color: #fff;
  background: transparent;
}
.ecosystem {
  position: relative;
  min-height: 640px;
}
.core-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border: 1px solid #26dff3;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 34%,
    rgba(16, 216, 239, 0.15),
    rgba(4, 14, 26, 0.97) 64%
  );
  box-shadow:
    0 0 0 10px rgba(16, 216, 239, 0.03),
    0 0 55px rgba(16, 216, 239, 0.25),
    inset 0 0 30px rgba(16, 216, 239, 0.12);
}
.core-node img {
  width: 66px;
  height: 66px;
  margin-bottom: 10px;
}
.core-node strong {
  letter-spacing: 5px;
  font-size: 20px;
}
.core-node span {
  color: var(--cyan);
  font-size: 17px;
  margin-top: 3px;
  letter-spacing: 3px;
}
.app-node {
  position: absolute;
  width: 290px;
  min-height: 136px;
  background: linear-gradient(
    145deg,
    rgba(9, 23, 39, 0.98),
    rgba(4, 13, 24, 0.96)
  );
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 14%, transparent);
  transition: 0.25s;
}
.app-node:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px color-mix(in srgb, var(--accent) 25%, transparent);
}
.app-node img {
  width: 170px;
  height: auto;
  display: block;
  margin-bottom: 8px;
}
.app-node p {
  color: #d8dee6;
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}
.app-node--emplyra {
  --accent: var(--cyan);
  top: 15px;
  left: 0;
}
.app-node--prodelyx {
  --accent: var(--orange);
  top: 15px;
  right: 0;
}
.app-node--veylink {
  --accent: var(--violet);
  bottom: 20px;
  left: 0;
}
.app-node--traqera {
  --accent: var(--green);
  bottom: 20px;
  right: 0;
}
.how {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(8, 25, 41, 0.92),
    rgba(6, 18, 31, 0.9)
  );
  min-height: 198px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) 54px minmax(0, 1fr);
  align-items: center;
  padding: 24px 30px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}
.how__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.how__item b {
  font-size: 15px;
}
.how__item p {
  max-width: 265px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.how__icon { display: block; margin: 0; }
.how__item > div { display: grid; justify-items: center; }
.how__icon.cloud { object-fit: cover; filter: none; }
.how-explainer {
  margin-top: 22px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(41, 119, 145, .62);
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(8, 25, 41, .9), rgba(4, 14, 25, .94));
}
.how-explainer header { max-width: 760px; }
.how-explainer small { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.how-explainer h2 { margin: 10px 0 12px; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.12; letter-spacing: -1.3px; }
.how-explainer header > p { margin: 0; color: #aabdc8; line-height: 1.65; }
.how-explainer__steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 32px; }
.how-explainer__steps article { min-height: 196px; padding: 22px; border: 1px solid rgba(41, 119, 145, .5); border-radius: 14px; background: rgba(3, 13, 24, .46); }
.how-explainer__steps span { color: var(--cyan); font: 800 11px/1 "DM Mono", monospace; letter-spacing: .12em; }
.how-explainer__steps h3 { margin: 13px 0 8px; font-size: 18px; }
.how-explainer__steps p { margin: 0; color: #aabdc8; font-size: 14px; line-height: 1.6; }
.how-explainer__summary { margin: 24px 0 0; padding: 14px 16px; border-left: 2px solid var(--cyan); color: #c2d2db; background: rgba(16, 216, 239, .05); line-height: 1.6; }
.how-explainer__summary strong { color: #effcff; }
@media (max-width: 800px) {
  .how-explainer__steps { grid-template-columns: 1fr; }
  .how-explainer__steps article { min-height: 0; }
}
.roadmap { margin-top: 22px; padding: clamp(28px, 4vw, 48px); border: 1px solid rgba(41, 119, 145, .62); border-radius: 18px; background: radial-gradient(circle at 92% 10%, rgba(16, 216, 239, .1), transparent 28%), linear-gradient(140deg, rgba(8, 25, 41, .92), rgba(4, 14, 25, .96)); }
.roadmap__intro { max-width: 735px; }
.roadmap__intro small { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.roadmap__intro h2 { margin: 10px 0 12px; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.12; letter-spacing: -1.3px; }
.roadmap__intro p { margin: 0; color: #aabdc8; line-height: 1.65; }
.roadmap__timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 34px 0 0; padding: 0; list-style: none; }
.roadmap__stage { position: relative; min-height: 235px; padding: 22px 20px; border: 1px solid rgba(41, 119, 145, .48); border-radius: 14px; background: rgba(3, 13, 24, .5); }
.roadmap__stage::before { content: ""; position: absolute; top: -7px; left: 20px; width: 13px; height: 13px; border: 3px solid #061925; border-radius: 50%; background: #5e7583; }
.roadmap__stage--current { border-color: rgba(16, 216, 239, .72); background: linear-gradient(160deg, rgba(16, 216, 239, .12), rgba(3, 13, 24, .56)); }
.roadmap__stage--current::before { background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.roadmap__period { display: block; color: var(--cyan); font: 800 10px/1 "DM Mono", monospace; letter-spacing: .13em; text-transform: uppercase; }
.roadmap__stage h3 { margin: 14px 0 9px; font-size: 19px; line-height: 1.25; }
.roadmap__stage p { margin: 0; color: #aabdc8; font-size: 14px; line-height: 1.58; }
.roadmap__stage strong { position: absolute; right: 20px; bottom: 20px; color: #d7f9fc; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.roadmap__note { margin: 22px 0 0; color: #8298a6; font-size: 13px; line-height: 1.55; }
@media (max-width: 1000px) { .roadmap__timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .roadmap { padding: 30px 22px; } .roadmap__timeline { grid-template-columns: 1fr; } .roadmap__stage { min-height: 205px; } }
.applications {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
}
.product-card {
  height: 210px;
  border: 1px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(
    155deg,
    rgba(8, 22, 37, 0.96),
    rgba(4, 13, 23, 0.95)
  );
  padding: 22px 20px 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card:after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -25px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(35px);
  opacity: 0.12;
}
.product-card img {
  width: 220px;
  max-width: 92%;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}
.product-card p {
  margin: 8px 0 0;
  color: #e0e5eb;
  font-size: 15px;
  line-height: 1.45;
}
.privacy {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 220px;
  padding: 52px 54px;
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(16, 216, 239, 0.08),
      transparent 35%
    ),
    linear-gradient(140deg, #06111e, #040b14);
  display: flex;
  align-items: center;
}
.privacy small {
  color: var(--cyan);
  letter-spacing: 2px;
}
.privacy h2 {
  font-size: 54px;
  line-height: 1.05;
  margin: 12px 0 14px;
}
.privacy h2 span {
  color: var(--cyan);
}
.privacy p {
  max-width: 620px;
  color: #aab7c2;
  line-height: 1.65;
}
.privacy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(210px, .75fr);
  gap: clamp(28px, 6vw, 92px);
  overflow: hidden;
}
.privacy__copy { position: relative; z-index: 1; }
.privacy-note { display: flex; gap: 7px; align-items: flex-start; }
.privacy-note sup { flex: 0 0 auto; margin-top: .18em; }
.privacy__visual {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.privacy__orbit {
  position: absolute;
  border: 1px solid rgba(80, 229, 245, .22);
  border-radius: 50%;
}
.privacy__orbit--outer { width: 188px; height: 188px; border-style: dashed; }
.privacy__orbit--inner { width: 132px; height: 132px; border-color: rgba(80, 229, 245, .38); box-shadow: 0 0 35px rgba(16, 216, 239, .1), inset 0 0 30px rgba(16, 216, 239, .06); }
.privacy__server {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  width: 74px;
}
.privacy__server i {
  display: block;
  height: 17px;
  border: 1px solid var(--cyan);
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(16, 216, 239, .12), rgba(16, 216, 239, .03));
  box-shadow: 0 0 13px rgba(16, 216, 239, .1);
}
.privacy__server i::after { content: ""; display: block; width: 4px; height: 4px; margin: 5px 8px 0 auto; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 7px var(--cyan); }
.privacy__visual-label { position: absolute; bottom: -1px; color: #8fc9d0; font-size: 8px; font-weight: 800; letter-spacing: .14em; line-height: 1.55; text-align: center; }
@media (max-width: 700px) {
  .privacy { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .privacy__copy { display: grid; justify-items: center; }
  .privacy-note { justify-content: center; text-align: left; }
  .privacy__visual { min-height: 176px; }
}
.cta {
  margin-top: 22px;
  border: 1px solid #173449;
  border-radius: 18px;
  min-height: 120px;
  padding: 25px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: linear-gradient(
    110deg,
    rgba(8, 22, 37, 0.95),
    rgba(4, 13, 23, 0.95)
  );
  position: relative;
  overflow: hidden;
}
.cta:before,
.cta:after {
  content: "";
  position: absolute;
  bottom: -70px;
  width: 420px;
  height: 110px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.18;
}
.cta:before {
  left: -60px;
}
.cta:after {
  right: -60px;
}
.cta h2 {
  font-size: 29px;
  margin: 0 0 2px;
}
.cta p {
  font-size: 26px;
  color: var(--cyan);
  margin: 0;
}
.footer {
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
}

/* Haluande Core ecosystem */
.ecosystem {
  min-height: 560px;
  isolation: isolate;
}
.orbit-axis {
  fill: none;
  stroke: rgba(32, 161, 194, 0.16);
  stroke-width: 1;
}
.orbit-ring {
  fill: none;
  transform-origin: 380px 280px;
}
.orbit-ring--outer {
  stroke: rgba(20, 99, 135, 0.36);
  stroke-width: 1;
  stroke-dasharray: 4 9;
  animation: orbit-drift 24s linear infinite;
}
.orbit-ring--middle {
  stroke: rgba(16, 216, 239, 0.27);
  stroke-width: 1.2;
  stroke-dasharray: 3 7;
  animation: orbit-drift 18s linear infinite reverse;
}
.orbit-ring--inner {
  stroke: rgba(16, 216, 239, 0.16);
  stroke-width: 1;
}
.connector {
  stroke: #9ef9ff;
  stroke-width: 2.3;
  stroke-dasharray: 8 12;
  animation: connector-flow 2.8s linear infinite;
}
.connector.c2 { animation-delay: -.7s; }
.connector.c3 { animation-delay: -1.4s; }
.connector.c4 { animation-delay: -2.1s; }
.signal-dot { opacity: .96; }
.core-node {
  width: 196px;
  height: 196px;
  z-index: 1;
  overflow: visible;
  background: radial-gradient(circle at 50% 34%, rgba(28, 225, 246, .22), rgba(4, 15, 27, .98) 63%);
  box-shadow: 0 0 0 10px rgba(16, 216, 239, .035), 0 0 38px rgba(16, 216, 239, .34), 0 0 86px rgba(16, 216, 239, .16), inset 0 0 32px rgba(16, 216, 239, .16);
  animation: core-breathe 4.4s ease-in-out infinite;
}
.core-node::before,
.core-node::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(33, 218, 240, .34);
  border-radius: 50%;
  pointer-events: none;
}
.core-node::before { inset: -18px; }
.core-node::after { inset: -48px; border-color: rgba(26, 149, 191, .16); }
.core-node img,
.core-node strong,
.core-node span { position: relative; z-index: 1; }
.core-node img { width: 58px; height: 58px; margin-bottom: 8px; }
.core-node .core-wordmark { width: 142px; height: auto; margin: 0 0 1px; }
.core-node strong { font-size: 18px; letter-spacing: 4px; }
.core-node span { font-size: 16px; letter-spacing: 2px; }
.core-status {
  margin-top: 7px;
  color: #a7dce3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}
.app-node {
  width: 254px;
  height: 188px;
  padding: 22px 20px 18px;
  z-index: 2;
  background: linear-gradient(145deg, rgba(7, 23, 40, .94), rgba(3, 12, 23, .98));
  backdrop-filter: blur(8px);
}
.app-node img { width: 174px; }
.app-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 8px;
  padding: 3px 7px;
  border: 1px solid color-mix(in srgb, var(--accent) 70%, transparent);
  border-radius: 999px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.product-card .app-status { margin: 1px 0 0; }
.product-card .app-status + p { margin-top: 8px; }
.product-card-link { position: absolute; left: 20px; bottom: 18px; margin: 0; padding: 0; }
.app-node--emplyra { top: 12px; left: 0; }
.app-node--prodelyx { top: 12px; right: 0; }
.app-node--veylink { bottom: 12px; left: 0; }
.app-node--traqera { bottom: 12px; right: 0; }
@keyframes connector-flow { to { stroke-dashoffset: -40; } }
@keyframes orbit-drift { to { transform: rotate(360deg); } }
@keyframes core-breathe {
  0%, 100% { box-shadow: 0 0 0 10px rgba(16, 216, 239, .035), 0 0 38px rgba(16, 216, 239, .3), 0 0 86px rgba(16, 216, 239, .13), inset 0 0 32px rgba(16, 216, 239, .14); }
  50% { box-shadow: 0 0 0 15px rgba(16, 216, 239, .055), 0 0 56px rgba(16, 216, 239, .46), 0 0 108px rgba(16, 216, 239, .22), inset 0 0 40px rgba(16, 216, 239, .24); }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .connector, .core-node { animation: none; }
  .signal-dot { display: none; }
}
@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; }
  .login-btn { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(5, 18, 31, .98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  }
  .main-nav.is-open { display: flex; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 26px;
  }
  .hero__copy { text-align: center; }
  .hero__actions { justify-content: center; }
  .ecosystem { width: min(760px, 100%); margin-inline: auto; min-height: 560px; }
  .how { grid-template-columns: 1fr; gap: 22px; }
  .how__arrow { transform: rotate(90deg); }
  .applications { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .shell { width: calc(100% - 30px); }
  .site-header {
    width: calc(100% - 30px);
    height: 76px;
    grid-template-columns: 1fr auto;
  }
  .brand { gap: 11px; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__wordmark { width: 164px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    top: 64px;
    right: 0;
    min-width: 210px;
    z-index: 30;
  }
  .main-nav.is-open { display: flex; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0 20px;
  }
  .hero__copy { text-align: center; }
  .eyebrow { font-size: 10px; letter-spacing: 2px; }
  .hero h1 { font-size: clamp(38px, 12vw, 48px); letter-spacing: -2px; }
  .lead { margin: 20px 0 24px; font-size: 16px; line-height: 1.55; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn { width: 100%; min-height: 50px; }
  .ecosystem { min-height: 510px; }
  .orbit { display: none; }
  .core-node { width: 140px; height: 140px; }
  .core-node::before { inset: -12px; }
  .core-node::after { inset: -28px; }
  .core-node img { width: 40px; height: 40px; margin-bottom: 5px; }
  .core-node .core-wordmark { width: 102px; margin-bottom: 0; }
  .core-node span { font-size: 12px; letter-spacing: 2px; }
  .core-status { margin-top: 4px; font-size: 7px; letter-spacing: 1px; }
  .app-node { width: 47%; height: 188px; min-height: 0; padding: 18px; border-radius: 13px; }
  .app-node img { width: 100%; max-width: 142px; margin-bottom: 5px; }
  .app-node .app-status { margin-bottom: 6px; padding: 3px 5px; font-size: 7px; }
  .app-node p { font-size: 11px; line-height: 1.35; }
  .app-node--emplyra { top: 10px; left: 0; }
  .app-node--prodelyx { top: 10px; right: 0; }
  .app-node--veylink { bottom: 10px; left: 0; }
  .app-node--traqera { bottom: 10px; right: 0; }
  .how { grid-template-columns: 1fr; gap: 18px; padding: 24px 20px; }
  .how__item { gap: 12px; align-items: center; }
  .how__item b { font-size: 16px; }
  .how__item p { font-size: 14px; }
  .how__arrow { transform: rotate(90deg); font-size: 42px; line-height: .65; }
  .applications { grid-template-columns: 1fr; gap: 14px; padding-top: 18px; }
  .product-card { height: 210px; padding: 18px; }
  .product-card-link { left: 18px; bottom: 18px; }
  .product-card img { width: 190px; }
  .privacy { padding: 32px 24px; min-height: 0; }
  .privacy h2 { font-size: 34px; }
  .cta { flex-direction: column; gap: 20px; padding: 28px 22px; text-align: center; }
  .cta h2 { font-size: 24px; }
  .cta p { font-size: 20px; }
  .footer { flex-direction: column; align-items: center; padding: 30px 0; text-align: center; }
}

/* Application detail pages */
.application-detail { padding: 34px 0 20px; }
.back-link { display: inline-flex; color: #b8c8d5; font-size: 14px; text-decoration: none; }
.back-link:hover { color: var(--cyan); }
.application-hero {
  --accent: var(--cyan);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  min-height: 520px;
  margin-top: 26px;
  padding: clamp(30px, 5vw, 70px);
  border: 1px solid color-mix(in srgb, var(--accent) 62%, #183449);
  border-radius: 22px;
  background: radial-gradient(circle at 82% 22%, color-mix(in srgb, var(--accent) 17%, transparent), transparent 28%), linear-gradient(145deg, rgba(8, 23, 39, .98), rgba(3, 12, 23, .98));
  box-shadow: inset 0 1px rgba(255, 255, 255, .03), 0 26px 65px rgba(0, 0, 0, .16);
}
.application-hero--orange { --accent: var(--orange); }
.application-hero--violet { --accent: var(--violet); }
.application-hero--green { --accent: var(--green); }
.application-hero .app-status { margin-bottom: 22px; }
.application-logo { display: block; width: min(100%, 370px); height: auto; margin-bottom: 34px; }
.application-hero h1 { max-width: 720px; margin: 0; font-size: clamp(32px, 4vw, 56px); font-weight: 500; line-height: 1.08; letter-spacing: -2px; }
.application-hero > div > p { max-width: 650px; margin: 22px 0 0; color: #b9c8d3; font-size: 18px; line-height: 1.65; }
.application-scope { padding: 30px; border: 1px solid color-mix(in srgb, var(--accent) 36%, #1c3b4d); border-radius: 18px; background: rgba(2, 11, 21, .5); }
.application-scope p { margin: 0 0 18px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.application-scope ul { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.application-scope li { position: relative; padding-left: 22px; color: #dce6ed; line-height: 1.4; }
.application-scope li::before { content: ""; position: absolute; top: .48em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.application-availability { max-width: 780px; margin: 28px auto 8px; padding: 46px 30px; text-align: center; }
.application-platform-note { max-width: 900px; margin: 28px auto 0; padding: 32px 38px; border: 1px solid var(--line); border-radius: 18px; text-align: center; background: linear-gradient(130deg, rgba(9, 28, 45, .78), rgba(4, 14, 25, .7)); }
.application-platform-note small { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.application-platform-note h2 { margin: 11px 0; font-size: clamp(25px, 3vw, 36px); font-weight: 500; letter-spacing: -1px; }
.application-platform-note p { max-width: 730px; margin: 0 auto; color: #aebfcb; line-height: 1.65; }
.application-availability small { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.application-availability h2 { margin: 12px 0; font-size: clamp(28px, 4vw, 44px); font-weight: 500; letter-spacing: -1.5px; }
.application-availability p { max-width: 600px; margin: 0 auto 26px; color: #aebfcb; line-height: 1.65; }
@media (max-width: 1100px) {
  .application-hero { grid-template-columns: 1fr; min-height: 0; }
  .application-scope { max-width: 660px; }
}
@media (max-width: 700px) {
  .application-detail { padding-top: 22px; }
  .application-hero { gap: 28px; margin-top: 18px; padding: 28px 20px; border-radius: 18px; }
  .application-logo { width: min(100%, 280px); margin-bottom: 25px; }
  .application-hero h1 { font-size: 34px; letter-spacing: -1.25px; }
  .application-hero > div > p { font-size: 16px; }
  .application-scope { padding: 23px 20px; }
  .application-availability { padding: 36px 14px; }
  .application-platform-note { padding: 28px 20px; }
}
