:root {
  color-scheme: dark;
  --bg: #06080d;
  --surface: #0f1218;
  --surface-soft: #171b22;
  --panel: #f4f7f8;
  --panel-text: #111820;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #fbfcff;
  --muted: #aeb6c3;
  --muted-strong: #dde4ed;
  --cyan: #55d7f7;
  --blue: #6ea1ff;
  --green: #7ee1b0;
  --coral: #dfc779;
  --violet: #b0c1ff;
  --radius: 8px;
  --container: 1120px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  position: relative;
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: linear-gradient(180deg, #07090d 0%, #090d12 48%, #050608 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 0.75px, transparent 1.45px),
    radial-gradient(circle, rgba(85, 215, 247, 0.58) 0 0.9px, transparent 1.7px),
    radial-gradient(circle, rgba(126, 225, 176, 0.42) 0 0.8px, transparent 1.6px);
  background-position:
    22px 34px,
    118px 152px,
    214px 86px;
  background-size:
    320px 280px,
    520px 420px,
    760px 560px;
  opacity: 0.44;
  animation: starfield-twinkle 5.8s ease-in-out infinite;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, black 0%, black 82%, transparent 100%);
}

body::after {
  display: none;
}

@keyframes starfield-twinkle {
  0% {
    opacity: 0.34;
  }

  50% {
    opacity: 0.62;
  }

  100% {
    opacity: 0.38;
  }
}

@keyframes light-curtains {
  0%,
  100% {
    background-position:
      0 0,
      0 0,
      0 0;
    opacity: 0.44;
  }

  50% {
    background-position:
      4vw -2vh,
      -3vw 4vh,
      2vw 2vh;
    opacity: 0.62;
  }
}

body.nav-open {
  overflow: hidden;
}

body {
  z-index: 0;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes soft-glow {
  0%,
  100% {
    opacity: 0.48;
    transform: rotate(-12deg) scale(1);
  }

  50% {
    opacity: 0.78;
    transform: rotate(8deg) scale(1.08);
  }
}

@keyframes signal-fill {
  0% {
    transform: scaleX(0);
  }

  72%,
  100% {
    transform: scaleX(1);
  }
}

@keyframes bayhsoft-card-glow {
  0%,
  100% {
    box-shadow:
      0 18px 60px rgba(0, 0, 0, 0.22),
      0 0 28px rgba(75, 216, 255, 0.18),
      0 0 0 1px rgba(117, 224, 173, 0.04);
  }

  50% {
    box-shadow:
      0 24px 82px rgba(0, 0, 0, 0.28),
      0 0 48px rgba(75, 216, 255, 0.28),
      0 0 34px rgba(117, 224, 173, 0.16);
  }
}

@keyframes bayhsoft-aura {
  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(75, 216, 255, 0.55);
  outline-offset: 3px;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
p,
a,
span,
strong,
small,
button,
label {
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  margin-bottom: 24px;
  max-width: 700px;
  font-size: clamp(2.6rem, 4.7vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

html[lang="tr"] h1,
html[lang="de"] h1,
html[lang="nl"] h1 {
  font-size: clamp(2.45rem, 4.55vw, 4.2rem);
  line-height: 1.06;
}

h2 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: clamp(1.85rem, 3.55vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(calc(100% - 32px), var(--container));
  margin: 18px auto 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 8, 11, 0.84);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header:hover {
  border-color: rgba(75, 216, 255, 0.22);
  background: rgba(8, 8, 11, 0.9);
  transform: translateY(-1px);
}

.brand,
.site-nav,
.site-header-actions,
.hero-actions,
.contact-direct-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  border-radius: var(--radius);
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.brand.is-active {
  background: transparent;
  box-shadow: none;
}

.brand.is-active .brand-mark {
  border-color: rgba(117, 224, 173, 0.44);
  box-shadow:
    0 0 0 1px rgba(75, 216, 255, 0.08),
    0 0 20px rgba(75, 216, 255, 0.14);
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(83, 216, 255, 0.36);
  border-radius: var(--radius);
  color: var(--cyan);
  background: linear-gradient(160deg, rgba(75, 216, 255, 0.2), rgba(117, 224, 173, 0.1));
}

.brand-mark img {
  display: block;
  width: 116%;
  height: 116%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(75, 216, 255, 0.45));
}

.site-nav {
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--muted-strong);
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(75, 216, 255, 0.13);
}

.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  cursor: pointer;
}

.language-trigger::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-2px) rotate(45deg);
}

