@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --bg-2: #eef6fb;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(15, 40, 70, 0.12);
  --line-bright: rgba(0, 155, 190, 0.24);
  --text: #101828;
  --muted: #5b677a;
  --dim: #8290a3;
  --cyan: #078fb2;
  --green: #6fe9b3;
  --amber: #f4c766;
  --rose: #ff7aa8;
  --indigo: #8b7cff;
  --shadow: 0 28px 90px rgba(16, 39, 72, 0.16);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(111, 233, 179, 0.22), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(112, 231, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 72% 88%, rgba(255, 122, 168, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #f1f6fb 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(12, 45, 80, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 45, 80, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(7, 143, 178, 0.1) 18.1% 18.4%, transparent 18.8%),
    linear-gradient(62deg, transparent 0 72%, rgba(244, 199, 102, 0.12) 72.1% 72.45%, transparent 72.8%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

#particle-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--text);
  color: #03040a;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  max-width: calc(100vw - 40px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 18px 0;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 40, 70, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 66px;
  margin: 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(205, 221, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(16, 39, 72, 0.12);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 0 28px rgba(112, 231, 255, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(112, 231, 255, 0.09);
  color: var(--text);
  outline: none;
}

.nav-links .nav-login {
  margin-left: 6px;
  border: 1px solid rgba(112, 231, 255, 0.25);
  background: linear-gradient(135deg, rgba(112, 231, 255, 0.24), rgba(139, 124, 255, 0.12));
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.section {
  position: relative;
  padding: 108px 0;
}

.page-main {
  padding-top: 118px;
}

.page-hero {
  min-height: calc(100svh - 118px);
  padding-top: 78px;
}

.hero {
  display: grid;
  min-height: 100svh;
  padding-top: 128px;
  padding-bottom: 58px;
  place-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.product-badge,
.eyebrow,
.overline {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(112, 231, 255, 0.22);
  border-radius: 999px;
  background: rgba(112, 231, 255, 0.08);
  color: var(--text);
}

.product-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.overline {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 700;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.1rem, 3.7vw, 4.15rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.18;
}

.hero-subtitle,
.section-heading p,
.employee-card p,
.department-module p,
.flow-grid p,
.site-footer p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  border: 1px solid rgba(112, 231, 255, 0.5);
  background: linear-gradient(135deg, #e8fbff, #70e7ff 44%, #8b7cff);
  color: #041017;
  box-shadow: 0 18px 48px rgba(112, 231, 255, 0.18);
}

.button-secondary {
  border: 1px solid rgba(205, 221, 255, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  box-shadow: 0 14px 36px rgba(16, 39, 72, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin: 42px 0 0;
}

.hero-metrics div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(16, 39, 72, 0.08);
}

.hero-metrics dt {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border: 1px solid rgba(15, 40, 70, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-visual-card,
.hero-chip {
  position: absolute;
  border: 1px solid rgba(15, 40, 70, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(16, 39, 72, 0.14);
  backdrop-filter: blur(18px);
}

.hero-visual-card {
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px 18px;
}

.hero-visual-card span {
  display: block;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual-card strong {
  display: block;
  margin-top: 5px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.25rem;
  line-height: 1.12;
}

.hero-chip {
  min-height: 40px;
  padding: 10px 13px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
}

.chip-one {
  top: 7%;
  left: -3%;
}

.chip-two {
  top: 22%;
  right: -2%;
}

.chip-three {
  left: 8%;
  bottom: 22%;
}

.command-center {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(205, 221, 255, 0.17);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(7, 11, 19, 0.8);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px);
}

.command-center::before {
  position: absolute;
  inset: 56px 32px 122px;
  content: "";
  border: 1px solid rgba(112, 231, 255, 0.15);
  background-image:
    linear-gradient(rgba(112, 231, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 231, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(black, transparent 92%);
}

.center-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.center-topbar span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.center-topbar strong {
  color: var(--green);
  font-size: 0.88rem;
}

.workflow-map {
  position: relative;
  min-height: 414px;
}

.core-node {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(112, 231, 255, 0.35);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(112, 231, 255, 0.28), rgba(139, 124, 255, 0.16)),
    rgba(5, 12, 20, 0.86);
  place-items: center;
  text-align: center;
  box-shadow: 0 0 54px rgba(112, 231, 255, 0.18), inset 0 0 36px rgba(255, 255, 255, 0.06);
}

.core-node span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.core-node strong {
  display: block;
  margin-top: 6px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.float-card {
  position: absolute;
  z-index: 4;
  width: min(235px, calc(50% - 24px));
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(205, 221, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(10, 18, 31, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: cardDrift 7s ease-in-out infinite;
}

.float-card small {
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.float-card strong,
.float-card span {
  display: block;
}

.float-card strong {
  margin-top: 8px;
  line-height: 1.2;
}

.float-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.card-sales {
  top: 34px;
  left: 34px;
}

.card-finance {
  top: 72px;
  right: 32px;
  animation-delay: -1.8s;
}

.card-legal {
  bottom: 40px;
  left: 46px;
  animation-delay: -3s;
}

.card-ops {
  right: 36px;
  bottom: 24px;
  animation-delay: -4.5s;
}

.task-stream {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 10px;
  padding: 0 20px 20px;
}

.task-stream div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(205, 221, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.task-stream span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
}

.task-stream strong {
  margin-left: auto;
  color: var(--text);
}

.section-heading {
  max-width: 840px;
}

.section-heading.centered {
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 1.03rem;
}

.carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.icon-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(205, 221, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  place-items: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button span {
  font-size: 2.1rem;
  line-height: 0.75;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(112, 231, 255, 0.42);
  background: rgba(112, 231, 255, 0.1);
  outline: none;
}

.employee-carousel {
  display: grid;
  grid-auto-columns: minmax(292px, 360px);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 0 24px;
  scroll-padding-left: max(20px, calc((100vw - 1180px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(112, 231, 255, 0.48) rgba(255, 255, 255, 0.07);
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.employee-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(205, 221, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 46%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(16, 39, 72, 0.1);
  scroll-snap-align: start;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.employee-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 50%, white 8%);
  box-shadow: 0 28px 72px rgba(16, 39, 72, 0.16);
}

.avatar-panel {
  position: relative;
  height: 270px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 18px;
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--accent) 14%, white), rgba(255, 255, 255, 0.9)),
    #ffffff;
}

.avatar-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 260ms ease;
}

.employee-card:hover .avatar-panel img {
  transform: scale(1.07);
}

.employee-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.employee-card h3 {
  margin-top: 14px;
  font-size: 2rem;
}

.employee-role {
  margin: 8px 0 12px;
  color: color-mix(in srgb, var(--accent) 64%, #102746 36%) !important;
  font-weight: 800;
}

.employee-card p:last-child {
  margin: 0;
}

.department-grid,
.feature-grid,
.flow-grid,
.home-preview-grid {
  display: grid;
  gap: 16px;
}

.department-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-preview-grid article,
.platform-preview article {
  border: 1px solid rgba(15, 40, 70, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(16, 39, 72, 0.08);
}

.home-preview-grid article {
  min-height: 240px;
  padding: 22px;
}

.home-preview-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-preview-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-link-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.department-module {
  position: relative;
  min-height: 228px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(16, 39, 72, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.department-module:hover {
  transform: translateY(-5px);
  border-color: rgba(112, 231, 255, 0.34);
  background: rgba(255, 255, 255, 0.96);
}

.module-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: 1px solid rgba(112, 231, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(112, 231, 255, 0.09);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  place-items: center;
}

.module-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.department-module p {
  margin: 10px 0 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.install-state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(111, 233, 179, 0.26);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.department-module small {
  position: absolute;
  right: 16px;
  bottom: 18px;
  color: var(--dim);
  font-weight: 800;
}

.module-detail-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.module-detail-band article,
.perks-grid article {
  border: 1px solid rgba(15, 40, 70, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(16, 39, 72, 0.08);
}

.module-detail-band article {
  min-height: 136px;
  padding: 20px;
}

.module-detail-band strong,
.module-detail-band span {
  display: block;
}

.module-detail-band strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.1rem;
}

.module-detail-band span {
  margin-top: 10px;
  color: var(--muted);
}

.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: steps;
}

.flow-grid article {
  min-height: 285px;
  padding: 22px;
  border: 1px solid rgba(205, 221, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 252, 0.9)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(16, 39, 72, 0.08);
}

.flow-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border: 1px solid rgba(244, 199, 102, 0.3);
  border-radius: 50%;
  color: var(--amber);
  font-weight: 900;
  place-items: center;
}

.flow-grid p {
  margin: 14px 0 0;
}

.work-infographic {
  margin-top: 44px;
}

.workflow-system {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(340px, 1.2fr) minmax(220px, 0.82fr);
  gap: 34px;
  align-items: stretch;
  min-height: 620px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(15, 40, 70, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(112, 231, 255, 0.26), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 252, 0.92));
  box-shadow: var(--shadow);
}

.workflow-system::before {
  position: absolute;
  inset: 34px;
  content: "";
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(7, 143, 178, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 143, 178, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 74%);
  pointer-events: none;
}

.flow-column,
.flow-engine {
  position: relative;
  z-index: 2;
}

.flow-label {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-column {
  display: grid;
  align-content: center;
  gap: 14px;
}

.flow-column article {
  min-height: 98px;
  padding: 16px;
  border: 1px solid rgba(15, 40, 70, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(16, 39, 72, 0.08);
  animation: nodeFloat 6s ease-in-out infinite;
}

.flow-column article:nth-of-type(2) {
  animation-delay: -1s;
}

.flow-column article:nth-of-type(3) {
  animation-delay: -2s;
}

.flow-column article:nth-of-type(4) {
  animation-delay: -3s;
}

.flow-column span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow-column strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.flow-engine {
  display: grid;
  place-items: center;
  min-height: 530px;
}

.engine-ring {
  position: absolute;
  width: min(390px, 88%);
  aspect-ratio: 1;
  border: 2px solid rgba(7, 143, 178, 0.14);
  border-radius: 50%;
  background:
    conic-gradient(from 90deg, rgba(112, 231, 255, 0.05), rgba(112, 231, 255, 0.55), rgba(139, 124, 255, 0.18), rgba(112, 231, 255, 0.05));
  filter: drop-shadow(0 28px 70px rgba(7, 143, 178, 0.18));
  animation: orbitSpin 16s linear infinite;
}

.engine-ring::after {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px dashed rgba(7, 143, 178, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.engine-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(270px, 76%);
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(7, 143, 178, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(16, 39, 72, 0.14);
  place-items: center;
  text-align: center;
}

.engine-core span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.engine-core strong {
  max-width: 220px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.engine-core small {
  color: var(--muted);
  font-weight: 800;
}

.engine-metrics {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(480px, 100%);
  transform: translateX(-50%);
}

.engine-metrics div {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(15, 40, 70, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(16, 39, 72, 0.08);
}

.engine-metrics span,
.engine-metrics strong {
  display: block;
}

.engine-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.engine-metrics strong {
  margin-top: 5px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
}

.flow-connector {
  position: absolute;
  top: 50%;
  z-index: 1;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(7, 143, 178, 0.34), transparent);
}

.connector-a {
  left: 25%;
  width: 23%;
}

.connector-b {
  right: 25%;
  width: 23%;
}

.flow-packet {
  position: absolute;
  z-index: 5;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(111, 233, 179, 0.14), 0 0 28px rgba(111, 233, 179, 0.44);
  animation: packetMove 4.8s ease-in-out infinite;
}

.packet-one {
  top: 34%;
  left: 25%;
}

.packet-two {
  top: 50%;
  left: 46%;
  animation-delay: -1.6s;
}

.packet-three {
  top: 66%;
  left: 67%;
  animation-delay: -3.2s;
}

.perks-section {
  padding-top: 40px;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.perks-grid article {
  min-height: 210px;
  padding: 22px;
}

.perks-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.perks-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

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

.platform-preview {
  display: grid;
  gap: 16px;
}

.platform-preview article {
  min-height: 128px;
  padding: 20px;
}

.platform-preview strong,
.platform-preview span {
  display: block;
}

.platform-preview strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.14rem;
}

.platform-preview span {
  margin-top: 10px;
  color: var(--muted);
}

.platform-preview .button {
  justify-self: start;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(16, 39, 72, 0.07);
}

.feature-item span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(111, 233, 179, 0.13);
}

.feature-item span::before {
  width: 12px;
  height: 7px;
  margin: auto;
  content: "";
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.feature-item h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.contact-hero {
  min-height: calc(100svh - 118px);
  padding-top: 78px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.contact-copy h1 {
  font-size: clamp(3rem, 5.1vw, 5.4rem);
}

.contact-copy > p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(7, 143, 178, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #24405f;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(16, 39, 72, 0.06);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(15, 40, 70, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 253, 0.9)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.lead-form-head span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form-head h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.lead-form-head p {
  margin: 12px 0 0;
  color: var(--muted);
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #26364d;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(15, 40, 70, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  font-size: 0.98rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 140px;
  resize: vertical;
  padding: 13px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(7, 143, 178, 0.48);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(112, 231, 255, 0.18);
}

.lead-form .button {
  justify-self: start;
  min-width: 166px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #147a59;
  font-weight: 800;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note a {
  color: var(--cyan);
  font-weight: 900;
}

.final-cta {
  padding-bottom: 128px;
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid rgba(205, 221, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(112, 231, 255, 0.2), transparent 34%),
    linear-gradient(225deg, rgba(255, 122, 168, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta-inner h2 {
  margin: 0 auto;
}

.final-cta-inner .button {
  margin-top: 30px;
}

.site-footer {
  border-top: 1px solid rgba(15, 40, 70, 0.1);
  padding: 34px 0;
  background: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer h2 {
  font-size: 1.2rem;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes cardDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes packetMove {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translate(92px, -10px) scale(1.22);
    opacity: 1;
  }
}

@keyframes networkFlow {
  to {
    stroke-dashoffset: -92;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.18);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .feature-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .command-center {
    min-height: 560px;
  }

  .department-grid,
  .flow-grid,
  .employee-grid,
  .home-preview-grid,
  .module-detail-band,
  .perks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-system {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 24px;
  }

  .flow-engine {
    min-height: 430px;
    order: -1;
  }

  .flow-connector,
  .flow-packet {
    display: none;
  }

  .engine-metrics {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 22px;
    transform: none;
  }

  .section-heading.split {
    align-items: start;
  }
}

@media (max-width: 840px) {
  .site-header {
    padding: 12px 0;
  }

  .nav-shell {
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: var(--radius);
  }

  .nav-links .nav-login {
    margin-left: 0;
  }

  .hero {
    padding-top: 124px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5.1rem);
  }

  .section {
    padding: 84px 0;
  }

  .page-main {
    padding-top: 106px;
  }

  .page-hero,
  .contact-hero {
    padding-top: 60px;
  }

  .section-heading.split {
    display: grid;
  }

  .carousel-controls {
    justify-content: start;
  }

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

  .form-row.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .container {
    max-width: calc(100vw - 28px);
  }

  .brand span {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-metrics,
  .department-grid,
  .flow-grid,
  .employee-grid,
  .home-preview-grid,
  .module-detail-band,
  .perks-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .contact-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .lead-form {
    border-radius: 18px;
  }

  .lead-form .button {
    width: 100%;
  }

  .command-center {
    min-height: 710px;
  }

  .hero-visual img {
    aspect-ratio: 0.92 / 1;
  }

  .hero-chip {
    display: none;
  }

  .hero-visual-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .workflow-map {
    min-height: 540px;
  }

  .command-center::before {
    inset: 58px 14px 162px;
  }

  .core-node {
    width: 156px;
    height: 156px;
  }

  .float-card {
    width: calc(100% - 32px);
  }

  .card-sales,
  .card-finance,
  .card-legal,
  .card-ops {
    left: 16px;
    right: 16px;
  }

  .card-sales {
    top: 18px;
  }

  .card-finance {
    top: 150px;
  }

  .card-legal {
    bottom: 142px;
  }

  .card-ops {
    bottom: 10px;
  }

  .task-stream {
    padding-inline: 14px;
  }

  .employee-carousel {
    grid-auto-columns: minmax(274px, 86vw);
  }

  .employee-card {
    min-height: 500px;
  }

  .footer-inner {
    display: grid;
  }
}

@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;
  }
}

/* Homepage redesign */
.home-page {
  --blue: #2563ff;
  --blue-2: #32bbff;
  --violet: #8248ff;
  --ink: #060b18;
  --soft-text: #3c465d;
  --home-dark: #020814;
  background:
    radial-gradient(circle at 3% 35%, rgba(130, 72, 255, 0.2), transparent 20rem),
    radial-gradient(circle at 98% 34%, rgba(37, 99, 255, 0.38), transparent 24rem),
    linear-gradient(180deg, #ffffff 0 38%, #020814 38% 100%);
  color: var(--ink);
}

.home-page::before,
.home-page::after {
  display: none;
}

.home-page #particle-field {
  opacity: 0.12;
}

.home-page .site-header {
  padding: 24px 0 12px;
}

.home-page .site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.7);
}

.home-page .nav-shell {
  min-height: 62px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .brand {
  gap: 10px;
  color: #080d19;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .brand img {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.home-page .brand span {
  display: inline;
}

.home-page .nav-links {
  gap: 22px;
}

.home-page .nav-links a {
  position: relative;
  padding: 9px 5px;
  border-radius: 0;
  color: #050b18;
  font-size: 0.92rem;
  font-weight: 800;
}

.home-page .nav-links a:hover,
.home-page .nav-links a:focus-visible,
.home-page .nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--blue);
}

.home-page .nav-links a[aria-current="page"]::after {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 6px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.home-page .nav-links .nav-login {
  min-height: 46px;
  margin-left: 16px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(67, 84, 255, 0.28);
}

.home-page .nav-links .nav-auth,
.theme-page .nav-links .nav-auth {
  min-height: 42px;
  margin-left: 8px;
  padding: 10px 16px;
  border: 1px solid #c8d5ea;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #07101f;
}

.home-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  margin: 0;
  padding: 116px 0 58px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background:
    radial-gradient(circle at 99% 92%, rgba(37, 99, 255, 0.55), transparent 20rem),
    radial-gradient(circle at 0 76%, rgba(130, 72, 255, 0.18), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 80px rgba(4, 12, 30, 0.2);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, transparent 0 50%, rgba(50, 187, 255, 0.05) 50.1% 50.22%, transparent 50.32%),
    linear-gradient(90deg, transparent 0 50%, rgba(50, 187, 255, 0.06) 50.1% 50.2%, transparent 50.3%);
  content: "";
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: 24px;
  align-items: center;
}

.home-hero .reveal {
  opacity: 1;
  transform: none;
}

.home-hero-copy {
  padding-top: 8px;
}

.home-page .product-badge {
  gap: 10px;
  margin-bottom: 28px;
  padding: 9px 14px;
  border: 0;
  background: #e7f4ff;
  color: #1f56ff;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}

.home-page .product-badge span {
  background: var(--blue);
  box-shadow: none;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: Inter, system-ui, sans-serif;
}

.home-hero h1 {
  max-width: 550px;
  color: #070d1a;
  font-size: clamp(3.2rem, 5.1vw, 4.85rem);
  font-weight: 900;
  line-height: 1.06;
}

.home-hero h1 span,
.home-why h2 span,
.home-impact h2 span {
  display: block;
  background: linear-gradient(100deg, #2498ff 8%, #8248ff 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero .hero-subtitle {
  max-width: 430px;
  margin-top: 28px;
  color: var(--soft-text);
  font-size: 1.08rem;
  line-height: 1.75;
}

.home-page .button {
  min-height: 48px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.home-page .button-primary {
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(67, 84, 255, 0.25);
}

.home-page .button-primary::after,
.home-page .button-ghost::after {
  margin-left: 10px;
  content: "->";
}

.home-page .button-secondary {
  border: 1px solid #c8d5ea;
  background: rgba(255, 255, 255, 0.76);
  color: #07101f;
  box-shadow: none;
}

.home-hero-visual {
  position: relative;
  display: grid;
  min-height: 500px;
  margin: 0;
  place-items: center;
}

.home-hero-visual::before {
  position: absolute;
  inset: 4% -7% 2% -12%;
  z-index: 0;
  border-radius: 36px;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 20%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, #f8fbff 100%);
  content: "";
}

.home-hero-visual::after {
  position: absolute;
  inset: 12% 2% 10% 8%;
  z-index: 0;
  border-radius: 36px;
  background: radial-gradient(circle at 70% 62%, rgba(37, 99, 255, 0.28), transparent 50%);
  filter: blur(34px);
  content: "";
}

.home-hero-visual img {
  position: relative;
  z-index: 2;
  width: min(720px, 112%);
  max-width: none;
  margin-left: -18px;
  border-radius: 28px;
  object-fit: cover;
  object-position: center right;
  filter: drop-shadow(0 34px 70px rgba(33, 76, 150, 0.14));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 96%, transparent 100%);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #edf3ff;
  color: #07101f;
  font-size: 1.1rem;
  font-weight: 900;
  place-items: center;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.55);
}

.home-services,
.home-impact {
  position: relative;
  background:
    radial-gradient(circle at 78% 88%, rgba(37, 99, 255, 0.28), transparent 22rem),
    radial-gradient(circle at 0 12%, rgba(32, 176, 255, 0.12), transparent 28rem),
    var(--home-dark);
  color: #ffffff;
}

.home-services {
  padding: 88px 0 78px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(520px, 1.5fr);
  gap: 60px;
  align-items: center;
}

.home-page .eyebrow {
  color: #2f9cff;
  letter-spacing: 0.22em;
}

.services-copy h2,
.home-impact h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  font-weight: 900;
  line-height: 1.22;
}

.services-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #c8d0df;
  font-size: 1rem;
  line-height: 1.75;
}

.button-ghost {
  margin-top: 26px;
  border: 1px solid rgba(115, 174, 255, 0.58);
  background: transparent;
  color: #ffffff;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(166, 191, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #58b7ff;
  font-size: 0.86rem;
  font-weight: 900;
  place-items: center;
}

.service-card-grid h3 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.service-card-grid p {
  margin: 12px 0 0;
  color: #c3ccdc;
  font-size: 0.94rem;
  line-height: 1.65;
}

.home-why {
  padding: 84px 0 76px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(37, 99, 255, 0.07), transparent 24rem),
    #ffffff;
}

.why-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}

.home-why h2 {
  color: #070d1a;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 900;
}

.home-why h2 span {
  display: inline;
}

.why-heading > p {
  margin: 0;
  color: var(--soft-text);
  font-size: 1rem;
  line-height: 1.75;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.why-card-grid article {
  min-height: 230px;
  padding: 32px 28px;
  border: 1px solid #e5ebf5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(23, 44, 82, 0.08);
}

.why-card-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid #dce8ff;
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  place-items: center;
}

.why-card-grid h3 {
  font-size: 1.05rem;
  font-weight: 900;
}

.why-card-grid p {
  margin: 14px 0 0;
  color: var(--soft-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.home-impact {
  overflow: hidden;
  padding: 74px 0 84px;
}

.home-impact::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  height: 220px;
  pointer-events: none;
  background:
    repeating-linear-gradient(104deg, rgba(130, 72, 255, 0.22) 0 1px, transparent 1px 20px),
    radial-gradient(ellipse at 50% 100%, rgba(37, 99, 255, 0.32), transparent 55%);
  content: "";
}

.impact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(620px, 1.4fr);
  gap: 50px;
  align-items: center;
}

.impact-badge {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid rgba(166, 191, 255, 0.2);
  border-radius: 999px;
  color: #cbd7ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.impact-stats div {
  padding: 6px 26px;
  border-left: 1px solid rgba(75, 146, 255, 0.28);
}

.impact-stats dt {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.impact-stats dd {
  margin: 10px 0 0;
  color: #d9e1f0;
  font-size: 0.95rem;
}

.home-page .site-footer {
  background: #020814;
}

.coming-soon-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 44px;
  align-items: center;
}

.coming-soon-panel {
  position: relative;
  display: grid;
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(129, 156, 220, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 78% 22%, rgba(32, 184, 255, 0.22), transparent 9rem),
    radial-gradient(circle at 24% 72%, rgba(130, 72, 255, 0.18), transparent 10rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 70px rgba(30, 64, 145, 0.12);
  align-content: end;
  overflow: hidden;
}

.coming-soon-panel::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(37, 99, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.coming-soon-panel span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #ffffff;
  font-weight: 900;
  place-items: center;
  box-shadow: 0 18px 34px rgba(67, 84, 255, 0.28);
}

.coming-soon-panel strong,
.coming-soon-panel p {
  position: relative;
  z-index: 1;
}

.coming-soon-panel strong {
  color: #07101f;
  font-size: 1.45rem;
}

.coming-soon-panel p {
  max-width: 320px;
  margin: 12px 0 0;
  color: var(--soft-text);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .home-page .brand img {
    width: 48px;
    height: 48px;
  }

  .home-page .nav-links {
    gap: 10px;
  }

  .home-hero-grid,
  .services-layout,
  .impact-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 380px;
  }

  .home-hero-visual img {
    width: min(680px, 100%);
    margin-left: 0;
  }

  .coming-soon-layout {
    grid-template-columns: 1fr;
  }

  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card-grid,
  .impact-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .home-page .nav-shell {
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 40px rgba(16, 39, 72, 0.12);
  }

  .home-page .brand img {
    width: 44px;
    height: 44px;
  }

  .home-page .nav-toggle {
    background: #ffffff;
  }

  .home-page .nav-links {
    gap: 4px;
    border: 1px solid #e5ebf5;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
  }

  .home-page .nav-links a {
    padding: 11px 12px;
    border-radius: 8px;
  }

  .home-page .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .home-page .nav-links .nav-login {
    margin-left: 0;
  }

  .home-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .why-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-bottom: 48px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  .home-hero-grid {
    gap: 20px;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
  }

  .home-hero-visual {
    min-height: 260px;
  }

  .home-hero-visual::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 66%, #f8fbff 100%);
  }

  .home-hero-visual::after {
    inset: 12% 8%;
  }

  .home-hero-visual img {
    width: min(560px, 112%);
    margin-left: 0;
    border-radius: 22px;
    -webkit-mask-image: linear-gradient(180deg, #000 0 76%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0 76%, transparent 100%);
  }

  .coming-soon-panel {
    min-height: 240px;
    padding: 26px;
  }

  .scroll-cue {
    display: none;
  }

  .service-card-grid,
  .why-card-grid,
  .impact-stats {
    grid-template-columns: 1fr;
  }

  .home-services,
  .home-why,
  .home-impact {
    padding: 64px 0;
  }

  .impact-stats div {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid rgba(75, 146, 255, 0.28);
  }
}

/* Shared JDTera Labs theme for all top-level pages */
.home-page .brand,
.theme-page .brand {
  gap: 10px;
  width: auto;
  height: auto;
  overflow: visible;
  color: #080d19;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .brand img,
.theme-page .brand img {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: cover;
  transform: none;
  box-shadow: none;
}

.home-page .brand span,
.theme-page .brand span {
  display: inline;
}

.theme-page {
  --blue: #2563ff;
  --violet: #8248ff;
  --ink: #060b18;
  --soft-text: #3c465d;
  --home-dark: #020814;
  background:
    radial-gradient(circle at 3% 30%, rgba(130, 72, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 98% 34%, rgba(37, 99, 255, 0.26), transparent 24rem),
    linear-gradient(180deg, #ffffff 0 40%, #020814 40% 100%);
  color: var(--ink);
}

.theme-page::before,
.theme-page::after {
  display: none;
}

.theme-page #particle-field {
  opacity: 0.12;
}

.theme-page .site-header {
  padding: 24px 0 12px;
}

.theme-page .site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.theme-page .nav-shell {
  min-height: 62px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.theme-page .nav-links {
  gap: 22px;
}

.theme-page .nav-links a {
  position: relative;
  padding: 9px 5px;
  border-radius: 0;
  color: #050b18;
  font-size: 0.92rem;
  font-weight: 800;
}

.theme-page .nav-links a:hover,
.theme-page .nav-links a:focus-visible,
.theme-page .nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--blue);
}

.theme-page .nav-links a[aria-current="page"]::after {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 6px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.theme-page .nav-links .nav-login {
  min-height: 46px;
  margin-left: 16px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(67, 84, 255, 0.28);
}

.theme-page .page-main {
  padding-top: 0;
}

.theme-page .page-hero,
.theme-page .contact-hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 128px 0 72px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background:
    radial-gradient(circle at 99% 92%, rgba(37, 99, 255, 0.45), transparent 20rem),
    radial-gradient(circle at 0 76%, rgba(130, 72, 255, 0.16), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 80px rgba(4, 12, 30, 0.18);
}

.theme-page .page-hero::before,
.theme-page .contact-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, transparent 0 50%, rgba(50, 187, 255, 0.05) 50.1% 50.22%, transparent 50.32%),
    linear-gradient(90deg, transparent 0 50%, rgba(50, 187, 255, 0.06) 50.1% 50.2%, transparent 50.3%);
  content: "";
}

.theme-page .page-hero > .container,
.theme-page .contact-hero > .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.theme-page .section-heading.centered {
  text-align: left;
}

.theme-page .section-heading,
.theme-page .contact-copy {
  max-width: 860px;
}

.theme-page .section-heading h1,
.theme-page .contact-copy h1 {
  color: #070d1a;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.06;
}

.theme-page .section-heading h1::first-line,
.theme-page .contact-copy h1::first-line {
  color: #070d1a;
}

.theme-page .section-heading p:not(.eyebrow),
.theme-page .contact-copy p {
  color: var(--soft-text);
  font-size: 1.06rem;
  line-height: 1.75;
}

.theme-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #e7f4ff;
  color: #1f56ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.theme-page .eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.inner-hero-logo {
  display: none;
}

.inner-hero-logo img {
  display: none;
}

.theme-page .section-heading,
.theme-page .contact-copy {
  grid-column: 1;
  order: 1;
}

.theme-page .rich-copy {
  grid-column: 1;
  order: 2;
}

.theme-page .feature-grid,
.theme-page .department-grid,
.theme-page .employee-grid,
.theme-page .work-infographic,
.theme-page .module-detail-band {
  order: 1;
}

.theme-page .feature-grid,
.theme-page .department-grid,
.theme-page .employee-grid,
.theme-page .work-infographic,
.theme-page .module-detail-band,
.theme-page .lead-form {
  grid-column: 1 / -1;
}

.theme-page .feature-grid,
.theme-page .department-grid,
.theme-page .employee-grid,
.theme-page .work-infographic,
.theme-page .module-detail-band {
  order: 3;
  margin-top: 24px;
}

.theme-page .lead-form {
  order: 3;
  max-width: 960px;
  margin: 12px auto 0;
}

.theme-page .coming-soon-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-items: center;
}

.theme-page .coming-soon-layout .section-heading {
  max-width: 760px;
}

.theme-page .button-primary {
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(67, 84, 255, 0.25);
}

.theme-page .button-secondary {
  border: 1px solid #c8d5ea;
  background: rgba(255, 255, 255, 0.76);
  color: #07101f;
  box-shadow: none;
}

.theme-page .page-cta-band,
.theme-page .perks-section,
.theme-page .site-footer {
  background: var(--home-dark);
  color: #ffffff;
}

.theme-page .site-footer {
  border-top: 1px solid rgba(166, 191, 255, 0.14);
}

.theme-page .site-footer p {
  color: #c8d0df;
}

@media (max-width: 1080px) {
  .home-page .brand img,
  .theme-page .brand img {
    width: 48px;
    height: 48px;
  }

  .theme-page .nav-links {
    gap: 10px;
  }

  .theme-page .page-hero > .container,
  .theme-page .contact-hero > .container {
    grid-template-columns: 1fr;
  }

  .theme-page .coming-soon-layout {
    grid-template-columns: 1fr;
  }

  .inner-hero-logo {
    display: none;
  }
}

@media (max-width: 840px) {
  .home-page .nav-shell,
  .theme-page .nav-shell {
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 40px rgba(16, 39, 72, 0.12);
  }

  .home-page .brand img,
  .theme-page .brand img {
    width: 44px;
    height: 44px;
  }

  .theme-page .nav-toggle {
    background: #ffffff;
  }

  .theme-page .nav-links {
    gap: 4px;
    border: 1px solid #e5ebf5;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
  }

  .theme-page .nav-links a {
    padding: 11px 12px;
    border-radius: 8px;
  }

  .theme-page .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .theme-page .nav-links .nav-login {
    margin-left: 0;
  }

  .theme-page .page-hero,
  .theme-page .contact-hero {
    min-height: auto;
    padding-top: 104px;
  }
}

@media (max-width: 640px) {
  .home-page .brand img,
  .theme-page .brand img {
    width: 40px;
    height: 40px;
  }

  .theme-page .page-hero,
  .theme-page .contact-hero {
    padding-bottom: 48px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  .theme-page .section-heading h1,
  .theme-page .contact-copy h1 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .inner-hero-logo {
    display: none;
  }
}