.language-trigger img,
.language-options img {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: none;
  min-width: 188px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 11, 18, 0.97);
  box-shadow: var(--shadow);
}

.language-menu.is-open .language-options {
  display: grid;
  gap: 4px;
}

.language-options button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: transparent;
  font: inherit;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
}

.language-options button:hover,
.language-options button.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  min-height: 48px;
  min-width: 0;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.header-cta::after,
.button::after {
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

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

.header-cta:hover::after,
.button:hover::after {
  left: 120%;
}

.header-cta,
.button-primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), #78e0a7);
  box-shadow: 0 12px 34px rgba(75, 216, 255, 0.18);
}

.button {
  white-space: normal;
}

.header-cta {
  white-space: nowrap;
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  border-color: rgba(75, 216, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.section,
.contact-band,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 112px;
}

.compact-section {
  padding-top: 36px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.9fr);
  gap: 54px;
  align-items: center;
  min-height: auto;
  padding-top: 52px;
  padding-bottom: 56px;
}

.hero h1 {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
  min-height: 42px;
  padding: 10px 13px 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.065);
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-proof span::after {
  display: block;
  width: 100%;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left center;
  animation: signal-fill 3.8s ease-out forwards;
}

.hero-proof span:hover {
  border-color: rgba(75, 216, 255, 0.32);
  color: var(--text);
  background: rgba(75, 216, 255, 0.1);
  transform: translateY(-2px);
}

.mobile-hero-signal {
  display: none;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.56fr) minmax(0, 1.44fr);
  grid-template-areas:
    "main main"
    "badge stack";
  gap: 12px;
  align-content: start;
  min-height: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 247, 248, 0.98), rgba(219, 232, 233, 0.94)),
    var(--panel);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-visual:hover {
  border-color: rgba(75, 216, 255, 0.36);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(17, 24, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 32, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}

.hero-visual::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  content: "";
  background: conic-gradient(from 120deg, rgba(75, 216, 255, 0.52), rgba(117, 224, 173, 0.46), rgba(87, 144, 255, 0.36), rgba(75, 216, 255, 0.52));
  opacity: 0.38;
  transform: rotate(-12deg);
}

.dashboard-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 1px solid rgba(17, 24, 32, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(17, 24, 32, 0.16);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hero-visual:hover .dashboard-card-main {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(17, 24, 32, 0.2);
}

.hero-visual:hover .visual-stack div {
  transform: translateY(-2px);
}

.dashboard-card-main {
  grid-area: main;
  margin: 26px 0 0 20px;
  padding: 20px;
}

.dashboard-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 13px 0;
  color: var(--panel-text);
  border-top: 1px solid rgba(17, 24, 32, 0.1);
}

.dashboard-row span {
  min-width: 0;
  color: rgba(17, 24, 32, 0.58);
}

.dashboard-row span {
  text-align: right;
}

.dashboard-title-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--panel-text);
}

.dashboard-title-row small {
  color: #0e9a5f;
  font-weight: 900;
}

.dashboard-bars {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.dashboard-bars span {
  position: relative;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 24, 32, 0.1);
}

.dashboard-bars span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, #111820, var(--cyan), var(--green));
}

.visual-rail {
  position: absolute;
  top: 58px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.visual-rail span {
  width: 8px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(83, 216, 255, 0.85), rgba(77, 124, 255, 0.12));
}

.visual-stack {
  grid-area: stack;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.visual-stack div {
  min-width: 0;
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 10px 8px;
  border: 1px solid rgba(17, 24, 32, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-visual:hover .visual-stack div {
  background: rgba(255, 255, 255, 0.86);
}

.visual-stack span {
  min-width: 0;
  color: rgba(17, 24, 32, 0.58);
  max-width: 100%;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  white-space: nowrap;
}

.hero-visual {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "main"
    "stack";
  gap: 14px;
  min-height: 390px;
  padding: 28px;
  border-color: rgba(75, 216, 255, 0.22);
  background:
    radial-gradient(circle at 20% 18%, rgba(75, 216, 255, 0.22), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(117, 224, 173, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(13, 22, 31, 0.98), rgba(8, 9, 14, 0.98));
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-visual:hover {
  border-color: rgba(117, 224, 173, 0.34);
  box-shadow:
    0 26px 82px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-visual::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 45%, black 0%, transparent 72%);
}

.hero-visual::after {
  right: -70px;
  bottom: -95px;
  width: 250px;
  height: 250px;
  background: conic-gradient(from 180deg, rgba(75, 216, 255, 0.42), rgba(117, 224, 173, 0.36), rgba(159, 183, 255, 0.24), rgba(75, 216, 255, 0.42));
  opacity: 0.32;
}

.dashboard-card-main {
  display: grid;
  grid-area: main;
  grid-template-rows: auto auto 1fr auto;
  min-height: 272px;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(6, 9, 15, 0.78);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dashboard-card-main::before {
  position: absolute;
  right: 32px;
  bottom: 34px;
  left: 32px;
  height: 132px;
  content: "";
  border: 1px solid rgba(75, 216, 255, 0.16);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  opacity: 0.5;
}

.dashboard-card-main::after {
  position: absolute;
  right: 24px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(75, 216, 255, 0.72), rgba(117, 224, 173, 0.44), transparent);
  box-shadow: 0 0 24px rgba(75, 216, 255, 0.34);
  opacity: 0.78;
}

.dashboard-topbar {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.dashboard-topbar span {
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.dashboard-title-row {
  position: relative;
  z-index: 2;
  color: var(--text);
}

.dashboard-title-row small {
  color: var(--green);
}

.dashboard-row {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 4px 8px 4px 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(251, 252, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
}

.dashboard-row strong {
  display: none;
}

.dashboard-row span {
  color: rgba(251, 252, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
}

.dashboard-bars {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 62%;
  margin-top: 42px;
}

.dashboard-bars span {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.dashboard-bars span::before {
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.dashboard-focus {
  position: absolute;
  right: 52px;
  bottom: 62px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  width: 136px;
  height: 122px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 18%, rgba(75, 216, 255, 0.34), transparent 28%),
    linear-gradient(145deg, rgba(75, 216, 255, 0.16), rgba(117, 224, 173, 0.13)),
    rgba(7, 10, 16, 0.58);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateZ(0);
}

.dashboard-focus::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 2px);
}

.dashboard-focus::after {
  position: absolute;
  right: -32px;
  bottom: -34px;
  width: 86px;
  height: 86px;
  content: "";
  border-radius: 999px;
  background: rgba(117, 224, 173, 0.42);
  filter: blur(20px);
}

.dashboard-focus span {
  position: relative;
  z-index: 1;
  display: block;
  width: 28px;
  border-radius: 999px 999px 6px 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(75, 216, 255, 0.9), rgba(159, 183, 255, 0.36));
  box-shadow: 0 0 28px rgba(75, 216, 255, 0.18);
}

.dashboard-focus span:nth-child(1) {
  height: 46px;
}

.dashboard-focus span:nth-child(2) {
  height: 78px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(117, 224, 173, 0.94), rgba(75, 216, 255, 0.34));
}

.dashboard-focus span:nth-child(3) {
  height: 62px;
}

.visual-rail {
  top: 72px;
  left: auto;
  right: 24px;
  opacity: 0.78;
}

.visual-rail span {
  width: 6px;
  height: 34px;
}

.visual-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.visual-stack div {
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-visual:hover .visual-stack div {
  background: rgba(255, 255, 255, 0.1);
}

.visual-stack span {
  color: rgba(251, 252, 255, 0.7);
  font-size: 0.72rem;
}

.section-heading {
  display: block;
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
}

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

.choice-card,
.proof-card,
.steps article,
.service-item,
.contact-band,
.contact-page,
.module-grid span,
.contact-notes article,
.contact-direct-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 17, 23, 0.78);
}

.choice-card,
.proof-card,
.steps article {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 24px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.choice-card::after,
.proof-card::after,
.steps article::after,
.service-item::after,
.module-grid span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(85, 215, 247, 0.1), transparent 46%, rgba(223, 199, 121, 0.07));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 0;
}

.choice-card > *,
.proof-card > *,
.steps article > *,
.service-item > *,
.module-grid span > * {
  position: relative;
  z-index: 1;
}

.choice-card:hover,
.proof-card:hover,
.steps article:hover,
.service-item:hover {
  border-color: rgba(85, 215, 247, 0.28);
  transform: translateY(-2px);
  background: rgba(18, 23, 31, 0.92);
}

.choice-card:hover::after,
.proof-card:hover::after,
.steps article:hover::after,
.service-item:hover::after,
.module-grid span:hover::after {
  opacity: 1;
}

.choice-card-highlight {
  isolation: isolate;
  border-color: rgba(85, 215, 247, 0.58);
  background:
    radial-gradient(circle at 84% 18%, rgba(126, 225, 176, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(85, 215, 247, 0.12), transparent 46%),
    rgba(15, 22, 29, 0.92);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(85, 215, 247, 0.1),
    0 0 34px rgba(75, 216, 255, 0.16);
}

.choice-card-highlight::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  padding: 2px;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(135deg, rgba(85, 215, 247, 0.92), rgba(126, 225, 176, 0.74) 42%, rgba(85, 215, 247, 0.22) 72%, rgba(255, 255, 255, 0.2));
  pointer-events: none;
  opacity: 0.86;
  box-shadow: 0 0 22px rgba(75, 216, 255, 0.28);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.choice-card-highlight::after {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(126, 225, 176, 0.26), transparent 34%),
    radial-gradient(circle at 10% 88%, rgba(75, 216, 255, 0.16), transparent 36%);
  opacity: 0.9;
}

.choice-card-highlight > * {
  z-index: 3;
}

.choice-number,
.steps span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--green);
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-item {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 112px;
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.service-item::before {
  position: relative;
  z-index: 1;
  width: 4px;
  height: 100%;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--green));
}

.service-item p,
.proof-card p {
  min-width: 0;
  margin-bottom: 0;
}

.service-item a {
  justify-self: end;
  min-width: 0;
  color: var(--cyan);
  font-weight: 900;
  text-align: right;
  white-space: normal;
}

.product-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: center;
  padding: 56px;
  border: 1px solid rgba(75, 216, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(85, 215, 247, 0.07), transparent 42%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.035), transparent 44%),
    rgba(11, 14, 20, 0.94);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.3);
  color: var(--text);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-section::before {
  position: absolute;
  top: -160px;
  right: -170px;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  content: "";
  background:
    radial-gradient(circle at 42% 46%, rgba(85, 215, 247, 0.22), transparent 0 34%, rgba(126, 225, 176, 0.08) 52%, transparent 72%);
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.product-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.34) 0 0.9px, transparent 1.6px),
    radial-gradient(circle, rgba(85, 215, 247, 0.32) 0 1px, transparent 1.7px),
    linear-gradient(90deg, transparent, rgba(85, 215, 247, 0.06), transparent);
  background-position:
    26px 38px,
    142px 86px,
    -40% 0;
  background-size:
    420px 300px,
    560px 380px,
    42% 100%;
  opacity: 0.44;
  mix-blend-mode: screen;
}

.product-section > * {
  position: relative;
  z-index: 1;
}

.product-section:hover {
  border-color: rgba(75, 216, 255, 0.22);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.3);
  transform: none;
}

.product-section:hover::before {
  opacity: 0.42;
  transform: none;
}

.product-section:hover::after {
  opacity: 0.44;
}

@keyframes panel-stars {
  0%,
  100% {
    background-position:
      26px 38px,
      142px 86px,
      -40% 0;
    opacity: 0.38;
  }

  50% {
    background-position:
      48px 22px,
      118px 104px,
      140% 0;
    opacity: 0.54;
  }
}

.product-section + .product-section {
  margin-top: 32px;
}

.product-section p {
  color: var(--muted-strong);
}

.product-section .eyebrow {
  color: var(--cyan);
}

.product-section .button-primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), #7fdde5);
  box-shadow: 0 12px 34px rgba(75, 216, 255, 0.18);
}

.product-section .button-secondary {
  background: rgba(255, 255, 255, 0.055);
}

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

.product-actions .button {
  min-width: 170px;
}

.demo-note {
  max-width: 540px;
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 2px solid rgba(117, 224, 173, 0.62);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

#bayhsoft {
  border-color: rgba(126, 225, 176, 0.2);
  background:
    linear-gradient(135deg, rgba(85, 215, 247, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(126, 225, 176, 0.09), transparent 52%),
    rgba(10, 15, 21, 0.95);
}

#bayhsoft::before {
  background:
    radial-gradient(circle at 38% 48%, rgba(85, 215, 247, 0.22), transparent 0 34%, rgba(126, 225, 176, 0.12) 54%, transparent 72%);
}

.logo-section {
  border-color: rgba(85, 215, 247, 0.16);
  background:
    linear-gradient(135deg, rgba(85, 215, 247, 0.07), transparent 42%),
    linear-gradient(315deg, rgba(223, 199, 121, 0.055), transparent 54%),
    rgba(11, 14, 20, 0.94);
}

.logo-section::before {
  background:
    radial-gradient(circle at 40% 48%, rgba(85, 215, 247, 0.15), transparent 0 34%, rgba(223, 199, 121, 0.11) 54%, transparent 72%);
}

.logo-section .eyebrow {
  color: var(--cyan);
}

.logo-section .button-primary {
  background: linear-gradient(135deg, var(--cyan), #7fdde5);
  box-shadow: 0 12px 34px rgba(75, 216, 255, 0.18);
}

.logo-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(85, 215, 247, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 12%, rgba(85, 215, 247, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 54%),
    rgba(7, 10, 16, 0.54);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.logo-board::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, rgba(223, 199, 121, 0.08), transparent 48%, rgba(85, 215, 247, 0.07));
  opacity: 0.75;
}

.logo-preview {
  display: flex;
  min-width: 0;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(85, 215, 247, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(85, 215, 247, 0.08), transparent 42%),
    rgba(8, 11, 16, 0.72);
}

.logo-symbol {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(85, 215, 247, 0.36);
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(75, 216, 255, 0.1);
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(75, 216, 255, 0.1);
}

.logo-preview strong,
.logo-preview small {
  display: block;
  min-width: 0;
}

.logo-preview strong {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.logo-preview small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.logo-swatches,
.logo-uses {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.logo-swatches span {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
}

.logo-swatches span:nth-child(1) {
  background: #4bd8ff;
}

.logo-swatches span:nth-child(2) {
  background: #75e0ad;
}

.logo-swatches span:nth-child(3) {
  background: #d7c98b;
}

.logo-swatches span:nth-child(4) {
  background: #dcefff;
}

.logo-uses {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo-uses span {
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.product-copy p {
  max-width: 560px;
  margin-bottom: 24px;
}

.product-section h2 {
  max-width: 560px;
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
}

.bayhsoft-showcase {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.bayhsoft-logo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(150px, 1fr);
  gap: 22px;
  min-height: 172px;
  align-items: center;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(85, 215, 247, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 44%, rgba(85, 215, 247, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(7, 10, 16, 0.58);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.bayhsoft-logo-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
}

.bayhsoft-logo-card::after {
  position: absolute;
  inset: 20px 28px auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(85, 215, 247, 0.34), transparent);
  opacity: 0.8;
}

.bayhsoft-logo-card img {
  position: relative;
  z-index: 1;
  display: block;
  justify-self: center;
  width: min(100%, 150px);
  height: auto;
  border-radius: var(--radius);
  filter:
    drop-shadow(0 0 14px rgba(75, 216, 255, 0.38))
    drop-shadow(0 14px 26px rgba(0, 0, 0, 0.24));
}

.bayhsoft-card-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.bayhsoft-card-lines span {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.bayhsoft-card-lines span::after {
  display: block;
  width: var(--line-width, 72%);
  height: 100%;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, var(--cyan), rgba(126, 225, 176, 0.92));
}

.bayhsoft-card-lines span:nth-child(2)::after {
  --line-width: 54%;
}

.bayhsoft-card-lines span:nth-child(3)::after {
  --line-width: 84%;
}

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

.module-grid span {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 14px 12px;
  color: var(--muted-strong);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-weight: 900;
  font-size: clamp(0.78rem, 1.15vw, 0.92rem);
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
  hyphens: auto;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.module-grid span:hover {
  border-color: rgba(75, 216, 255, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.proof-section {
  padding-top: 72px;
}

.proof-card span {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
  padding: 42px;
}

.contact-band p {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.84fr);
  gap: 46px;
  align-items: center;
  overflow: hidden;
  margin-top: 58px;
  padding: 44px 42px;
  background:
    linear-gradient(145deg, rgba(85, 215, 247, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.04), transparent 44%),
    rgba(13, 17, 23, 0.84);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.22);
}

.contact-page::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(85, 215, 247, 0.055), transparent),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 100%, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
}

.contact-page h1,
.contact-page h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.6vw, 3.8rem);
}

.contact-page .hero-lead {
  max-width: 570px;
}

.contact-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-notes article {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.contact-notes article::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--green);
  box-shadow: 0 0 22px rgba(117, 224, 173, 0.5);
}

.contact-notes article:hover {
  border-color: rgba(75, 216, 255, 0.25);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-2px);
}

.contact-notes span {
  color: var(--muted);
  line-height: 1.55;
}

.contact-direct-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(75, 216, 255, 0.08), transparent 42%),
    rgba(10, 12, 17, 0.88);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-direct-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.contact-email-link {
  display: block;
  min-width: 0;
  padding: 18px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(75, 216, 255, 0.24);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(75, 216, 255, 0.12), rgba(117, 224, 173, 0.08)),
    rgba(255, 255, 255, 0.05);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-email-link:hover {
  border-color: rgba(117, 224, 173, 0.42);
  background:
    linear-gradient(135deg, rgba(75, 216, 255, 0.18), rgba(117, 224, 173, 0.12)),
    rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.contact-detail-list {
  display: grid;
  gap: 12px;
}

.contact-detail-list div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.contact-detail-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.contact-detail-list strong {
  color: var(--muted-strong);
  line-height: 1.35;
}

.contact-direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-page {
  max-width: 920px;
  margin-top: 58px;
  padding: 48px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(75, 216, 255, 0.08), transparent 36%),
    rgba(16, 17, 22, 0.78);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.22);
}

.legal-page h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-note {
  max-width: 760px;
  margin-top: -8px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 196, 124, 0.22);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(216, 196, 124, 0.07);
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 0;
}

.legal-hub-actions .button {
  width: auto;
}

.legal-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.legal-hub-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 178px;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(75, 216, 255, 0.08), transparent 48%, rgba(117, 224, 173, 0.08)),
    rgba(255, 255, 255, 0.045);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.legal-hub-card::after {
  position: absolute;
  right: -30px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 216, 255, 0.16), transparent 68%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.legal-hub-card span {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
}

.legal-hub-card strong {
  max-width: 92%;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.2;
}

.legal-hub-card small {
  max-width: 92%;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.legal-hub-card:hover {
  border-color: rgba(75, 216, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(75, 216, 255, 0.13), transparent 48%, rgba(117, 224, 173, 0.12)),
    rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.legal-hub-card:hover::after {
  opacity: 1;
}

.legal-content {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.legal-content article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.legal-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-content p {
  margin-bottom: 8px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--cyan);
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 14px;
  padding: 28px 0 42px;
  color: var(--muted);
}

.footer-panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(240px, 1.35fr)
    minmax(120px, 0.7fr)
    minmax(150px, 0.85fr)
    minmax(190px, 1fr)
    minmax(170px, 0.9fr);
  gap: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(75, 216, 255, 0.09), transparent 28%),
    linear-gradient(315deg, rgba(117, 224, 173, 0.08), transparent 44%),
    rgba(8, 11, 18, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.footer-panel::before,
.footer-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.footer-panel::before {
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.footer-panel::after {
  right: -90px;
  bottom: -130px;
  width: 300px;
  height: 260px;
  background: radial-gradient(circle, rgba(117, 224, 173, 0.14), rgba(75, 216, 255, 0.08) 34%, transparent 70%);
}

.footer-brand,
.footer-column {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.footer-column {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.04rem;
}

.footer-brand p {
  max-width: 300px;
  margin-bottom: 16px;
  color: rgba(222, 228, 237, 0.78);
  font-size: 0.96rem;
  line-height: 1.65;
}

.footer-location {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 850;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 760;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(222, 228, 237, 0.74);
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-column a {
  position: relative;
  width: fit-content;
  max-width: 100%;
  font-weight: 720;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-column a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--green));
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.footer-column a:hover,
.footer-column a.is-active,
.footer-bottom a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-column a:hover::after,
.footer-column a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  padding: 0 2px;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(174, 182, 195, 0.78);
  font-size: 0.9rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 780;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.footer-bottom a:hover {
  border-color: rgba(75, 216, 255, 0.24);
  background: rgba(75, 216, 255, 0.08);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.82fr);
    gap: 28px;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.65rem, 4.4vw, 3.7rem);
  }

  .hero-visual {
    width: 100%;
    max-width: 390px;
    min-height: 360px;
    justify-self: end;
    padding: 20px;
  }

  .dashboard-card-main {
    min-height: 244px;
    padding: 20px;
  }

  .dashboard-focus {
    right: 34px;
    bottom: 58px;
    width: 118px;
    height: 106px;
  }

  .dashboard-focus span {
    width: 22px;
  }

  .dashboard-bars {
    max-width: 56%;
    margin-top: 34px;
  }

  .visual-stack {
    gap: 7px;
  }

  .visual-stack div {
    min-height: 38px;
    padding: 8px 6px;
  }

  .visual-stack span {
    font-size: 0.68rem;
  }

  .section-heading h2 {
    max-width: 760px;
  }

  .product-section {
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
    gap: 28px;
  }

  .product-section h2,
  .product-copy p {
    max-width: 720px;
  }

  .logo-board {
    max-width: 640px;
  }

  .bayhsoft-showcase {
    max-width: 640px;
  }

  .footer-panel {
    grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(170px, 1fr));
    row-gap: 28px;
  }

  .footer-column:nth-of-type(4) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 980px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: 84px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(8, 12, 20, 0.99), rgba(5, 8, 14, 0.985)),
      var(--panel);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(18px);
  }

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

  .site-nav a {
    padding: 16px;
  }

  .nav-toggle {
    display: block;
    justify-self: center;
  }

  .brand-text {
    display: none;
  }

  .site-header-actions {
    gap: 8px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 14px;
  }

  .hero,
  .section-heading,
  .product-section,
  .contact-band,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    padding-top: 62px;
    padding-bottom: 58px;
  }

  .hero-visual {
    width: 100%;
    max-width: 560px;
    min-height: auto;
    justify-self: center;
  }

  .dashboard-card-main {
    min-height: 250px;
  }

  .dashboard-focus {
    right: 32px;
    bottom: 52px;
    width: 118px;
    height: 108px;
  }

  .dashboard-focus span {
    width: 23px;
  }

  .dashboard-bars {
    max-width: 58%;
  }

  .choice-grid,
  .proof-grid,
  .steps,
  .contact-notes {
    grid-template-columns: 1fr;
  }

  .product-section,
  .contact-page {
    padding: 32px;
  }

  .bayhsoft-logo-card {
    min-height: 168px;
  }

  .footer-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 620px;
  }

  .footer-column:nth-of-type(2),
  .footer-column:nth-of-type(4) {
    padding-left: 0;
    border-left: 0;
  }

  .footer-column:nth-of-type(3),
  .footer-column:nth-of-type(5) {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .contact-page {
    align-items: stretch;
    gap: 30px;
  }

  .contact-copy {
    max-width: 720px;
  }

  .contact-page h1,
  .contact-page h2 {
    max-width: 680px;
    font-size: clamp(2.55rem, 8vw, 4rem);
  }
}

@media (max-width: 620px) {
  .site-header {
    width: min(calc(100% - 20px), var(--container));
    grid-template-columns: auto auto 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-header-actions {
    justify-self: end;
  }

  .language-trigger {
    min-height: 44px;
    padding: 0 6px;
  }

  .language-trigger span {
    font-size: 0.84rem;
  }

  .header-cta {
    max-width: 132px;
    min-height: 44px;
    padding: 8px 9px;
    font-size: 0.76rem;
  }

  .section {
    padding: 72px 0;
  }

  .product-section {
    gap: 28px;
    padding: 26px 22px;
  }

  .product-section h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .product-copy p {
    margin-bottom: 22px;
  }

  .product-section .button {
    margin-top: 2px;
  }

  .product-actions {
    gap: 10px;
  }

  .product-actions .button {
    min-width: 0;
  }

  .demo-note {
    margin-top: 16px;
    padding-left: 12px;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .compact-section {
    padding-top: 16px;
  }

  .hero {
    gap: 24px;
    padding-top: 52px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
    line-height: 1.1;
  }

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

  .hero-proof span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .mobile-hero-signal {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0 22px;
  }

  .mobile-hero-signal span {
    position: relative;
    display: grid;
    align-content: space-between;
    min-width: 0;
    min-height: 72px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
      rgba(9, 12, 18, 0.82);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  }

  .mobile-hero-signal span::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(75, 216, 255, 0.16), transparent 54%, rgba(117, 224, 173, 0.12));
    opacity: 0.8;
  }

  .mobile-hero-signal strong {
    position: relative;
    z-index: 1;
    overflow-wrap: anywhere;
    color: var(--text);
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .mobile-hero-signal small {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 4px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-hero-signal small::after {
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    transform: scaleX(0);
    transform-origin: left center;
    animation: signal-fill 3.8s ease-out forwards;
  }

  .hero-visual {
    display: none;
  }

  .visual-rail {
    display: none;
  }

  .dashboard-card-main {
    margin: 22px 0 0;
  }

  .visual-stack {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .module-grid span {
    min-height: 50px;
    padding: 12px 10px;
  }

  .bayhsoft-logo-card {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 120px;
    padding: 18px;
  }

  .bayhsoft-logo-card img {
    width: min(58%, 118px);
  }

  .bayhsoft-card-lines {
    gap: 8px;
  }

  .bayhsoft-card-lines span {
    height: 8px;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item a {
    justify-self: start;
    text-align: left;
  }

  .service-item::before {
    width: 100%;
    height: 4px;
  }

  .logo-board {
    padding: 20px;
  }

  .logo-preview {
    align-items: flex-start;
    padding: 18px;
  }

  .logo-symbol {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

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

  .logo-uses {
    grid-template-columns: 1fr;
  }

  .contact-band,
  .contact-page,
  .legal-page {
    padding: 22px;
  }

  .legal-hub-grid {
    grid-template-columns: 1fr;
  }

  .legal-hub-actions .button {
    width: 100%;
  }

  .legal-hub-card {
    min-height: 0;
  }

  .contact-page {
    margin-top: 28px;
    gap: 18px;
    padding: 20px;
  }

  .contact-page h1,
  .contact-page h2 {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
  }

  .contact-page .hero-lead {
    margin-bottom: 18px;
  }

  .contact-notes {
    display: none;
  }

  .contact-direct-card {
    gap: 14px;
    padding: 18px;
  }

  .contact-direct-card h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .contact-detail-list div,
  .contact-email-link {
    padding: 14px;
  }

  .contact-direct-actions .button {
    flex-basis: 100%;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background:
      linear-gradient(150deg, rgba(75, 216, 255, 0.08), transparent 42%),
      linear-gradient(330deg, rgba(117, 224, 173, 0.075), transparent 52%),
      rgba(8, 11, 18, 0.9);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
  }

  .footer-brand-line {
    margin-bottom: 14px;
  }

  .footer-column {
    gap: 8px;
    padding: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.075) !important;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
  }

  .footer-brand p {
    max-width: none;
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .footer-column h2 {
    margin-bottom: 4px;
  }

  .footer-column a,
  .footer-column span {
    display: flex;
    align-items: center;
    min-height: 36px;
    width: auto;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .footer-column a::after {
    content: none;
  }

  .footer-column:nth-of-type(2),
  .footer-column:nth-of-type(3),
  .footer-column:nth-of-type(5) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-column:nth-of-type(2) h2,
  .footer-column:nth-of-type(3) h2,
  .footer-column:nth-of-type(5) h2 {
    grid-column: 1 / -1;
  }

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

  .footer-badges span {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    gap: 10px;
    padding: 0 4px;
  }
}

@media (max-width: 460px) {
  .footer-column:nth-of-type(5) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .header-cta {
    display: none;
  }

  .site-header-actions {
    gap: 6px;
  }

}

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

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

  body::after {
    animation: none !important;
    opacity: 0.28;
  }

}
